fp/services/our/compose.db.yaml
CJ_Clippy 1f82c4e7e4
Some checks failed
ci / test (push) Failing after 5m19s
fp/our CI/CD / build (push) Successful in 56s
disable pgadmin
2025-10-05 03:48:37 -08:00

32 lines
614 B
YAML

services:
# pgadmin:
# image: dpage/pgadmin4:latest
# env_file: ./.env
# ports:
# - target: 5050
# published: 8095
# protocol: tcp
# mode: ingress
postgres:
image: postgres:17
env_file: ./.env
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres"]
interval: 10s
retries: 5
start_period: 10s
timeout: 10s
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 5
window: 60s
volumes:
pgdata: