bug Fix Login #2

Merged
Lars merged 2 commits from develop into main 2026-03-19 08:29:48 +01:00
Showing only changes of commit 2df70b2a6b - Show all commits

View File

@ -1,7 +1,7 @@
services:
postgres:
image: postgres:16-alpine
container_name: mitai-db
container_name: mitai-db-prod
restart: unless-stopped
environment:
POSTGRES_DB: mitai_prod
@ -9,8 +9,6 @@ services:
POSTGRES_PASSWORD: ${DB_PASSWORD:-change_me_in_production}
volumes:
- mitai_postgres_data:/var/lib/postgresql/data
ports:
- "127.0.0.1:5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U mitai_prod"]
interval: 10s