From 0d9b66e89707ac4fbb694a54d5e2d1d7cb93d126 Mon Sep 17 00:00:00 2001 From: jcjveraa <3942301+jcjveraa@users.noreply.github.com> Date: Fri, 5 Jul 2024 12:15:37 +0200 Subject: [PATCH] fix typo in example startup-order.md (#20362) There was an additional ' character that was appended to the database name in this example when copy-pasted --- content/compose/startup-order.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/compose/startup-order.md b/content/compose/startup-order.md index 582dc7aa6a..32eeb60539 100644 --- a/content/compose/startup-order.md +++ b/content/compose/startup-order.md @@ -39,7 +39,7 @@ services: db: image: postgres healthcheck: - test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}'"] + test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"] interval: 10s retries: 5 start_period: 30s @@ -57,4 +57,4 @@ Compose also removes services in dependency order. `web` is removed before `db` ## Reference information - [`depends_on`](compose-file/05-services.md#depends_on) -- [`healthcheck`](compose-file/05-services.md#healthcheck) \ No newline at end of file +- [`healthcheck`](compose-file/05-services.md#healthcheck)