|
@@ -0,0 +1,84 @@
|
|
|
+version: '3.8'
|
|
|
+
|
|
|
+# 网络
|
|
|
+networks:
|
|
|
+ default:
|
|
|
+ name: default-network
|
|
|
+ external: false
|
|
|
+
|
|
|
+services:
|
|
|
+ #nginx反向代理
|
|
|
+ baishuihu-nginx:
|
|
|
+ image: "registry.cn-chengdu.aliyuncs.com/infish/pack-comm-nginx:1.23.1"
|
|
|
+ restart: always
|
|
|
+ ports:
|
|
|
+ - 8081:80
|
|
|
+ volumes:
|
|
|
+ - ./nginx/conf.d:/etc/nginx/conf.d
|
|
|
+ - ./nginx/www:/usr/share/nginx/html
|
|
|
+
|
|
|
+ depends_on:
|
|
|
+ - baishuihu
|
|
|
+ - baishuihu-usercenter
|
|
|
+
|
|
|
+ #bus消息中间件
|
|
|
+ baishuihu-bus:
|
|
|
+ restart: always
|
|
|
+ image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-bus:v1.0.0
|
|
|
+ volumes:
|
|
|
+ - ./config-service.yaml:/root/bus/app.yaml
|
|
|
+ depends_on:
|
|
|
+ - baishuihu-mongo
|
|
|
+ - baishuihu-redis
|
|
|
+ ports:
|
|
|
+ - 4222:4222
|
|
|
+
|
|
|
+ #redis缓存
|
|
|
+ baishuihu-redis:
|
|
|
+ image: "redis:alpine"
|
|
|
+ restart: always
|
|
|
+ command:
|
|
|
+ --requirepass "baishuihu_vxxx" #这一行是设置密码
|
|
|
+ privileged: true
|
|
|
+ ports:
|
|
|
+ - 6397:6379
|
|
|
+
|
|
|
+ #mongo 数据库
|
|
|
+ baishuihu-mongo:
|
|
|
+ image: mongo:4.4.1
|
|
|
+ restart: always
|
|
|
+ environment:
|
|
|
+ MONGO_INITDB_ROOT_USERNAME: root
|
|
|
+ MONGO_INITDB_ROOT_PASSWORD: baishuihu_vxxx
|
|
|
+ volumes:
|
|
|
+ - /data/pack-baishuihu/mongo/db:/data/db
|
|
|
+ - /data/pack-baishuihu/mongo/log:/var/log/mongodb
|
|
|
+ ports:
|
|
|
+ - 27017:27017
|
|
|
+
|
|
|
+ baishuihu:
|
|
|
+ image: registry.cn-chengdu.aliyuncs.com/infish/pack-baishuihu:v1.0.0
|
|
|
+ restart: always
|
|
|
+ depends_on:
|
|
|
+ - baishuihu-bus
|
|
|
+ environment:
|
|
|
+ NATS: nats://baishuihu-bus:4222
|
|
|
+ CONFIGER_MONGO: baishuihu-mongo
|
|
|
+ CONFIGER_REDIS: baishuihu-redis
|
|
|
+
|
|
|
+ # 用户中心 8908
|
|
|
+ baishuihu-usercenter:
|
|
|
+ image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-usercenter:v1.0.1
|
|
|
+ restart: always
|
|
|
+ depends_on:
|
|
|
+ - baishuihu-bus
|
|
|
+ environment:
|
|
|
+ NATS: nats://baishuihu-bus:4222
|
|
|
+ CONFIGER_MONGO: baishuihu-user-mongo
|
|
|
+ CONFIGER_REDIS: baishuihu-redis
|
|
|
+ CONFIGER_JWT: baishuihu#baishuihu_secret_xxx#168
|
|
|
+ IGNORE_USERTYPE: "true"
|
|
|
+ # MONGO_MIGRATIONS: /data/migrations==mongodb://root:3dshow@3dshow-mongo-alpha:27017/supply-user?authSource=admin&&/data/migrations==mongodb://user:password@host:port/dbname?query
|
|
|
+ MONGO_MIGRATIONS: /data/migrations==mongodb://root:baishuihu_vxxx@baishuihu-mongo:27017/user?authSource=admin
|
|
|
+ volumes:
|
|
|
+ - ./mongo-migrations:/data/migrations
|