Last active
August 29, 2015 14:13
-
-
Save ihashacks/f51731e9cba919d3316b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/env bash | |
# Builds the docker image and pushs to | |
# repository (local by default) | |
# Usage: | |
# build_and_push <directory of Dockerfile> <resultant docker image name> | |
DOCKERFILE_DIRECTORY=$1 | |
DOCKER_IMAGE_NAME=$2 | |
if [ "$DOCKER_REPO_SERVER" = "" ]; then | |
DOCKER_REPO_SERVER=localhost:5000 | |
fi | |
DOCKER_REPO_NAME=$DOCKER_REPO_SERVER/$DOCKER_IMAGE_NAME | |
# Build docker image | |
rm -f docker-built-id | |
docker build $DOCKERFILE_DIRECTORY \ | |
| perl -pe '/Successfully built (\S+)/ && `echo -n $1 > docker-built-id`' | |
if [ ! -f docker-built-id ]; then | |
echo "No docker-built-id file found" | |
exit 1 | |
fi | |
DOCKER_BUILD_ID=`cat docker-built-id` | |
rm -f docker-built-id | |
# Publish built docker image to repo | |
docker tag -f $DOCKER_BUILD_ID $DOCKER_REPO_NAME | |
docker push $DOCKER_REPO_NAME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment