[READ-ONLY] Mirror of https://github.com/mrgnw/scripts.
0

Configure Feed

Select the types of activity you want to include in your feed.

docker pull nested docker-compose files

+6
+6
docker-pull
··· 1 + #!/bin/zsh 2 + compose_files=(**/docker-compose.(yml|yaml)(.N)) 3 + 4 + # build out list of `-f <file> -f <file>...` 5 + compose_cmds="${${compose_files[@]/#/-f }[*]}" 6 + eval "docker-compose ${compose_cmds} pull"