summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml15
1 files changed, 13 insertions, 2 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index b2e12629..e769cb82 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -33,11 +33,22 @@ services:
- METEOR_EDGE=${METEOR_EDGE}
- USE_EDGE=${USE_EDGE}
ports:
- - 80:80
+ - 80:8080
environment:
- MONGO_URL=mongodb://wekandb:27017/wekan
- ROOT_URL=http://localhost
- - WITH_API=false
+ # Wekan Export Board works when WITH_API='true'.
+ # If you disable Wekan API with 'false', Export Board does not work.
+ - 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'
+ # The value of the site ID given in Matomo server for Wekan
+ # - MATOMO_SITE_ID='123456789'
+ # The option do not track which enables users to not be tracked by matomo"
+ # - MATOMO_DO_NOT_TRACK='false'
+ # The option that allows matomo to retrieve the username:
+ # - MATOMO_WITH_USERNAME='true'
depends_on:
- wekandb