fix(docker): Change application.yaml port: 8081 docker-compose.yml server-port: 8080:8081

This commit is contained in:
Stefan Mogeritsch 2025-04-20 17:09:49 +02:00
parent 6db4213bb0
commit 8fcc279679
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ services:
container_name: meldestelle-server
restart: unless-stopped
ports:
- "8080:8080"
- "8080:8081"
environment:
- DB_USER=${POSTGRES_USER}
- DB_PASSWORD=${POSTGRES_PASSWORD}

View File

@ -2,7 +2,7 @@
ktor:
deployment:
# Der Port, auf dem der Server lauschen soll
port: 8080
port: 8081
# port: ${PORT:8080} # Alternative: Nutzt Env-Variable PORT, sonst 8080
# Optional für Entwicklung: Server bei Änderungen neu laden
# watch:
@ -11,4 +11,4 @@ ktor:
application:
# Hier wird Ktor gesagt, welche Funktion die Konfiguration enthält
modules:
- at.mocode.ApplicationKt.module
- at.mocode.ApplicationKt.module