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

Clarify the meaning of remote when giving NGen image run options #121

Merged
merged 1 commit into from
Mar 1, 2024
Merged
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
8 changes: 4 additions & 4 deletions guide.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,14 +160,14 @@ fi

# Model run options
echo -e "${UYellow}Select an option (type a number): ${Color_Off}"
options=("Run NextGen Model using local docker image" "Run Nextgen using remote docker image" "Exit")
options=("Run NextGen using existing local docker image" "Run NextGen after updating to latest docker image" "Exit")
select option in "${options[@]}"; do
case $option in
"Run NextGen Model using local docker image")
"Run NextGen using existing local docker image")
echo "running the model"
break
;;
"Run Nextgen using remote docker image")
"Run NextGen after updating to latest docker image")
echo "pulling container and running the model"
docker pull $IMAGE_NAME
break
Expand All @@ -176,7 +176,7 @@ select option in "${options[@]}"; do
echo "Have a nice day!"
exit 0
;;
*) echo "Invalid option $REPLY, 1 to continue and 2 to exit"
*) echo "Invalid option $REPLY, 1 to continue with existing local image, 2 to update and run, and 3 to exit"
;;
esac
done
Expand Down
Loading