From e55f5ec655210ecd6bbe409b906fc5e99ceea148 Mon Sep 17 00:00:00 2001 From: Avinash Date: Tue, 12 Dec 2023 11:13:11 +0530 Subject: [PATCH] docker file for bizgaze application --- docker-compose.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..ad20dc8 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +version: '3.8' + +services: + bizgaze_application: + image: harbor.hireserver.com/bizgaze/application:latest + container_name: bizgaze_application + ports: + - "${hostport}:80" + volumes: + - ${application_appsettings}:/opt/bizgaze/appsettings.json + - ${settings_dir}:/opt/bizgaze/wwwroot/settings + bizgaze_automation: + image: harbor.hireserver.com/bizgaze/automation:latest + container_name: bizgaze_automation + volumes: + - ${automation_appsettings}:/opt/automation/appsettings.json