Add: readme, changelog, docker-compose.yml. License: add Wekan team.

This commit is contained in:
Lauri Ojansivu 2017-02-13 19:29:08 +02:00
parent 57d3bc8651
commit 312c92e67e
4 changed files with 92 additions and 1 deletions

40
docker-compose.yml Normal file
View file

@ -0,0 +1,40 @@
version: '2'
services:
wekandb:
image: mongo:3.2.11
container_name: wekan-db
restart: always
command: mongod --smallfiles --oplogSize 128
networks:
- wekan-tier
expose:
- 27017
volumes:
- wekan-db:/data/db
- wekan-db-dump:/dump
wekan:
image: mquandalle/wekan:latest
container_name: wekan-app
restart: always
networks:
- wekan-tier
ports:
- 80:80
environment:
- MONGO_URL=mongodb://wekandb:27017/wekan
- ROOT_URL=http://localhost
depends_on:
- wekandb
volumes:
wekan-db:
driver: local
wekan-db-dump:
driver: local
networks:
wekan-tier:
driver: bridge