2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-10 07:11:00 +00:00
frappe_docker/overrides/compose.postgres.yaml

19 lines
341 B
YAML
Raw Normal View History

2021-12-13 16:36:54 +00:00
services:
configurator:
2021-12-13 16:36:54 +00:00
environment:
DB_PORT: 5432
depends_on:
- db
db:
image: postgres:14.1
healthcheck:
test: pg_isready
interval: 1s
retries: 15
command: []
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD:?No db password set}
2021-12-13 16:36:54 +00:00
volumes:
- db-data:/var/lib/postgresql