rename to papercrate

This commit is contained in:
2025-10-12 02:35:56 +02:00
parent d9a36a99a7
commit dc22b12df3
17 changed files with 62 additions and 62 deletions
+4 -4
View File
@@ -2,16 +2,16 @@ services:
postgres:
image: postgres:16-alpine
environment:
POSTGRES_USER: paperless
POSTGRES_PASSWORD: paperless_dev
POSTGRES_DB: paperless
POSTGRES_USER: papercrate
POSTGRES_PASSWORD: papercrate_dev
POSTGRES_DB: papercrate
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./backend/migrations:/docker-entrypoint-initdb.d
healthcheck:
test: ["CMD-SHELL", "pg_isready -U paperless"]
test: ["CMD-SHELL", "pg_isready -U papercrate"]
interval: 5s
timeout: 5s
retries: 5