summaryrefslogtreecommitdiffstats
path: root/busuanzi/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'busuanzi/docker-compose.yaml')
-rw-r--r--busuanzi/docker-compose.yaml22
1 files changed, 22 insertions, 0 deletions
diff --git a/busuanzi/docker-compose.yaml b/busuanzi/docker-compose.yaml
new file mode 100644
index 0000000..fc3cb29
--- /dev/null
+++ b/busuanzi/docker-compose.yaml
@@ -0,0 +1,22 @@
+version: "3"
+services:
+ redis:
+ image: "redis:alpine"
+ restart: always
+ volumes:
+ - ./data/redis:/data
+
+ busuanzi:
+ image: "dejavumoe/busuanzi:latest"
+ restart: always
+ ports:
+ - "127.0.0.1:8956:8080"
+ volumes:
+ - ./data/busuanzi:/app/expose
+ links:
+ - redis
+ depends_on:
+ - redis
+ environment:
+ LOG_ENABLE: true
+ API_SERVER: http:\/\/127.0.0.1:8080\/api