|
@@ -8,71 +8,65 @@ networks:
|
|
|
|
|
|
services:
|
|
|
#nginx反向代理
|
|
|
- nginx:
|
|
|
+ box-nginx:
|
|
|
image: "registry.cn-chengdu.aliyuncs.com/infish/pack-comm-nginx:1.23.1"
|
|
|
restart: always
|
|
|
ports:
|
|
|
- - 18080:80
|
|
|
+ - 18088:80
|
|
|
volumes:
|
|
|
- ./nginx/conf.d:/etc/nginx/conf.d
|
|
|
- ./nginx/www:/usr/share/nginx/html
|
|
|
|
|
|
#bus消息中间件
|
|
|
- comm-bus:
|
|
|
+ box-bus:
|
|
|
restart: always
|
|
|
- image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-bus:v1.0.0
|
|
|
+ image: registry.cn-chengdu.aliyuncs.com/infish/pack-box-bus:v1.0.0
|
|
|
volumes:
|
|
|
- - ./config-service.yaml:/root/bus/app.yaml
|
|
|
+ - ./config-service.yaml:/root/box-bus/app.yaml
|
|
|
|
|
|
depends_on:
|
|
|
- - comm-mongo-alpha
|
|
|
- - comm-redis
|
|
|
+ - box-mongo
|
|
|
+ - box-redis
|
|
|
ports:
|
|
|
- - 14221:4222
|
|
|
-
|
|
|
- # # nats服务监控采集 7777
|
|
|
- # nats-exporter:
|
|
|
- # restart: always
|
|
|
- # image: natsio/prometheus-nats-exporter:latest
|
|
|
- # command: "-varz http://comm-bus:8222"
|
|
|
- # depends_on:
|
|
|
- # - comm-bus
|
|
|
+ - 15000:4222
|
|
|
|
|
|
#redis缓存
|
|
|
- comm-redis:
|
|
|
+ box-redis:
|
|
|
image: "redis:alpine"
|
|
|
restart: always
|
|
|
command:
|
|
|
- --requirepass "packcomm" #这一行是设置密码
|
|
|
+ --requirepass "boxcomm" #这一行是设置密码
|
|
|
privileged: true
|
|
|
+ ports:
|
|
|
+ - 16800:6379
|
|
|
|
|
|
- #mongo -alpha数据库
|
|
|
- comm-mongo-alpha:
|
|
|
+ #mongo 数据库
|
|
|
+ box-mongo:
|
|
|
image: mongo:4.4.1
|
|
|
restart: always
|
|
|
environment:
|
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
|
MONGO_INITDB_ROOT_PASSWORD: alpha
|
|
|
volumes:
|
|
|
- - ~/data/packs-comm/mongo-alpha/db:/data/db
|
|
|
- - ~/data/packs-comm/mongo-alpha/log:/var/log/mongodb
|
|
|
+ - ~/data/packs-box/mongo/db:/data/db
|
|
|
+ - ~/data/packs-box/mongo/log:/var/log/mongodb
|
|
|
ports:
|
|
|
- - 37017:27017
|
|
|
+ - 38000:27017
|
|
|
|
|
|
- # 支付服务 8888
|
|
|
- comm-pay:
|
|
|
- image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-pay:v1.0.0
|
|
|
+ # cost 8888
|
|
|
+ box-cost:
|
|
|
+ image: registry.cn-chengdu.aliyuncs.com/infish/pack-box-cost:v1.0.0
|
|
|
restart: always
|
|
|
depends_on:
|
|
|
- - comm-bus
|
|
|
+ - box-bus
|
|
|
environment:
|
|
|
- NATS: nats://comm-bus:4222
|
|
|
+ NATS: nats://box-bus:4222
|
|
|
|
|
|
# 用户中心 8908
|
|
|
- # comm-usercenter:
|
|
|
- # image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-usercenter:v1.0.0
|
|
|
+ # box-usercenter:
|
|
|
+ # image: registry.cn-chengdu.aliyuncs.com/infish/pack-box-usercenter:v1.0.0
|
|
|
# restart: always
|
|
|
# depends_on:
|
|
|
- # - comm-bus
|
|
|
+ # - box-bus
|
|
|
# environment:
|
|
|
- # NATS: nats://comm-bus:4222
|
|
|
+ # NATS: nats://box-bus:4222
|