Skip to content
Snippets Groups Projects
Commit ed31e185 authored by Jon Azpiazu's avatar Jon Azpiazu
Browse files

Shorten default docker image name

parent 22e467b4
No related branches found
No related tags found
1 merge request!76Draft: Resolve "Default docker image name too long"
Pipeline #61525 passed
......@@ -43,6 +43,14 @@
# Get ID of image created by ddeploy
- 'DOCKER_ID=$(docker images --format="{{.ID}}" | head -1)'
- curl -Ls https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/enforce_labels.bash | bash -s -- ${DOCKER_ID}
# if USER_DOCKER_PUSH_NAME is not defined, shorten the default DOCKER_PUSH_NAME
- >
if [ -z ${USER_DOCKER_PUSH_NAME} ] ; then
echo USER_DOCKER_PUSH_NAME was not defined, using default docker image name
DOCKER_PUSH_NAME=${DOCKER_PUSH_NAME#$CI_PROJECT_ROOT_NAMESPACE/}
else
DOCKER_PUSH_NAME=${USER_DOCKER_PUSH_NAME}
fi
# Tag and push with the branch or tag name.
- echo "Pushing to ${DOCKER_PUSH_REGISTRY}/${DOCKER_PUSH_NAME}:${DOCKER_PUSH_TAG}"
- docker tag ${DOCKER_ID} ${DOCKER_PUSH_REGISTRY}/${DOCKER_PUSH_NAME}:${DOCKER_PUSH_TAG}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment