version: '3.8' # 网络 networks: default: external: name: default-network services: #nginx反向代理 nginx: image: "registry.cn-chengdu.aliyuncs.com/infish/pack-comm-nginx:1.23.1" restart: always ports: - 18080:80 volumes: - ./nginx/conf.d:/etc/nginx/conf.d - ./nginx/www:/usr/share/nginx/html #bus消息中间件 comm-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: - comm-mongo-alpha - comm-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 #redis缓存 comm-redis: image: "redis:alpine" restart: always command: --requirepass "packcomm" #这一行是设置密码 privileged: true #mongo -alpha数据库 comm-mongo-alpha: 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 ports: - 37017:27017 # 支付服务 8888 comm-pay: image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-pay:v1.0.0 restart: always depends_on: - comm-bus environment: NATS: nats://comm-bus:4222 # 用户中心 8908 # comm-usercenter: # image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-usercenter:v1.0.0 # restart: always # depends_on: # - comm-bus # environment: # NATS: nats://comm-bus:4222