Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[152] mongodb 5.0 end of life on october 31 2024 #153

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ services:
context: .
dockerfile: Dockerfile-test
mongo:
image: mongo:5.0
image: mongo:6.0.17
ports:
- "27017:27017"
2 changes: 1 addition & 1 deletion dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
retries: 3
start_period: 30s
mongo:
image: mongo:5.0.6
image: mongo:6.0.17
restart: always
init: true
ports:
Expand Down
2 changes: 1 addition & 1 deletion dev/make_superuser.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ cd `dirname "$0"`
# Pass database name as the first parameter
DB="${GDH_DATABASE:-$1}"
# Pass email of user to grant an admin role as second parameter
docker-compose -f docker-compose.yml -f docker-compose.dev.yml exec mongo mongo "${DB}" --eval "var email='$2'; var roles=['admin', 'curator'];" /verification/scripts/roles.js
docker-compose -f docker-compose.yml -f docker-compose.dev.yml exec mongo mongosh "${DB}" --eval "var email='$2'; var roles=['admin', 'curator'];" /verification/scripts/roles.js
# Restore directory.
popd
2 changes: 1 addition & 1 deletion geocoding/location-service/docker-compose-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ services:
context: .
dockerfile: Dockerfile-test
mongo:
image: mongo:5.0
image: mongo:6.0.17
ports:
- "27017:27017"
Loading