From 7ae38c5ac1e3eaa845753cfcbd2d06fd83418070 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 14 Feb 2024 10:21:27 +0100 Subject: [PATCH] docs: fix postgres example healthcheck --- docs/content/doc/setup/full-docker-example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/doc/setup/full-docker-example.md b/docs/content/doc/setup/full-docker-example.md index 8b121c6d2..59883964a 100644 --- a/docs/content/doc/setup/full-docker-example.md +++ b/docs/content/doc/setup/full-docker-example.md @@ -42,7 +42,7 @@ db: - ./db:/var/lib/postgresql/data restart: unless-stopped healthcheck: - test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"] + test: ["CMD-SHELL", "pg_isready -h localhost -U $$POSTGRES_USER"] interval: 2s ```