(misc) update docker compose
This commit is contained in:
parent
014bf685ca
commit
934c436044
1 changed files with 6 additions and 5 deletions
|
@ -2,7 +2,7 @@ version: "3"
|
|||
|
||||
services:
|
||||
rocketchat:
|
||||
image: registry.rocket.chat/rocketchat/rocket.chat:latest
|
||||
image: registry.rocket.chat/rocketchat/rocket.chat:4.8.1
|
||||
command: >
|
||||
bash -c
|
||||
"for i in `seq 1 30`; do
|
||||
|
@ -28,14 +28,15 @@ services:
|
|||
- 3000:3000
|
||||
|
||||
mongo:
|
||||
image: mongo:4.0
|
||||
image: mongo:4.4
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- db:/data/db
|
||||
command: mongod --smallfiles --oplogSize 128 --replSet rs0 --storageEngine=mmapv1
|
||||
|
||||
command: mongod --oplogSize 128 --replSet rs0
|
||||
ports:
|
||||
- 27017:27017
|
||||
mongo-init-replica:
|
||||
image: mongo:4.0
|
||||
image: mongo:4.4
|
||||
command: >
|
||||
bash -c
|
||||
"for i in `seq 1 30`; do
|
||||
|
|
Reference in a new issue