19 lines
402 B
YAML
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:
|