This commit is contained in:
simon.franken
2026-02-16 16:09:07 +01:00
parent d200254783
commit a9228d19c8
8 changed files with 226 additions and 105 deletions

View File

@@ -12,7 +12,7 @@ services:
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U timetracker"]
test: [ "CMD-SHELL", "pg_isready -U timetracker" ]
interval: 5s
timeout: 5s
retries: 5
@@ -25,7 +25,7 @@ services:
DATABASE_URL: "postgresql://timetracker:timetracker_password@db:5432/timetracker"
OIDC_ISSUER_URL: ${OIDC_ISSUER_URL}
OIDC_CLIENT_ID: ${OIDC_CLIENT_ID}
OIDC_REDIRECT_URI: "http://localhost:3001/auth/callback"
OIDC_REDIRECT_URI: "http://localhost:3001/api/auth/callback"
SESSION_SECRET: ${SESSION_SECRET}
PORT: 3001
NODE_ENV: production
@@ -48,4 +48,4 @@ services:
- backend
volumes:
postgres_data:
postgres_data: