From 55a8c7705f7b9c8d63f1225df074098431a63dd1 Mon Sep 17 00:00:00 2001 From: Felix Bartels Date: Mon, 3 Dec 2018 18:45:29 +0100 Subject: [PATCH] docker-compose down -v also removes volumes Signed-off-by: Felix Bartels --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2a19631..d18b6c2 100644 --- a/Makefile +++ b/Makefile @@ -113,8 +113,7 @@ publish-kweb: build-kweb docker push $(docker_repo)/kopano_web:latest test: - docker-compose down || true - docker volume ls | grep "kopano-docker_" | awk '{print $2}' | xargs docker volume rm || true + docker-compose down -v || true make build-all docker-compose build docker-compose up