File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version: '3.8'
4
4
5
5
services :
6
6
web :
7
- image : rocketchat/rocket.chat:${VERSION:-4.8.7 }
7
+ image : rocketchat/rocket.chat:${VERSION:-5.0.8 }
8
8
command : bash -c 'for i in `seq 1 30`; do node --max-old-space-size=4096 main.js && s=$$? && break || s=$$?; echo "Tried $$i times. Waiting 5 secs..."; sleep 5; done; (exit $$s)'
9
9
volumes :
10
10
- ${VOLUME_PATH}uploads:/app/uploads
@@ -27,15 +27,15 @@ services:
27
27
- internal
28
28
29
29
mongo :
30
- image : mongo:4.2.24
30
+ image : mongo:${MONGO_VERSION:-4.4}
31
31
command : mongod --oplogSize 128 --replSet rs01
32
32
volumes :
33
33
- ${VOLUME_PATH}mongo:/data/db
34
34
networks :
35
35
- internal
36
36
37
37
mongo-init-replica :
38
- image : mongo:4.2.24
38
+ image : mongo:${MONGO_VERSION:-4.4}
39
39
command : ' mongo mongo/rocketchat --eval "rs.initiate({ _id: '' rs01'' , members: [ { _id: 0, host: '' mongo:27017'' } ]})"'
40
40
deploy :
41
41
restart_policy :
You can’t perform that action at this time.
0 commit comments