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
This commit is contained in:
jcjveraa 2024-07-05 12:15:37 +02:00 committed by GitHub
parent f2f527639e
commit 0d9b66e897
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ services:
db: db:
image: postgres image: postgres
healthcheck: 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 interval: 10s
retries: 5 retries: 5
start_period: 30s start_period: 30s