4 lines
182 B
Plaintext
4 lines
182 B
Plaintext
|
function dc() {
|
||
|
DOCKER_PARAMS="$@"
|
||
|
find . -maxdepth 2 -type f -regextype posix-extended -regex '.*(docker-compose|compose)\.ya?ml' -execdir "docker compose ${DOCKER_PARAMS}" \;
|
||
|
}
|