Created
January 16, 2018 17:28
-
-
Save blockloop/44014353a82e961df76123c7262eadca to your computer and use it in GitHub Desktop.
bash function I use in place of docker-compose that finds the nearest sibling/child docker-compose.yml
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
function dc() { | |
closest=$(find . -maxdepth 4 -type f -name docker-compose.yml -printf '%P\n' | tail -n1) | |
if [ $# -eq 0 ] || [ -z "$closest" ]; then | |
docker-compose "$@" | |
else | |
docker-compose -f "$closest" "$@" | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment