Browse Source

build: add clean helper command

Saúl Ibarra Corretgé 6 years ago
parent
commit
ebc96c627b
1 changed files with 6 additions and 1 deletions
  1. 6 1
      Makefile

+ 6 - 1
Makefile

@@ -23,4 +23,9 @@ push-all:
 	cd jvb && docker push jitsi/jvb && cd ..
 	cd jigasi && docker push jitsi/jigasi && cd ..
 
-.PHONY: build-all push-all
+clean:
+	docker-compose stop
+	docker-compose rm
+	docker network prune
+
+.PHONY: build-all push-all clean