summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docker-compose.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 00000000..d64946a2
--- /dev/null
+++ b/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