Skip to content

Commit 6f82104

Browse files
authored
[tools/shoestring] fix: upgrade Symbol node's to MongoDB 7
1 parent 7d52934 commit 6f82104

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tools/shoestring/shoestring/templates/docker-compose-dual.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: '2'
33
services:
44
db:
5-
image: mongo:6.0.14
5+
image: mongo:7.0.16
66
user: '{{ user }}'
77
command: mongod --dbpath=/dbdata
88
stop_signal: SIGINT
@@ -13,7 +13,7 @@ services:
1313
- ./dbdata:/data:rw
1414

1515
initiate:
16-
image: mongo:6.0.14
16+
image: mongo:7.0.16
1717
user: '{{ user }}'
1818
command: /bin/bash /startup/mongors.sh /real_data/startup/mongo-initialized
1919
volumes:

tools/shoestring/tests/internal/test_Preparer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -749,8 +749,8 @@ def _assert_can_configure_docker(self, config, expected_startup_files, expected_
749749

750750
# - check compose file
751751
expected_image_map = {
752-
'db': 'mongo:6.0.14',
753-
'initiate': 'mongo:6.0.14',
752+
'db': 'mongo:7.0.16',
753+
'initiate': 'mongo:7.0.16',
754754
'client': 'symbolplatform/symbol-server:gcc-a.b.c.d',
755755
'broker': 'symbolplatform/symbol-server:gcc-a.b.c.d',
756756
'rest-api': 'symbolplatform/symbol-rest:a.b.c',

0 commit comments

Comments
 (0)