Commit dd4aaad8 authored by Stewart Williams's avatar Stewart Williams
Browse files

Allow 'make down' to work when no services are up

parent 20a34f4c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ interactive: ## start an interactive session using the project image (caution:
	  -v $(CURDIR):/app $(IMAGE_TO_TEST) /bin/bash

down:  ## stop develop/test environment and any interactive session
	docker ps | grep $(PROJECT)-dev && docker stop $(PROJECT)-dev
	docker ps | grep $(PROJECT)-dev && docker stop $(PROJECT)-dev || true
	docker-compose down

help:  ## show this help.