From 4a4b0f8e470aa063f7f2e119da9c3a97f7d3886d Mon Sep 17 00:00:00 2001 From: Sam Saffron Date: Wed, 18 Nov 2020 19:11:39 +1100 Subject: [PATCH] DOCS: correct syntax error in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2056fbc..be05ba8 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ Setting environment variables to the current container. env: DISCOURSE_DB_HOST: some-host - DISCOURSE_DB_NAME: {{config}}_discourse + DISCOURSE_DB_NAME: "{{config}}_discourse" ``` The above will add `-e DISCOURSE_DB_HOST=some-host -e DISCOURSE_DB_NAME=app_discourse` to the options when running the container. @@ -129,8 +129,8 @@ The above will add `-e DISCOURSE_DB_HOST=some-host -e DISCOURSE_DB_NAME=app_disc # app.yml labels: - monitor: 'true' - app_name: {{config}}_discourse + monitor: "true" + app_name: "{{config}}_discourse" ``` Add labels to the current container. The above will add `--l monitor=true -l app_name=dev_discourse` to the options -- 2.25.1