aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..1a6c9cf
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,15 @@
+version: '2'
+
+services:
+ dasein:
+ build: .
+ env_file: .env
+ image: rbdr/dasein
+ environment:
+ - DASEIN_REDIS_HOST=db
+ ports:
+ - "1927:1927"
+ depends_on:
+ - db
+ db:
+ image: redis:3.2.6