You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 1, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: Makefile
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -359,10 +359,16 @@ dev.kill.%: ## Kill specific services.
359
359
dev.rm-stopped: ## Remove stopped containers. Does not affect running containers.
360
360
docker-compose rm --force
361
361
362
-
dev.down: ## Stop and remove containers and networks for all services.
362
+
dev.down: ## Documentation for a change to naming
363
+
@echo "dev.down has been renamed to dev.remove-containers. If this doesn't seem like what you were looking for, you probably want to be using dev.stop instead. See docs for more details."
364
+
365
+
dev.down.%:
366
+
@echo "dev.down has been renamed to dev.remove-containers. If this doesn't seem like what you were looking for, you probably want to be using dev.stop instead. See docs for more details."
367
+
368
+
dev.remove-containers: ## Stop and remove containers and networks for all services.
363
369
docker-compose down
364
370
365
-
dev.down.%: ## Stop and remove containers for specific services.
371
+
dev.remove-containers.%: ## Stop and remove containers for specific services.
0 commit comments