2023-12-12 11:13:11 +05:30
|
|
|
version: '3.8'
|
2023-12-12 07:00:24 +00:00
|
|
|
|
2023-12-12 11:13:11 +05:30
|
|
|
services:
|
|
|
|
|
bizgaze_application:
|
2023-12-13 16:39:34 +00:00
|
|
|
image: harbor.hireserver.com/${reponame}/application:latest
|
2023-12-12 11:18:57 +05:30
|
|
|
container_name: bizgaze_application_${containername}
|
2023-12-12 11:13:11 +05:30
|
|
|
ports:
|
|
|
|
|
- "${hostport}:80"
|
|
|
|
|
volumes:
|
|
|
|
|
- ${application_appsettings}:/opt/bizgaze/appsettings.json
|
|
|
|
|
- ${settings_dir}:/opt/bizgaze/wwwroot/settings
|
2023-12-12 21:45:39 +05:30
|
|
|
- ${_files_dir}:/opt/bizgaze/wwwroot/_files
|
2023-12-14 05:13:51 +00:00
|
|
|
environment:
|
2024-01-29 09:38:38 +05:30
|
|
|
- appversion=947
|
2023-12-14 05:06:34 +00:00
|
|
|
bizgaze_assets:
|
2023-12-14 05:05:48 +00:00
|
|
|
image: harbor.hireserver.com/${reponame}/assets:latest
|
|
|
|
|
container_name: bizgaze_assets_${containername}
|
2023-12-14 06:20:47 +00:00
|
|
|
ports:
|
|
|
|
|
- "${assetsport}:80"
|
2023-12-14 05:13:51 +00:00
|
|
|
environment:
|
2024-01-29 09:38:38 +05:30
|
|
|
- assetsversion=946
|
2023-12-12 11:13:11 +05:30
|
|
|
bizgaze_automation:
|
2023-12-13 16:39:34 +00:00
|
|
|
image: harbor.hireserver.com/${reponame}/automation:latest
|
2023-12-12 11:18:57 +05:30
|
|
|
container_name: bizgaze_automation_${containername}
|
2023-12-12 11:13:11 +05:30
|
|
|
volumes:
|
2023-12-12 13:42:57 +05:30
|
|
|
- ${automation_appsettings}:/opt/automation/appsettings.json
|
|
|
|
|
environment:
|
2024-01-29 09:38:38 +05:30
|
|
|
- automationversion=946
|
2023-12-14 07:30:54 +00:00
|
|
|
bizgaze_script:
|
|
|
|
|
image: harbor.hireserver.com/${reponame}/script:latest
|
|
|
|
|
container_name: bizgaze_script_${containername}
|
|
|
|
|
volumes:
|
|
|
|
|
- ${application_appsettings}:/app/appsettings.json
|
|
|
|
|
environment:
|
|
|
|
|
- appurl=http://bizgaze_application:${hostport}
|
|
|
|
|
depends_on:
|
|
|
|
|
- bizgaze_application
|