Skip to content
Snippets Groups Projects
Commit ffe3e44ac1dc authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

docker_build: remove -f as the option flag does not exist anymore in 17.03.1 ce

parent c9d61bb79569
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@
for bookmark in $(cd $project_home && hg id -B);
do
echo "Docker tag with hg bookmark: $bookmark"
docker tag -f $registry/$image $registry/$image:$bookmark || { echo 'Tag failed' ; exit 1; }
docker tag $registry/$image $registry/$image:$bookmark || { echo 'Tag failed' ; exit 1; }
done
echo "Pushing docker image"
......
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