config angepasst

This commit is contained in:
borgal
2023-09-07 20:39:09 +02:00
parent 87eb4018d9
commit c80f1723e0

View File

@@ -2,7 +2,7 @@
version: '2'
services:
wekandb:
image: mongo:latest
image: mongo:6
container_name: wekan-db
restart: unless-stopped
# Disable MongoDB logs:
@@ -17,18 +17,19 @@ services:
- /etc/timezone:/etc/timezone:ro
wekan:
image: wekanteam/wekan
image: wekanteam/wekan:latest
container_name: wekan-app
restart: unless-stopped
ports:
- 8004:8080
environment:
- WRITABLE_PATH=/data
- MONGO_URL=mongodb://wekandb:27017/wekan
- ROOT_URL=https://${APP_URL}
- WITH_API=true
- RICHER_CARD_COMMENT_EDITOR=false
- CARD_OPENED_WEBHOOK_ENABLED=false
- BIGEVENTS_PATTERN=received|start|due|end
- BIGEVENTS_PATTERN=NONE # received|start|due|end
- BROWSER_POLICY_ENABLED=true
- MAIL_URL=smtp://${MAIL_USER}:${MAIL_PASS}@smtp.strato.de:587?tls={ciphers:"SSLv3"}&secureConnection=false
- MAIL_FROM='ToDo Info <${FROM}>'
@@ -36,3 +37,6 @@ services:
- NOTIFY_DUE_AT_HOUR_OF_DAY=8
depends_on:
- wekandb
volumes:
- /etc/localtime:/etc/localtime:ro
- ./wekan-files:/data:rw