Skip to content

Instantly share code, notes, and snippets.

@blockloop
Created January 16, 2018 17:28
Show Gist options
  • Save blockloop/44014353a82e961df76123c7262eadca to your computer and use it in GitHub Desktop.
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
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