diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-08-25 00:51:16 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-08-25 00:51:16 +0300 |
commit | 65d1330d3576dc97c24621800b12412a3dea7a3a (patch) | |
tree | cfe58a957d423cedfdfa27368ad14c6e0d78ea00 /docker-compose.yml | |
parent | 3d76b8e1c16fd6ddaddafc1560ab78791604b45e (diff) | |
parent | 39312a075e5746ddeccbf3fc22df7177a86ba4d5 (diff) | |
download | wekan-65d1330d3576dc97c24621800b12412a3dea7a3a.tar.gz wekan-65d1330d3576dc97c24621800b12412a3dea7a3a.tar.bz2 wekan-65d1330d3576dc97c24621800b12412a3dea7a3a.zip |
Merge branch 'salleman33-devel' into devel
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index bf4d02cc..99633265 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -63,6 +63,25 @@ services: # 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='' + # 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='' depends_on: - wekandb |