docker-compose-sw.yml 563 B

12345678910111213141516171819202122232425262728
  1. version: '3.1'
  2. services:
  3. sw-oap:
  4. hostname: sw-oap
  5. image: tools.bpmhome.cn:18082/alpine_sw_oap_6_3_0:v3
  6. container_name: sw-oap
  7. privileged: true
  8. restart: always
  9. ports:
  10. - 31800:11800
  11. - 32800:12800
  12. env_file:
  13. - ./env/sw-oap.env
  14. sw-ui:
  15. hostname: sw-ui
  16. image: tools.bpmhome.cn:18082/alpine_sw_ui_6_3_0:v1
  17. container_name: sw-ui
  18. privileged: true
  19. depends_on:
  20. - sw-oap
  21. links:
  22. - sw-oap
  23. restart: always
  24. ports:
  25. - 38080:8080
  26. env_file:
  27. - ./env/sw-ui.env