Browse Source

Merge pull request #903 from nextcloud/fix/tool/loading-cached-docker-images

fix(tool): Fix loading cached docker images
pull/904/head
Kate 1 year ago committed by GitHub
parent
commit
9949724094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      tool/common.sh

13
tool/common.sh

@ -8,14 +8,13 @@ function image_tag() {
function cache_build_args() {
tag="$1"
build_args=("--cache-from" "type=registry,ref=$tag")
build_args=(
"--load"
"--cache-from" "type=registry,ref=$tag"
)
if [ -v GITHUB_REPOSITORY ]; then
build_args+=(
"--push"
"--cache-to" "type=registry,ref=$tag,mode=max"
)
else
build_args+=("--load")
build_args+=("--cache-to" "type=registry,ref=$tag,mode=max")
fi
echo "${build_args[*]}"

Loading…
Cancel
Save