diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-08-14 18:43:09 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-08-14 18:43:09 +0300 |
commit | eea077e57e7a61d6fefc8918990d6a9015146359 (patch) | |
tree | 47e5470db1ab38857baf5d3d61b1d3149ef64017 | |
parent | f725291e148912e5cde97d3747aecbc73925b9d8 (diff) | |
download | wekan-eea077e57e7a61d6fefc8918990d6a9015146359.tar.gz wekan-eea077e57e7a61d6fefc8918990d6a9015146359.tar.bz2 wekan-eea077e57e7a61d6fefc8918990d6a9015146359.zip |
Fix quotes.
-rw-r--r-- | docker-compose.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index c46b3e3b..ee87227b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -39,20 +39,20 @@ services: - ROOT_URL=http://localhost # Wekan Export Board works when WITH_API='true'. # If you disable Wekan API with 'false', Export Board does not work. - - WITH_API='true' + - WITH_API=true # Optional: Integration with Matomo https://matomo.org that is installed to your server # The address of the server where Matomo is hosted: - # - MATOMO_ADDRESS='https://example.com/matomo' + # - MATOMO_ADDRESS=https://example.com/matomo # The value of the site ID given in Matomo server for Wekan - # - MATOMO_SITE_ID='123456789' + # - MATOMO_SITE_ID=123456789 # The option do not track which enables users to not be tracked by matomo" - # - MATOMO_DO_NOT_TRACK='false' + # - MATOMO_DO_NOT_TRACK=false # The option that allows matomo to retrieve the username: - # - MATOMO_WITH_USERNAME='true' + # - MATOMO_WITH_USERNAME=true # Enable browser policy and allow one trusted URL that can have iframe that has Wekan embedded inside. # Setting this to false is not recommended, it also disables all other browser policy protections # and allows all iframing etc. See wekan/server/policy.js - - BROWSER_POLICY_ENABLED='true' + - BROWSER_POLICY_ENABLED=true # When browser policy is enabled, HTML code at this Trusted URL can have iframe that embeds Wekan inside. - TRUSTED_URL='' depends_on: |