Files
pg-instance-handler/docker-compose.yml
2026-01-08 20:58:53 +01:00

13 lines
279 B
YAML

services:
postgres:
image: postgres:15
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5