docker-compose.yml 313 B

12345678910111213141516
  1. # Run with `docker-compose up -d`
  2. # XXX We should activate MongoDB oplog for better performance.
  3. wekan:
  4. image: mquandalle/wekan
  5. links:
  6. - wekandb
  7. environment:
  8. - MONGO_URL=mongodb://wekandb/wekan
  9. - ROOT_URL=http://localhost:80
  10. ports:
  11. - 80:80
  12. wekandb:
  13. image: mongo
  14. ports:
  15. - 27017