mirror of https://github.com/docker/docs.git
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:
parent
f2f527639e
commit
0d9b66e897
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue