docker-compose.yaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. version: '3.8'
  2. # 网络
  3. networks:
  4. default:
  5. name: box-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. expose:
  56. - 27017
  57. # cost 8888
  58. box-cost:
  59. image: registry.cn-chengdu.aliyuncs.com/infish/pack-box-cost:v1.0.0
  60. restart: always
  61. depends_on:
  62. - box-bus
  63. environment:
  64. NATS: nats://box-bus:4222
  65. # 用户中心 8908
  66. box-usercenter:
  67. image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-usercenter:v1.0.0
  68. restart: always
  69. depends_on:
  70. - box-bus
  71. environment:
  72. NATS: nats://box-bus:4222