17 lines
517 B
YAML
17 lines
517 B
YAML
|
|
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
|