Skip to content
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.

Commit

Permalink
Fix tag refs
Browse files Browse the repository at this point in the history
  • Loading branch information
a-roberts committed Feb 1, 2018
1 parent df2e0af commit 1307fae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BuildAndPushDockerhub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ $? -ne 0 ]; then
fi

echo "Building the Docker image"
docker build -t ${image_name}:${tag} .
docker build -t ${image_name}:${image_tag} .
if [ $? -ne 0 ]; then
echo "Didn't build your application successfully, bailing"; exit;
fi
Expand Down
2 changes: 1 addition & 1 deletion BuildAndPushPrivate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if [ $? -ne 0 ]; then
fi

echo "Building the Docker image"
docker build -t ${image_name}:${tag} .
docker build -t ${image_name}:${image_tag} .
if [ $? -ne 0 ]; then
echo "Didn't build your application successfully, bailing"; exit;
fi
Expand Down

0 comments on commit 1307fae

Please sign in to comment.