소스 검색

Adding compose file

clement 11 달 전
부모
커밋
afa912b88d
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      compose.yaml

+ 13 - 0
compose.yaml

@@ -0,0 +1,13 @@
+services:
+  redis:
+    restart: unless-stopped
+    image: redis:latest
+  bim-ng:
+    restart: unless-stopped
+    build: .
+    depends_on:
+      - redis
+    ports:
+      - "8010:8080"
+    volumes:
+      - "./settings.toml:/etc/bim-ng/settings.toml"