Quick start

Installation

WekanChatBot can be installed using Docker containers. We provide an official docker image on Dockerhub. The following docker-compose.yml file can be used.

docker-compose.yml
version: "3.9"

services:
  wekanchatbot:
    image: azorimor/wekanchatbot
    ports:
      - 3000:3000
  mongodb:
    image: mongo
    ports: 
      - 27018:27017
    volumes: 
      - mongodb:/data/db

volumes:
  mongodb:

Configuration

WekanChatBot uses environment variables for configuration. A list of all used variables is available at the following page.

Last updated