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.
This commit is contained in:
2026-07-03 23:22:26 +02:00
parent 74c9fee38e
commit 7a7b6408a3
2 changed files with 13 additions and 9 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ services:
app:
build: .
ports:
- "8080:8080"
- "8090:8080"
volumes:
- data:/app/server/data
restart: unless-stopped