surl-front/compose.yaml
2024-08-15 10:49:02 +08:00

22 lines
472 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"
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