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:
|
||||
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)
|
||||
- [`healthcheck`](compose-file/05-services.md#healthcheck)
|
||||
|
|
|
|||
Loading…
Reference in New Issue