Skip to content
Snippets Groups Projects
Commit 8f8af437 authored by Corné Lukken's avatar Corné Lukken
Browse files

L2SS-205: Correct push path

parent c462f1b5
No related branches found
No related tags found
1 merge request!183Docker image building & pushing with CI pipeline caching
......@@ -27,7 +27,7 @@ for image in "${REMOTE_IMAGES[@]}"; do
# shellcheck disable=SC2086
set -- $image
remote_url="${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}-${1}:${2}"
local_url="${LOCAL_DOCKER_REGISTRY_HOST}/${LOCAL_DOCKER_REGISTRY_USER}-${1}:${2}"
local_url="${LOCAL_DOCKER_REGISTRY_HOST}/${LOCAL_DOCKER_REGISTRY_USER}/${1}:${2}"
docker pull "${remote_url}"
docker tag "${remote_url}" "${local_url}"
docker push "${local_url}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment