Skip to content

Commit

Permalink
Allow running something other than bash when using docker/run_contain…
Browse files Browse the repository at this point in the history
…er_release.sh and docker/run_container_dev.sh
  • Loading branch information
dagardner-nv committed Nov 19, 2024
1 parent 8d8cb01 commit 24abe55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/run_container_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ export DOCKER_IMAGE_TAG=${DOCKER_IMAGE_TAG:-"dev-$(date +'%y%m%d')"}
export DOCKER_ARGS="-v $PWD:/workspace -v /dev/hugepages:/dev/hugepages --privileged"

# Call the general run script
${SCRIPT_DIR}/run_container.sh
${SCRIPT_DIR}/run_container.sh "${@:-bash}"
2 changes: 1 addition & 1 deletion docker/run_container_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ if [[ ${MORPHEUS_SUPPORT_DOCA} == @(TRUE|ON) ]]; then
fi

# Call the general run script
${SCRIPT_DIR}/run_container.sh
${SCRIPT_DIR}/run_container.sh "${@:-bash}"

0 comments on commit 24abe55

Please sign in to comment.