File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ down: ## Docker: stops the service <env=[dev|prod]>
153153.PHONY : logs
154154logs : # # Docker: exposes the service logs <env=[dev|prod]> <service=[app1|caddy]>
155155 @$(eval env ?= 'dev')
156- @$(eval service ?= 'app1' )
156+ @$(eval service ?= $( SERVICE_APP ) )
157157 $(call showInfo,"Exposing service\(s\) logs..." )
158158 @echo " "
159159 @$(DOCKER_COMPOSE ) logs -f $(service )
@@ -169,7 +169,7 @@ shell: ## Docker: establish a shell session into main container
169169
170170.PHONY : inspect
171171inspect : # # Docker: inspect the health for specific service <service=[app1|caddy]>
172- @$(eval service ?= 'app1' )
172+ @$(eval service ?= $( SERVICE_APP ) )
173173 $(call showInfo,"Inspecting the health for a specific service...")
174174 @echo " "
175175 @docker inspect --format " {{json .State.Health}}" $(service ) | jq
You can’t perform that action at this time.
0 commit comments