1
0
mirror of https://github.com/containous/traefik.git synced 2024-10-27 01:55:17 +03:00

CI: speed up pull images.

This commit is contained in:
Ludovic Fernandez 2017-10-02 14:22:03 +02:00 committed by Traefiker
parent ec5976bbc9
commit 0b97a67cfa

View File

@ -114,7 +114,7 @@ fmt:
gofmt -s -l -w $(SRCS)
pull-images:
grep --no-filename -E '^\s+image:' ./integration/resources/compose/*.yml | awk '{print $$2}' | sort | uniq | xargs -n 1 docker pull
grep --no-filename -E '^\s+image:' ./integration/resources/compose/*.yml | awk '{print $$2}' | sort | uniq | xargs -P 6 -n 1 docker pull
help: ## this help
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)