Spaces:
Sleeping
Sleeping
| 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 | |