church-website/docker-compose.yml
Benno Tielen cbdec5e61a
Some checks are pending
Deploy / deploy (push) Waiting to run
fix: lint
2026-03-12 13:33:51 +01:00

19 lines
402 B
YAML

services:
postgres:
image: postgis/postgis:16-3.4
ports:
- '5432:5432'
volumes:
- pgdata:/var/lib/postgresql/data
environment:
POSTGRES_DB: church_website_dev
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U postgres']
interval: 5s
timeout: 5s
retries: 5
volumes:
pgdata: