From 0ac6ceca3fe0cb2454b14364ffaf52181b60117f Mon Sep 17 00:00:00 2001 From: Cesar Celis Hernandez Date: Tue, 15 Feb 2022 13:01:10 -0500 Subject: [PATCH] Adding 4 volumes to run MinIO Distributed on the tests (#1572) Co-authored-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 158649f7c..84f86aade 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ assets: test-integration: @echo "docker run with MinIO Version below:" @echo $(MINIO_VERSION) - @(docker run -d --name minio --rm -p 9000:9000 $(MINIO_VERSION) server /data{1...4} && sleep 5) + @(docker run -v /data1 -v /data2 -v /data3 -v /data4 -d --name minio --rm -p 9000:9000 $(MINIO_VERSION) server /data{1...4} && sleep 5) @(GO111MODULE=on go test -race -v github.com/minio/console/integration/...) @(docker stop minio)