Files
ressourcenplanung/docker-compose.yml
T
admin 7a7b6408a3 Fix port conflict on Coolify host: map to 8090 instead of 8080
Coolify deployment failed with "port is already allocated" since 8080
was already bound by another resource on the host. Container still
listens on 8080 internally; host mapping moved to 8090.
2026-07-03 23:22:26 +02:00

12 lines
150 B
YAML

services:
app:
build: .
ports:
- "8090:8080"
volumes:
- data:/app/server/data
restart: unless-stopped
volumes:
data: