Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 1.2 KB

File metadata and controls

48 lines (42 loc) · 1.2 KB

Wekan

Probably the best of the ones tested. A good balance between features & complexity and a nice UI.


docker-compose.yml

---
version: '2'
services:
  wekandb:
    image: mongo:latest
    container_name: wekan-db
    restart: unless-stopped
    command: mongod --oplogSize 128
    expose:
      - 27017
    volumes:
      - ./db:/data/db
      - ./db-dump:/dump

  wekan:
    image: wekanteam/wekan
    container_name: wekan-app
    restart: unless-stopped
    ports:
      - 3090:8080
    environment:
      - MONGO_URL=mongodb://wekandb:27017/wekan
      - ROOT_URL=http://localhost:3090
      - WITH_API=true # Wekan Export Board works when WITH_API=true.
      - RICHER_CARD_COMMENT_EDITOR=false
      - CARD_OPENED_WEBHOOK_ENABLED=false
      - BIGEVENTS_PATTERN=NONE
      - BROWSER_POLICY_ENABLED=true
    depends_on:
      - wekandb

Tips & Tricks