Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .evergreen/mongodb-community-search/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ services:
# The public facing docs have the publicly available mongot image but here
# we use the image published to the internal registry.

# Note that you first need to login to the registry by following the docs
# Note that to use the internal releases you first need to login to the registry by following the docs
# here:
# https://github.com/10gen/mongot/blob/master/docs/development/docker.md#authenticate-with-ecr
# image: mongodb/mongodb-community-search:latest
image: 901841024863.dkr.ecr.us-east-1.amazonaws.com/mongot-community/rapid-releases:latest
# image:
image: ${MONGOT_IMAGE:-mongodb/mongodb-community-search:latest}
networks:
- search-community
volumes:
Expand Down
4 changes: 4 additions & 0 deletions .evergreen/mongodb-community-search/start-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ fi

docker network create search-community || true
docker compose down || true

if [ -n "${USE_INTERNAL_MONGOT:-}" ]; then
export MONGOT_IMAGE="901841024863.dkr.ecr.us-east-1.amazonaws.com/mongot-community/rapid-releases:latest"
fi
docker compose up -d

# Wait for the healthcheck
Expand Down