@@ -685,9 +685,9 @@ info-registry: ## info on local registry (if any)
685685
686686# # INFO -------------------------------
687687
688- .PHONY : info info-images info-swarm info-tools
688+ .PHONY : info info-images info-swarm
689689info : # # displays setup information
690- # setup info:
690+ @echo setup info --------------------------------
691691 @echo ' Detected OS : $(IS_LINUX)$(IS_OSX)$(IS_WSL)$(IS_WSL2)$(IS_WIN)'
692692 @echo ' SWARM_STACK_NAME : ${SWARM_STACK_NAME}'
693693 @echo ' DOCKER_REGISTRY : $(DOCKER_REGISTRY)'
@@ -697,7 +697,12 @@ info: ## displays setup information
697697 @echo ' - ULR : ${VCS_URL}'
698698 @echo ' - REF : ${VCS_REF}'
699699 @echo ' - (STATUS)REF_CLIENT : (${VCS_STATUS_CLIENT}) ${VCS_REF_CLIENT}'
700- # dev tools version
700+ @make --silent info-tools
701+
702+
703+ .PHONY : show-tools
704+ info-tools : # # displays tools versions
705+ @echo dev-tools versions -------------------------
701706 @echo ' awk : $(shell awk -W version 2>&1 | head -n 1)'
702707 @echo ' docker : $(shell docker --version)'
703708 @echo ' docker buildx : $(shell docker buildx version)'
@@ -710,6 +715,7 @@ info: ## displays setup information
710715 @echo ' ubuntu : $(shell lsb_release --description --short 2> /dev/null | tail || echo ERROR Not an Ubuntu OS )'
711716
712717
718+
713719define show-meta
714720 $(foreach iid,$(shell docker images * /$(1 ) :* -q | sort | uniq) ,\
715721 docker image inspect $(iid ) | jq '.[0] | .RepoTags, .Config.Labels, .Architecture';)
0 commit comments