17 lines
378 B
YAML
17 lines
378 B
YAML
services:
|
|
postgres-test:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_USER: paperless
|
|
POSTGRES_PASSWORD: paperless_test
|
|
POSTGRES_DB: paperless_test
|
|
ports:
|
|
- "5433:5432"
|
|
tmpfs:
|
|
- /var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U paperless"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|