From abe0c07df16feef262e73af78744487e10ff2718 Mon Sep 17 00:00:00 2001 From: "Frederick F. Kautz IV" Date: Wed, 29 Jun 2022 22:23:30 -0700 Subject: [PATCH] fix mb breaking when the bucket already exists Signed-off-by: Frederick F. Kautz IV --- compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yml b/compose.yml index 6c0c6b26..cffbe082 100644 --- a/compose.yml +++ b/compose.yml @@ -25,7 +25,7 @@ services: ARCHIVIST_BLOB_STORE_USE_SSL: "false" ARCHIVIST_BLOB_STORE_ACCESS_KEY_ID: testifytestifytestify ARCHIVIST_BLOB_STORE_SECRET_ACCESS_KEY_ID: exampleexampleexample - ARCHIVIST_BLOB_STORE_BUCKET_NAME: attestations + ARCHIVIST_BLOB_STORE_BUCKET_NAME: attestations ARCHIVIST_BLOB_STORE_ENDPOINT: minio:9000 ports: - 8080:8080 @@ -49,7 +49,7 @@ services: minio-init: image: quay.io/minio/mc restart: on-failure - command: mb --insecure testminio/attestations + command: mb --insecure --ignore-existing testminio/attestations environment: MC_HOST_testminio: http://testifytestifytestify:exampleexampleexample@minio:9000