build: add clean helper command

This commit is contained in:
Saúl Ibarra Corretgé
2018-10-17 11:12:15 +02:00
parent e78a4ed24a
commit ebc96c627b

View File

@@ -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