mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 20:17:16 -04:00
16 lines
313 B
YAML
16 lines
313 B
YAML
# 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
|