Skip to content

Commit

Permalink
fix: always pull updated image from registry (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
plexoos authored May 10, 2024
1 parent e483587 commit 33f5b06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esi-shell
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ ohai "Using esi-shell image: ${IMG}"
if [[ -n "${USABLE_DOCKER-}" ]]
then
cmd="docker run --rm -dit ${DOCKER_GPU-} ${DOCKER_PLATFORM-} ${DOCKER_BIND_VOLUME-} -e OPTICKS_OPTIX_PREFIX=$OPTIX_DIR -e HOME=$WORKDIR -w=$WORKDIR $IMG"
cmd="docker run --rm -dit --pull=always ${DOCKER_GPU-} ${DOCKER_PLATFORM-} ${DOCKER_BIND_VOLUME-} -e OPTICKS_OPTIX_PREFIX=$OPTIX_DIR -e HOME=$WORKDIR -w=$WORKDIR $IMG"
CONTAINER_ID=$(exec $cmd)
if [ $? -ne 0 ]
Expand Down

0 comments on commit 33f5b06

Please sign in to comment.