Skip to content

Commit

Permalink
feat(pull.sh): tag images as localhost after pulling
Browse files Browse the repository at this point in the history
We want to use these as the development images after pulling.
  • Loading branch information
thewtex committed Dec 9, 2024
1 parent a497e5d commit 53b191e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/docker/pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ done
set -- "${newparams[@]}" # overwrites the original positional params

$exe pull quay.io/itkwasm/emscripten:latest
$exe tag quay.io/itkwasm/emscripten:latest localhost/itkwasm/emscripten:latest
if $debug; then
$exe pull quay.io/itkwasm/emscripten:latest-debug
$exe tag quay.io/itkwasm/emscripten:latest-debug localhost/itkwasm/emscripten:latest-debug
fi

$exe pull quay.io/itkwasm/wasi:latest
$exe tag quay.io/itkwasm/wasi:latest localhost/itkwasm/wasi:latest
if $debug; then
$exe pull quay.io/itkwasm/wasi:latest-debug
$exe tag quay.io/itkwasm/wasi:latest-debug localhost/itkwasm/wasi:latest-debug
fi

0 comments on commit 53b191e

Please sign in to comment.