Skip to content
Snippets Groups Projects
Commit 7d89f911 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: docker_push docs

parent 1f763b4c
No related branches found
No related tags found
1 merge request!455fix: docker_push docs
...@@ -17,8 +17,8 @@ function print_the_help { ...@@ -17,8 +17,8 @@ function print_the_help {
echo " --dockerhub Publish to DH only" echo " --dockerhub Publish to DH only"
echo " positional At least one export tag (e.g., v3.0-stable)" echo " positional At least one export tag (e.g., v3.0-stable)"
echo "" echo ""
echo " Execute docker push from image:input_tag to REGISTRY/image:export_tag for" echo " Execute docker push from image:label to REGISTRY/image:export_tag for"
echo " for all export tags. Will push to $CI_REGISTRY, and optionally also to" echo " all export tags. Will push to $CI_REGISTRY, and optionally also to"
echo " Dockerhub if the DH_PUSH environment variable is set" echo " Dockerhub if the DH_PUSH environment variable is set"
echo "" echo ""
echo "EXAMPLE: ./docker_push.sh -i eic_base -l 3.0.0 3.0.0 3.0-stable" echo "EXAMPLE: ./docker_push.sh -i eic_base -l 3.0.0 3.0.0 3.0-stable"
...@@ -97,7 +97,7 @@ if [ -z $IMAGE ]; then ...@@ -97,7 +97,7 @@ if [ -z $IMAGE ]; then
exit 1 exit 1
fi fi
if [ -z $INPUT_TAG ]; then if [ -z $INPUT_TAG ]; then
echo "ERROR: no input_Tag given, please use -t <INPUT_TAG>" echo "ERROR: no input_tag given, please use -l <INPUT_TAG>"
print_the_help print_the_help
exit 1 exit 1
fi fi
......
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