fix postgres healtcheck

This commit is contained in:
2023-08-08 08:30:05 +00:00
committed by cgalo5758
parent 4714122197
commit 183becfd87
+3 -3
View File
@@ -16,13 +16,13 @@ services:
networks:
- internal
environment:
POSTGRES_USER: nextcloud
POSTGRES_USER: nextcloud
POSTGRES_PASSWORD_FILE: /run/secrets/db_password
POSTGRES_DB: nextcloud
POSTGRES_DB: nextcloud
secrets:
- db_password
healthcheck:
test: ["CMD-SHELL", "pg_isready"]
test: ["CMD-SHELL", "pg_isready", "-U", "nextcloud"]
interval: 10s
timeout: 5s
retries: 5