DOCS: correct syntax error in readme
authorSam Saffron <sam.saffron@gmail.com>
Wed, 18 Nov 2020 08:11:39 +0000 (19:11 +1100)
committerSam Saffron <sam.saffron@gmail.com>
Wed, 18 Nov 2020 08:11:39 +0000 (19:11 +1100)
README.md

index 2056fbc3ffcee711db44749341310ccc5ab22461..be05ba87a18c2e55a51755dcbf3674ab67c40024 100644 (file)
--- 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