@@ -684,9 +684,9 @@ info-registry: ## info on local registry (if any)
684684
685685# # INFO -------------------------------
686686
687- .PHONY : info info-images info-swarm info-tools
687+ .PHONY : info info-images info-swarm
688688info : # # displays setup information
689- # setup info:
689+ @echo setup info --------------------------------
690690 @echo ' Detected OS : $(IS_LINUX)$(IS_OSX)$(IS_WSL)$(IS_WSL2)$(IS_WIN)'
691691 @echo ' SWARM_STACK_NAME : ${SWARM_STACK_NAME}'
692692 @echo ' DOCKER_REGISTRY : $(DOCKER_REGISTRY)'
@@ -696,7 +696,12 @@ info: ## displays setup information
696696 @echo ' - ULR : ${VCS_URL}'
697697 @echo ' - REF : ${VCS_REF}'
698698 @echo ' - (STATUS)REF_CLIENT : (${VCS_STATUS_CLIENT}) ${VCS_REF_CLIENT}'
699- # dev tools version
699+ @make --silent info-tools
700+
701+
702+ .PHONY : show-tools
703+ info-tools : # # displays tools versions
704+ @echo dev-tools versions -------------------------
700705 @echo ' awk : $(shell awk -W version 2>&1 | head -n 1)'
701706 @echo ' docker : $(shell docker --version)'
702707 @echo ' docker buildx : $(shell docker buildx version)'
@@ -709,6 +714,7 @@ info: ## displays setup information
709714 @echo ' ubuntu : $(shell lsb_release --description --short 2> /dev/null | tail || echo ERROR Not an Ubuntu OS )'
710715
711716
717+
712718define show-meta
713719 $(foreach iid,$(shell docker images * /$(1 ) :* -q | sort | uniq) ,\
714720 docker image inspect $(iid ) | jq '.[0] | .RepoTags, .Config.Labels, .Architecture';)
0 commit comments