docker-compose.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. version: '2'
  2. services:
  3. pigx-zookeeper:
  4. image: zookeeper:3.4.13
  5. ports:
  6. - 2181:2181
  7. restart: always
  8. pigx-redis:
  9. image: redis:4.0.10
  10. ports:
  11. - 6379:6379
  12. restart: always
  13. pigx-eureka:
  14. build:
  15. context: ./
  16. dockerfile: ./pigx-eureka/Dockerfile
  17. restart: always
  18. container_name: pigx-eureka
  19. image: pigx-eureka
  20. ports:
  21. - 8761:8761
  22. pigx-config:
  23. build:
  24. context: ./
  25. dockerfile: ./pigx-config/Dockerfile
  26. restart: always
  27. container_name: pigx-config
  28. image: pigx-config
  29. pigx-gateway:
  30. build:
  31. context: ./
  32. dockerfile: ./pigx-gateway/Dockerfile
  33. restart: always
  34. container_name: pigx-gateway
  35. image: pigx-gateway
  36. ports:
  37. - 9999:9999
  38. pigx-auth:
  39. build:
  40. context: ./
  41. dockerfile: ./pigx-auth/Dockerfile
  42. restart: always
  43. container_name: pigx-auth
  44. image: pigx-auth
  45. pigx-upms:
  46. build:
  47. context: ./
  48. dockerfile: ./pigx-upms/pigx-upms-biz/Dockerfile
  49. restart: always
  50. container_name: pigx-upms
  51. image: pigx-upms
  52. pigx-monitor:
  53. build:
  54. context: ./
  55. dockerfile: ./pigx-visual/pigx-monitor/Dockerfile
  56. restart: always
  57. image: pigx-monitor
  58. container_name: pigx-monitor
  59. ports:
  60. - 5001:5001
  61. pigx-daemon:
  62. build:
  63. context: ./
  64. dockerfile: ./pigx-visual/pigx-daemon/Dockerfile
  65. restart: always
  66. image: pigx-daemon
  67. container_name: pigx-daemon
  68. ports:
  69. - 5002:5002
  70. pigx-codegen:
  71. build:
  72. context: ./
  73. dockerfile: ./pigx-visual/pigx-codegen/Dockerfile
  74. restart: always
  75. image: pigx-codegen
  76. container_name: pigx-codegen
  77. pigx-activiti:
  78. build:
  79. context: ./
  80. dockerfile: ./pigx-visual/pigx-activiti/Dockerfile
  81. image: pigx-activiti
  82. container_name: pigx-activiti
  83. restart: always
  84. pigx-tx-manager:
  85. build:
  86. context: ./
  87. dockerfile: ./pigx-visual/pigx-tx-manager/Dockerfile
  88. restart: always
  89. image: pigx-tx-manager
  90. container_name: pigx-tx-manager
  91. ports:
  92. - 5004:5004
  93. - 9998:9998