rts-commander / docker-compose.yml
Luigi's picture
deploy(web): full clean snapshot with app code and assets
12d64f8
raw
history blame contribute delete
454 Bytes
version: '3.8'
services:
rts-game:
build: .
container_name: rts-game-server
ports:
- "7860:7860"
environment:
- HOST=0.0.0.0
- PORT=7860
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:7860/health || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
- rts-network
networks:
rts-network:
driver: bridge