Created
November 10, 2015 00:11
-
-
Save mishak87/fae2e3dd3d18700f6d14 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
# docker build && docker run | |
dbr () { | |
id=$(docker build . | grep 'Successfully built' | cut -d' ' -f 3) | |
if [ $? -ne 0 ]; then | |
exit 1; | |
fi | |
docker run "$id" "${@}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment