blob: d64946a2a93b2e24cf98a1544626902a116d932e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|