add docker-compose shard cluster

pull/455/head
Gordon 2 years ago committed by Xinwei Xiong(cubxxw-openim)
parent e6161ee410
commit 3ef9db0ebe

@ -90,6 +90,23 @@ services:
volumes:
- /data04/mongo/shard4/db:/data/db
- /data04/mongo/shard4/configdb:/data/configdb
environment:
- TZ=Asia/Shanghai
# cache
- wiredTigerCacheSizeGB=1
# shard分片5
shard5:
image: mongo:latest
networks:
- mongo-network
container_name: shard5
restart: always
ports:
- 27518:27018
command: --shardsvr --replSet "shard5" --bind_ip_all
volumes:
- /data05/mongo/shard5/db:/data/db
- /data05/mongo/shard5/configdb:/data/configdb
environment:
- TZ=Asia/Shanghai
# cache

Loading…
Cancel
Save