animeic vor 1 Jahr
Commit
7ab2f44ca0

+ 32 - 0
config-service.yaml

@@ -0,0 +1,32 @@
+log:
+  fileName: baishuihu-bus.log
+  level: 1
+  serviceName: baishuihu-bus
+  
+configer:
+  -
+    name: baishuihu-mongo
+    value: mongodb://root:baishuihu_vxxx@baishuihu-mongo:27017/baishuihu?authSource=admin
+    devValue: mongodb://root:baishuihu_vxxx@47.108.113.38:27017/baishuihu?authSource=admin
+  -
+    name: baishuihu-user-mongo
+    value: mongodb://root:baishuihu_vxxx@baishuihu-mongo:27017/user?authSource=admin
+    devValue: mongodb://root:baishuihu_vxxx@47.108.113.38:27017/user?authSource=admin
+  -
+    name: baishuihu-redis
+    value: baishuihu-redis:6379#0#default#boxcomm
+    devValue: 47.108.113.38:6397#0#default#baishuihu_vxxx
+
+# adapter:
+#   -
+#     busName: comm
+#     nats: nats://comm-bus:4222
+
+startLocalNats: true
+startNatsShellParams: "-p 4222 -m 8222 -js"
+startNatsPort: 4222
+
+nats:
+  url: nats://baishuihu-bus:4222
+  maxReconnect: 10000
+  reconnDelaySecond: 5

+ 84 - 0
docker-compose.yaml

@@ -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

+ 15 - 0
mongo-migrations/1_apps.down.json

@@ -0,0 +1,15 @@
+[
+    {
+        "delete": "apps",
+        "deletes": [
+           {
+             "q" : {
+                "_id": {
+                    "$oid": "637dde15ad5446a2050456f1"
+                }
+             },
+             "limit" : 1
+           }
+        ]
+     }
+]

+ 13 - 0
mongo-migrations/1_apps.up.json

@@ -0,0 +1,13 @@
+[
+    {
+        "insert": "apps",
+        "documents": [ {
+            "_id": {
+                "$oid": "637dde15ad5446a2050456f1"
+            },
+            "name": "adxihua",
+            "key": "adxihua",
+            "restrict": false
+        }]
+     }
+]

+ 30 - 0
nginx/conf.d/default.conf

@@ -0,0 +1,30 @@
+server {
+    listen       80;
+    listen  [::]:80;
+    server_name  localhost;
+    #access_log  /var/log/nginx/host.access.log  main;
+    # location / {
+    #     root   /usr/share/nginx/html;
+    #     index  index.html index.htm;
+    # }
+    #error_page  404              /404.html;
+
+    # redirect server error pages to the static page /50x.html
+    #
+    error_page   500 502 503 504  /50x.html;
+    location = /50x.html {
+        root   /usr/share/nginx/html;
+    }
+
+    # 客户端上传文件最大值
+    # client_max_body_size 50M;
+    # client_body_buffer_size 30M;
+    
+    location / {
+       proxy_pass  http://baishuihu:8101/;
+    }   
+
+    location /usercenter/ {
+       proxy_pass  http://baishuihu-usercenter:8908/usercenter/;
+    }   
+}

+ 1 - 0
nginx/www/index.html

@@ -0,0 +1 @@
+hello world~!!!

+ 17 - 0
readme.md

@@ -0,0 +1,17 @@
+# summary
+
+[https://baishuihu.cn/v1/]
+
+baishuihu-nginx
+8081
+
+## 开发端口
+
+baishuihu
+8101
+baishuihu-bus
+4222
+baishuihu-mongo
+27017
+baishuihu-redis
+6397

+ 4 - 0
start.sh

@@ -0,0 +1,4 @@
+#!/bin/bash
+
+docker-compose up -d --remove-orphans
+docker-compose ps