Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ammardev/67a4f66d033c0a4f1fe6a04e09a868bc to your computer and use it in GitHub Desktop.
Save ammardev/67a4f66d033c0a4f1fe6a04e09a868bc to your computer and use it in GitHub Desktop.
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