docker-compose.yaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. version: '3.8'
  2. # 网络
  3. networks:
  4. default:
  5. name: default-network
  6. external: true
  7. services:
  8. #nginx反向代理
  9. box-nginx:
  10. image: "registry.cn-chengdu.aliyuncs.com/infish/pack-comm-nginx:1.23.1"
  11. restart: always
  12. ports:
  13. - 18088:80
  14. volumes:
  15. - ./nginx/conf.d:/etc/nginx/conf.d
  16. - ./nginx/www:/usr/share/nginx/html
  17. # links:
  18. # - box-cost
  19. # - box-usercenter
  20. depends_on:
  21. - box-cost
  22. - box-usercenter
  23. #bus消息中间件
  24. box-bus:
  25. restart: always
  26. image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-bus:v1.0.0
  27. volumes:
  28. - ./config-service.yaml:/root/bus/app.yaml
  29. depends_on:
  30. - box-mongo
  31. - box-redis
  32. ports:
  33. - 14300:4222
  34. #redis缓存
  35. box-redis:
  36. image: "redis:alpine"
  37. restart: always
  38. command:
  39. --requirepass "boxcomm" #这一行是设置密码
  40. privileged: true
  41. ports:
  42. - 16390:6379
  43. #mongo 数据库
  44. box-mongo:
  45. image: mongo:4.4.1
  46. restart: always
  47. environment:
  48. MONGO_INITDB_ROOT_USERNAME: root
  49. MONGO_INITDB_ROOT_PASSWORD: boxcost
  50. volumes:
  51. - ~/data/packs-box/mongo/db:/data/db
  52. - ~/data/packs-box/mongo/log:/var/log/mongodb
  53. ports:
  54. - 37030:27017
  55. # cost 8888
  56. box-cost:
  57. image: registry.cn-chengdu.aliyuncs.com/infish/pack-box-cost:v1.0.0
  58. restart: always
  59. depends_on:
  60. - box-bus
  61. environment:
  62. NATS: nats://box-bus:4222
  63. # 用户中心 8908
  64. box-usercenter:
  65. image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-usercenter:v1.0.0
  66. restart: always
  67. depends_on:
  68. - box-bus
  69. environment:
  70. NATS: nats://box-bus:4222
  71. # excel 转pdf
  72. office-pdf:
  73. image: thecodingmachine/gotenberg:6.4.4
  74. restart: always
  75. depends_on:
  76. - box-cost
  77. environment:
  78. PDF_API_ADDR: http://office-pdf:3000