12345678910111213141516171819202122232425262728293031323334353637 |
- version: '3.8'
-
- services:
- bizgaze_application:
- image: harbor.hireserver.com/${reponame}/application:latest
- container_name: bizgaze_application_${containername}
- ports:
- - "${hostport}:80"
- volumes:
- - ${application_appsettings}:/opt/bizgaze/appsettings.json
- - ${settings_dir}:/opt/bizgaze/wwwroot/settings
- - ${_files_dir}:/opt/bizgaze/wwwroot/_files
- environment:
- - appversion=858
- bizgaze_assets:
- image: harbor.hireserver.com/${reponame}/assets:latest
- container_name: bizgaze_assets_${containername}
- ports:
- - "${assetsport}:80"
- environment:
- - assetsversion=857
- bizgaze_automation:
- image: harbor.hireserver.com/${reponame}/automation:latest
- container_name: bizgaze_automation_${containername}
- volumes:
- - ${automation_appsettings}:/opt/automation/appsettings.json
- environment:
- - automationversion=857
- 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
|