| 12345678910111213141516171819202122232425262728 |
- version: '3.1'
- services:
- sw-oap:
- hostname: sw-oap
- image: tools.bpmhome.cn:18082/alpine_sw_oap_6_3_0:v3
- container_name: sw-oap
- privileged: true
- restart: always
- ports:
- - 31800:11800
- - 32800:12800
- env_file:
- - ./env/sw-oap.env
-
- sw-ui:
- hostname: sw-ui
- image: tools.bpmhome.cn:18082/alpine_sw_ui_6_3_0:v1
- container_name: sw-ui
- privileged: true
- depends_on:
- - sw-oap
- links:
- - sw-oap
- restart: always
- ports:
- - 38080:8080
- env_file:
- - ./env/sw-ui.env
|