summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml52
1 files changed, 47 insertions, 5 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index b33bda24..6a88ab93 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -38,7 +38,7 @@ version: '2'
# sudo service docker start
# ----------------------------------------------------------------------------------
# ==== USAGE OF THIS docker-compose.yml ====
-# 1) For seeing does Wekan work, try this and check with your webbroser:
+# 1) For seeing does Wekan work, try this and check with your web browser:
# docker-compose up
# 2) Stop Wekan and start Wekan in background:
# docker-compose stop
@@ -93,14 +93,14 @@ services:
#-------------------------------------------------------------------------------------
# ==== MONGODB AND METEOR VERSION ====
# a) For Wekan Meteor 1.8.x version at master branch, use mongo 4.x
- image: mongo:4.0.12
+ image: mongo:latest
# b) For Wekan Meteor 1.6.x version at devel branch.
# Only for Snap and Sandstorm while they are not upgraded yet to Meteor 1.8.x
#image: mongo:3.2.21
#-------------------------------------------------------------------------------------
container_name: wekan-db
restart: always
- command: mongod --smallfiles --oplogSize 128
+ command: mongod --oplogSize 128
networks:
- wekan-tier
expose:
@@ -238,7 +238,12 @@ services:
#---------------------------------------------------------------
# ==== RICH TEXT EDITOR IN CARD COMMENTS ====
# https://github.com/wekan/wekan/pull/2560
- - RICHER_CARD_COMMENT_EDITOR=true
+ - RICHER_CARD_COMMENT_EDITOR=false
+ #---------------------------------------------------------------
+ # ==== MOUSE SCROLL ====
+ # https://github.com/wekan/wekan/issues/2949
+ - SCROLLINERTIA=0
+ - SCROLLAMOUNT=auto
#---------------------------------------------------------------
# ==== CARD OPENED, SEND WEBHOOK MESSAGE ====
# https://github.com/wekan/wekan/issues/2518
@@ -249,6 +254,11 @@ services:
#-MAX_IMAGE_PIXEL=1024
#-IMAGE_COMPRESS_RATIO=80
#---------------------------------------------------------------
+ # ==== NOTIFICATION TRAY AFTER READ DAYS BEFORE REMOVE =====
+ # Number of days after a notification is read before we remove it.
+ # Default: 2
+ #- NOTIFICATION_TRAY_AFTER_READ_DAYS_BEFORE_REMOVE=2
+ #---------------------------------------------------------------
# ==== BIGEVENTS DUE ETC NOTIFICATIONS =====
# https://github.com/wekan/wekan/pull/2541
# Introduced a system env var BIGEVENTS_PATTERN default as "NONE",
@@ -342,6 +352,31 @@ services:
# Tthe claim name you want to map to the email field:
#- OAUTH2_EMAIL_MAP=email
#-----------------------------------------------------------------
+ # ==== OAUTH2 Nextcloud ====
+ # 1) Register the application with Nextcloud: https://your.nextcloud/settings/admin/security
+ # Make sure you capture the application ID as well as generate a secret key.
+ # 2) Configure the environment variables. This differs slightly
+ # by installation type, but make sure you have the following:
+ #- OAUTH2_ENABLED=true
+ # OAuth2 login style: popup or redirect.
+ #- OAUTH2_LOGIN_STYLE=redirect
+ # Application GUID captured during app registration:
+ #- OAUTH2_CLIENT_ID=xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx
+ # Secret key generated during app registration:
+ #- OAUTH2_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
+ #- OAUTH2_SERVER_URL=https://your-nextcloud.tld
+ #- OAUTH2_AUTH_ENDPOINT=/index.php/apps/oauth2/authorize
+ #- OAUTH2_USERINFO_ENDPOINT=/ocs/v2.php/cloud/user?format=json
+ #- OAUTH2_TOKEN_ENDPOINT=/index.php/apps/oauth2/api/v1/token
+ # The claim name you want to map to the unique ID field:
+ #- OAUTH2_ID_MAP=id
+ # The claim name you want to map to the username field:
+ #- OAUTH2_USERNAME_MAP=id
+ # The claim name you want to map to the full name field:
+ #- OAUTH2_FULLNAME_MAP=display-name
+ # Tthe claim name you want to map to the email field:
+ #- OAUTH2_EMAIL_MAP=email
+ #-----------------------------------------------------------------
# ==== OAUTH2 KEYCLOAK ====
# https://github.com/wekan/wekan/wiki/Keycloak <== MAPPING INFO, REQUIRED
#- OAUTH2_ENABLED=true
@@ -479,18 +514,22 @@ services:
# The limit number of entries (0=unlimited)
#- LDAP_SEARCH_SIZE_LIMIT=0
#
- # Enable group filtering
+ # Enable group filtering. Note the authenticated ldap user must be able to query all relevant group data with own login data from ldap.
#- LDAP_GROUP_FILTER_ENABLE=false
#
# The object class for filtering. Example: group
#- LDAP_GROUP_FILTER_OBJECTCLASS=
#
+ # The attribute of a group identifying it. Example: cn
#- LDAP_GROUP_FILTER_GROUP_ID_ATTRIBUTE=
#
+ # The attribute inside a group object listing its members. Example: member
#- LDAP_GROUP_FILTER_GROUP_MEMBER_ATTRIBUTE=
#
+ # The format of the value of LDAP_GROUP_FILTER_GROUP_MEMBER_ATTRIBUTE. Example: 'dn' if the users dn ist saved as value into the attribute.
#- LDAP_GROUP_FILTER_GROUP_MEMBER_FORMAT=
#
+ # The group name (id) that matches all users.
#- LDAP_GROUP_FILTER_GROUP_NAME=
#
# LDAP_UNIQUE_IDENTIFIER_FIELD : This field is sometimes class GUID (Globally Unique Identifier). Example: guid
@@ -559,6 +598,9 @@ services:
# example : LOGOUT_ON_MINUTES=55
#- LOGOUT_ON_MINUTES=
#-------------------------------------------------------------------
+ # Hide password login form
+ # - PASSWORD_LOGIN_ENABLED=true
+ #-------------------------------------------------------------------
depends_on:
- wekandb