chore: add healthcheck to docker-compose stack (#1735)
This commit is contained in:
parent
0bbd46c33f
commit
05342e2e83
|
@ -8,6 +8,11 @@ services:
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: libretime
|
POSTGRES_USER: libretime
|
||||||
POSTGRES_PASSWORD: libretime
|
POSTGRES_PASSWORD: libretime
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "pg_isready"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
|
||||||
adminer:
|
adminer:
|
||||||
image: adminer
|
image: adminer
|
||||||
|
|
Loading…
Reference in New Issue