2017-01-17 08:49:42 +00:00
version : '2'
2016-01-03 16:03:57 +01:00
2017-01-17 08:49:42 +00:00
services :
2016-01-03 16:03:57 +01:00
2017-01-17 08:49:42 +00:00
wekandb :
2018-09-10 00:54:08 +03:00
image : mongo:3.2.21
2017-01-17 08:49:42 +00:00
container_name : wekan-db
restart : always
command : mongod --smallfiles --oplogSize 128
2017-01-17 16:45:11 +00:00
networks :
- wekan-tier
2017-01-17 08:49:42 +00:00
expose :
- 27017
volumes :
- wekan-db:/data/db
- wekan-db-dump:/dump
2015-09-06 19:19:34 +02:00
2017-01-17 08:49:42 +00:00
wekan :
2018-04-04 14:22:59 +03:00
image : quay.io/wekan/wekan
2017-01-17 08:49:42 +00:00
container_name : wekan-app
restart : always
2017-01-17 16:45:11 +00:00
networks :
- wekan-tier
2017-01-17 08:49:42 +00:00
build :
context : .
dockerfile : Dockerfile
args :
2017-01-17 22:44:03 +00:00
- NODE_VERSION=${NODE_VERSION}
- METEOR_RELEASE=${METEOR_RELEASE}
- NPM_VERSION=${NPM_VERSION}
- ARCHITECTURE=${ARCHITECTURE}
- SRC_PATH=${SRC_PATH}
2017-04-28 10:59:38 +01:00
- METEOR_EDGE=${METEOR_EDGE}
- USE_EDGE=${USE_EDGE}
2017-01-17 08:49:42 +00:00
ports :
2018-08-15 23:41:01 +03:00
# Docker outsideport:insideport
2018-08-02 16:47:50 +03:00
- 80 : 8080
2017-01-17 08:49:42 +00:00
environment :
- MONGO_URL=mongodb://wekandb:27017/wekan
2018-04-04 17:36:19 +03:00
- ROOT_URL=http://localhost
2018-08-01 21:21:14 +03:00
# Wekan Export Board works when WITH_API='true'.
# If you disable Wekan API with 'false', Export Board does not work.
2018-08-14 18:43:09 +03:00
- WITH_API=true
2018-08-01 21:45:11 +03:00
# Optional: Integration with Matomo https://matomo.org that is installed to your server
2018-08-15 23:41:01 +03:00
# The address of the server where Matomo is hosted.
# example: - MATOMO_ADDRESS=https://example.com/matomo
- MATOMO_ADDRESS=''
2018-08-01 22:04:33 +03:00
# The value of the site ID given in Matomo server for Wekan
2018-08-15 23:41:01 +03:00
# example: - MATOMO_SITE_ID=12345
- MATOMO_SITE_ID=''
# The option do not track which enables users to not be tracked by matomo
# example: - MATOMO_DO_NOT_TRACK=false
- MATOMO_DO_NOT_TRACK=true
2018-08-01 22:04:33 +03:00
# The option that allows matomo to retrieve the username:
2018-08-15 23:41:01 +03:00
# example: MATOMO_WITH_USERNAME=true
- MATOMO_WITH_USERNAME=false
2018-08-13 19:24:07 +03:00
# 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
2018-08-14 18:43:09 +03:00
- BROWSER_POLICY_ENABLED=true
2018-08-13 19:24:07 +03:00
# When browser policy is enabled, HTML code at this Trusted URL can have iframe that embeds Wekan inside.
2018-08-14 17:09:46 +03:00
- TRUSTED_URL=''
2018-08-22 22:19:06 +03:00
# What to send to Outgoing Webhook, or leave out. Example, that includes all that are default: cardId,listId,oldListId,boardId,comment,user,card,commentId .
# example: WEBHOOKS_ATTRIBUTES=cardId,listId,oldListId,boardId,comment,user,card,commentId
- WEBHOOKS_ATTRIBUTES=''
2018-08-25 00:49:02 +03:00
# OAuth2 docs: https://github.com/wekan/wekan/wiki/OAuth2
# OAuth2 Client ID, for example from Rocket.Chat. Example: abcde12345
# example: OAUTH2_CLIENT_ID=abcde12345
- OAUTH2_CLIENT_ID=''
# OAuth2 Secret, for example from Rocket.Chat: Example: 54321abcde
# example: OAUTH2_SECRET=54321abcde
- OAUTH2_SECRET=''
# OAuth2 Server URL, for example Rocket.Chat. Example: https://chat.example.com
# example: OAUTH2_SERVER_URL=https://chat.example.com
- OAUTH2_SERVER_URL=''
# OAuth2 Authorization Endpoint. Example: /oauth/authorize
# example: OAUTH2_AUTH_ENDPOINT=/oauth/authorize
- OAUTH2_AUTH_ENDPOINT=''
# OAuth2 Userinfo Endpoint. Example: /oauth/userinfo
# example: OAUTH2_USERINFO_ENDPOINT=/oauth/userinfo
- OAUTH2_USERINFO_ENDPOINT=''
# OAuth2 Token Endpoint. Example: /oauth/token
# example: OAUTH2_TOKEN_ENDPOINT=/oauth/token
- OAUTH2_TOKEN_ENDPOINT=''
2017-01-17 08:49:42 +00:00
depends_on :
- wekandb
volumes :
wekan-db :
driver : local
2017-01-17 16:45:11 +00:00
wekan-db-dump :
driver : local
networks :
wekan-tier :
driver : bridge