We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5651df commit d487f09Copy full SHA for d487f09
Makefile
@@ -190,10 +190,8 @@ build build-nc: .env ## Builds production images and tags them as 'local/{servic
190
@docker images --filter="reference=local/*:production"
191
192
load-images: guard-local-src ## loads images from local-src
193
- # loading from images from $(local-src)...
194
- @$(foreach service, $(SERVICES_NAMES_TO_BUILD),\
195
- docker load --input $(local-src)/$(service).tar; \
196
- )
+ # loading from any tar images from $(local-src)...
+ @find $(local-src) -name '*.tar' -print0 | xargs -0 -n1 -P $(shell nproc) --no-run-if-empty --verbose docker load --input
197
# all images loaded
198
@docker images
199
0 commit comments