SessionZeroWasm/docker-compose.yml
2025-07-01 23:23:12 -05:00

16 lines
273 B
YAML

version: '3.8'
services:
sessionzero:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:80" # Map container port 80 to host port 8080
restart: unless-stopped
volumes:
- nginx-cache:/var/cache/nginx
volumes:
nginx-cache: