working state of application

This commit is contained in:
2026-05-07 17:33:50 +02:00
parent 0310986644
commit 7354e1309f
4 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -2,14 +2,14 @@ version: "3.9"
services:
postgres:
image: postgres:16-alpine
image: postgres:18.3
restart: unless-stopped
environment:
POSTGRES_DB: forgebucket
POSTGRES_USER: forgebucket
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?required}
POSTGRES_PASSWORD: forgebucket
volumes:
- postgres_data:/var/lib/postgresql/data
- postgres_data:/var/lib/postgresql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U forgebucket"]
interval: 5s
@@ -24,7 +24,7 @@ services:
condition: service_healthy
env_file: .env
environment:
DATABASE_URL: postgres://forgebucket:${POSTGRES_PASSWORD}@postgres:5432/forgebucket?sslmode=disable
DATABASE_URL: postgres://forgebucket:forgebucket@postgres:5432/forgebucket?sslmode=disable
ports:
- "8080:8080"
volumes: