From 156f59d4a78f1401c02bf16d57610c34484220cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Pinson?= Date: Wed, 16 Jun 2021 14:46:15 +0200 Subject: [PATCH] test: add Makefile to wrap around docker-compose.yml (#171) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows to set uid and gid for MinIO Signed-off-by: Raphaƫl Pinson --- test/Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/Makefile diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 00000000..56c02ef3 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,5 @@ +UID=$(shell id -u) +GID=$(shell id -g) + +test: + UID="${UID}" GID="${GID}" docker-compose up -d