docker-compose.yaml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. #bus消息中间件
  18. box-bus:
  19. restart: always
  20. image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-bus:v1.0.0
  21. volumes:
  22. - ./config-service.yaml:/root/box-bus/app.yaml
  23. depends_on:
  24. - box-mongo
  25. - box-redis
  26. ports:
  27. - 14300:4222
  28. #redis缓存
  29. box-redis:
  30. image: "redis:alpine"
  31. restart: always
  32. command:
  33. --requirepass "boxcomm" #这一行是设置密码
  34. privileged: true
  35. ports:
  36. - 16390:6379
  37. #mongo 数据库
  38. box-mongo:
  39. image: mongo:4.4.1
  40. restart: always
  41. environment:
  42. MONGO_INITDB_ROOT_USERNAME: root
  43. MONGO_INITDB_ROOT_PASSWORD: boxcost
  44. volumes:
  45. - ~/data/packs-box/mongo/db:/data/db
  46. - ~/data/packs-box/mongo/log:/var/log/mongodb
  47. ports:
  48. - 37030:27017
  49. # cost 8888
  50. box-cost:
  51. image: registry.cn-chengdu.aliyuncs.com/infish/pack-box-cost:v1.0.0
  52. restart: always
  53. depends_on:
  54. - box-bus
  55. environment:
  56. NATS: nats://box-bus:4222
  57. # 用户中心 8908
  58. box-usercenter:
  59. image: registry.cn-chengdu.aliyuncs.com/infish/pack-box-usercenter:v1.0.0
  60. restart: always
  61. depends_on:
  62. - box-bus
  63. environment:
  64. NATS: nats://box-bus:4222