浏览代码

Add a docker-compose configuration file

Closes #231
Maxime Quandalle 9 年之前
父节点
当前提交
6b96273ebd
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      docker-compose.yml

+ 16 - 0
docker-compose.yml

@@ -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