Created
September 9, 2018 12:01
-
-
Save ammardev/67a4f66d033c0a4f1fe6a04e09a868bc to your computer and use it in GitHub Desktop.
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
function dce() | |
{ | |
docker-compose exec "$1" bash | |
} | |
function _dce() | |
{ | |
services=$(docker-compose config --services 2>/dev/null) | |
if [ -z $services ]; then | |
echo "This is not a valid Docker Compose folder" | |
else | |
_arguments "1: :($services)" | |
fi | |
} | |
compdef _dce dce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment