Files
whalehunting/docker-compose.yml
Thomas Richter d6941621cd Fix Docker build and change port to 8880
- Install all dependencies including devDependencies for build
- Change port mapping from 8080 to 8880

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-16 23:40:14 +01:00

25 lines
512 B
YAML

version: '3.8'
services:
whalehunting-game:
build:
context: .
dockerfile: Dockerfile
image: whalehunting-game:latest
container_name: whalehunting-game
ports:
- "8880:80"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
interval: 30s
timeout: 3s
retries: 3
start_period: 5s
networks:
- whalehunting-network
networks:
whalehunting-network:
driver: bridge