surl-front/compose.yaml
2024-08-16 11:53:48 +08:00

26 lines
557 B
YAML

name: surl
services:
front:
build: .
container_name: front
ports:
- "127.0.0.1:80:11451"
volumes:
- "./dist:/usr/share/nginx/html:ro"
- "./nginx.conf:/etc/nginx/nginx.conf:ro"
- "nginx_logs:/var/log/nginx:rw"
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/health"]
interval: 5s
timeout: 5s
retries: 5
start_period: 5s
networks:
- surl-network
networks:
surl-network:
external: false
volumes:
nginx_logs:
external: false