Add a docker-compose configuration file

Closes #231
This commit is contained in:
Maxime Quandalle 2015-09-06 19:19:34 +02:00
parent e964fbb5cc
commit 6b96273ebd

16
docker-compose.yml Normal file
View file

@ -0,0 +1,16 @@
# Run with `docker-compose up -d`
# XXX We should activate MongoDB oplog for better performance.
wekan:
image: mquandalle/wekan
links:
- wekandb
environment:
- MONGO_URL=mongodb://wekandb/wekan
- ROOT_URL=http://localhost:80
ports:
- 80:80
wekandb:
image: mongo
ports:
- 27017