feat: 增加 postgresql 的 healthcheck 功能 (#1375)

This commit is contained in:
mia0x75 2024-05-09 11:11:46 +08:00 committed by GitHub
parent c7559e7159
commit 842bf341c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

0
apps/postgresql/16.2-alpine/data.yml Executable file → Normal file
View File

View File

@ -10,6 +10,12 @@ services:
- ${PANEL_APP_PORT_HTTP}:5432
volumes:
- ./data:/var/lib/postgresql/data
healthcheck:
test: ["CMD", "pg_isready", "-h", "127.0.0.1", "-p", "5432", "-q", "-U", "${PANEL_DB_ROOT_USER}"]
start_period: 20s
interval: 30s
retries: 5
timeout: 5s
networks:
- 1panel-network
labels: