19 lines
364 B
YAML
19 lines
364 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
sessionzero:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "80:80" # Map container port 80 to host port 80
|
|
restart: unless-stopped
|
|
volumes:
|
|
- nginx-cache:/var/cache/nginx
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Production
|
|
- ASPNETCORE_URLS=http://+:80
|
|
|
|
volumes:
|
|
nginx-cache:
|