20 lines
408 B
YAML
20 lines
408 B
YAML
services:
|
|
postgres:
|
|
image: postgres:17-alpine
|
|
environment:
|
|
POSTGRES_DB: queue
|
|
POSTGRES_USER: queue
|
|
POSTGRES_PASSWORD: queue
|
|
ports:
|
|
- "5432:5432"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U queue -d queue"]
|
|
interval: 3s
|
|
timeout: 3s
|
|
retries: 20
|
|
volumes:
|
|
- callline-postgres:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
callline-postgres:
|