Skip to content

Commit

Permalink
馃悰 FIX: using bash variable on remove dangling images
Browse files Browse the repository at this point in the history
  • Loading branch information
asapdotid committed Aug 25, 2023
1 parent 3eb7128 commit 6073b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .make/02-00-docker.mk
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ docker-build: docker-build-image ## Build the php image and then all other docke

.PHONY: docker-clean
docker-clean: ## Removing dangling and unused images
@docker rmi -f $(docker images -f "dangling=true" -q)
@docker rmi -f $$(docker images -f "dangling=true" -q)

.PHONY: docker-prune
docker-prune: ## Remove ALL unused docker resources, including volumes
Expand Down

0 comments on commit 6073b72

Please sign in to comment.