Files

18 lines
384 B
YAML
Raw Permalink Normal View History

2026-04-13 21:09:47 +03:00
services:
postgres:
image: postgres:15
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: db
ports:
- "5432:5432"
volumes:
- /tmp/pg:/var/lib/postgresql/data
restart: unless-stopped
healthcheck:
2026-04-14 21:14:01 +03:00
test: ["CMD-SHELL", "pg_isready -U user -d db"]
2026-04-13 21:09:47 +03:00
interval: 30s
timeout: 10s
retries: 3