浏览代码

docker file for bizgaze application

Avinash 1年前
当前提交
e55f5ec655
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16
    0
      docker-compose.yml

+ 16
- 0
docker-compose.yml 查看文件

@@ -0,0 +1,16 @@
1
+version: '3.8'
2
+
3
+services:
4
+  bizgaze_application:
5
+    image: harbor.hireserver.com/bizgaze/application:latest
6
+    container_name: bizgaze_application
7
+    ports:
8
+      - "${hostport}:80"
9
+    volumes:
10
+      - ${application_appsettings}:/opt/bizgaze/appsettings.json
11
+      - ${settings_dir}:/opt/bizgaze/wwwroot/settings
12
+  bizgaze_automation:
13
+    image: harbor.hireserver.com/bizgaze/automation:latest
14
+    container_name: bizgaze_automation
15
+    volumes:
16
+      - ${automation_appsettings}:/opt/automation/appsettings.json

正在加载...
取消
保存