summaryrefslogtreecommitdiff
path: root/services/wiki.yml
diff options
context:
space:
mode:
Diffstat (limited to 'services/wiki.yml')
-rw-r--r--services/wiki.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/services/wiki.yml b/services/wiki.yml
new file mode 100644
index 0000000..f20f548
--- /dev/null
+++ b/services/wiki.yml
@@ -0,0 +1,20 @@
+version: '3'
+
+volumes:
+ wiki_db:
+
+services:
+ wiki_mongo:
+ image: mongo
+ command: '--smallfiles --logpath=/dev/null'
+ volumes:
+ - wiki_db:/data/db
+
+ wiki:
+ build: $IMAGES/wiki
+ ports:
+ - "8080:80"
+ depends_on:
+ - wiki_mongo
+ environment:
+ WIKI_ADMIN_EMAIL: "till@hoeppner.ws"