wekan hinzugefügt

This commit is contained in:
borgal
2022-02-08 11:17:13 +00:00
parent 43b98a5ec9
commit 5dfc80d414
2 changed files with 47 additions and 0 deletions

12
wekan/.env.sample Normal file
View File

@@ -0,0 +1,12 @@
#Mail Absender
#
FROM=info@domain.de
#
#Enthaelt User oder Passwort Sonderzeichen, muessen diese umgeschrieben werden - https://www.url-encode-decode.com/
#
MAIL_USER=change%40me.de
MAIL_PASS=ch%40ngeMe
#
#Domain
#
APP_URL=todo.domain.de

35
wekan/docker-compose.yml Normal file
View File

@@ -0,0 +1,35 @@
---
version: '2'
services:
wekandb:
image: mongo:latest
container_name: wekan-db
restart: unless-stopped
# Disable MongoDB logs:
command: mongod --logpath /dev/null --oplogSize 128 --quiet
expose:
- 27017
volumes:
- ./db:/data/db
- ./db-dump:/dump
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
wekan:
image: wekanteam/wekan
container_name: wekan-app
restart: unless-stopped
ports:
- 8004:8080
environment:
- 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=NONE
- 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}>'
depends_on:
- wekandb