From 0836130e1f3206a65d19420f088814be4135f751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Wed, 4 Feb 2026 15:44:23 +0400 Subject: [PATCH] Fix missing minio bucket for e2e tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index a8c66ea73..84053aec4 100644 --- a/compose.yaml +++ b/compose.yaml @@ -24,7 +24,7 @@ services: image: "quay.io/minio/minio" entrypoint: "sh" command: | - -c 'mkdir -p /var/lib/minio/probod && minio server --json --console-address :9001 /var/lib/minio' + -c 'mkdir -p /var/lib/minio/probod && mkdir -p /var/lib/minio/probod-test && minio server --json --console-address :9001 /var/lib/minio' ports: - "9000:9000" - "9001:9001"