docker-compose.yml 1.8 KB

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