From 42333b26db4fff62afd119ec9f577d10ecdac1de Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 12 Dec 2024 10:33:24 -0500 Subject: [PATCH] fix image path --- scripts/start_local_atlas.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start_local_atlas.sh b/scripts/start_local_atlas.sh index 15ae2d8..d459b72 100644 --- a/scripts/start_local_atlas.sh +++ b/scripts/start_local_atlas.sh @@ -3,7 +3,7 @@ set -eu echo "Starting the container" -IMAGE=mongodb-atlas-local:latest +IMAGE=mongodb/mongodb-atlas-local:latest podman pull $IMAGE CONTAINER_ID=$(podman run --rm -d -e DO_NOT_TRACK=1 -P --health-cmd "/usr/local/bin/runner healthcheck" $IMAGE)