Created
April 10, 2019 19:09
-
-
Save djbender/fc283839847e2d04e1af5fce43bde667 to your computer and use it in GitHub Desktop.
docker-compose wrapper for dinghy's issue with taking down networks.
This file contains hidden or 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-compose() { | |
if [ "$1" == "down" ]; then | |
echo "Running \`docker-compose stop\` first" | |
/usr/bin/env docker-compose stop | |
fi | |
/usr/bin/env docker-compose "$@" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment