16 lines
273 B
YAML
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:
|