21 lines
585 B
YAML
21 lines
585 B
YAML
# Lokaler Test — ohne externes Caddy-Netz, Port direkt gemappt.
|
|
# Aufruf: docker compose -f docker-compose.local.yml up --build
|
|
# Seite: http://localhost:3000
|
|
# Stoppen: Strg+C, danach docker compose -f docker-compose.local.yml down
|
|
|
|
services:
|
|
wm2026:
|
|
build: .
|
|
image: wm2026-board:latest
|
|
container_name: wm2026-local
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "3001:3000"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:3000/api/matches"]
|
|
interval: 60s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 20s
|