123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- version: '3.8'
- networks:
- default:
- name: default-network
- external: true
- services:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- scnict-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:
- - scnict-mongo
-
- ports:
- - 14222:4222
-
-
-
-
-
-
-
-
-
- scnict-mongo:
- image: mongo:4.4.1
- restart: always
- environment:
- MONGO_INITDB_ROOT_USERNAME: root
- MONGO_INITDB_ROOT_PASSWORD: scnictzzz_x
- volumes:
- - ~/web/data/mongo/db:/data/db
- - ~/web/data/mongo/log:/var/log/mongodb
-
- ports:
- - 17017:27017
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- scnict:
- image: registry.cn-chengdu.aliyuncs.com/infish/pack-scnict:v1.0.0
- restart: always
- depends_on:
- - scnict-bus
- ports:
- - 7200:7200
- volumes:
-
-
-
- - ~/web/assets:/root/web/assets
- environment:
- NATS: nats://scnict-bus:4222
|