소스 검색

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