Skip to content

Instantly share code, notes, and snippets.

@rsnyman
Created March 21, 2018 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rsnyman/4a1dab09570d9f8b6eb3eaca4bc0c102 to your computer and use it in GitHub Desktop.
Save rsnyman/4a1dab09570d9f8b6eb3eaca4bc0c102 to your computer and use it in GitHub Desktop.
My docker-compose.yaml for WeKan and MongoDB
version: '3'
services:
wekan:
image: wekanteam/wekan
links:
- mongodb
environment:
- MONGO_URL=mongodb://mongodb/wekan
- ROOT_URL=https://<yourdomain>
- MAIL_URL=smtp://<yourdomain>
- MAIL_FROM=<youremail>
ports:
# expose port 80 on 9001 for nginx reverse proxy
- "9001:80"
restart: always
mongodb:
image: mongo:3.2.11
volumes:
- "/data/db:/data/db"
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment