From 8a9ffb234dbb0f072e0d9846128b622e8ba8321e Mon Sep 17 00:00:00 2001 From: Victoria Bialas Date: Mon, 15 May 2017 15:35:50 -0700 Subject: [PATCH] fixed code example in Compose startup order per feedback (#3275) Signed-off-by: Victoria Bialas --- compose/startup-order.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/compose/startup-order.md b/compose/startup-order.md index 5a4a1de5fb..c0ccec1790 100644 --- a/compose/startup-order.md +++ b/compose/startup-order.md @@ -71,8 +71,11 @@ script: >&2 echo "Postgres is up - executing command" exec $cmd - You can use this as a wrapper script as in the previous example, by setting - `command: ["./wait-for-postgres.sh", "db", "python", "app.py"]`. + You can use this as a wrapper script as in the previous example, by setting: + + ```none + command: ["./wait-for-postgres.sh", "db", "python", "app.py"] + ``` ## Compose documentation