From 6ed7a3cf3ee6a7045be00957b90bd26efd8f9d26 Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Tue, 17 Jun 2025 14:26:16 -0500 Subject: [PATCH] Create buckets for organization avatars Ref https://github.com/readthedocs/readthedocs.org/pull/12254/ --- dockerfiles/entrypoints/createbuckets.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dockerfiles/entrypoints/createbuckets.sh b/dockerfiles/entrypoints/createbuckets.sh index 48fd642..51b1c83 100755 --- a/dockerfiles/entrypoints/createbuckets.sh +++ b/dockerfiles/entrypoints/createbuckets.sh @@ -13,5 +13,7 @@ test "${INIT}" || exit 0 /usr/bin/mc policy set public myminio/build-tools; /usr/bin/mc mb myminio/builds; /usr/bin/mc policy set public myminio/builds; +/usr/bin/mc mb myminio/usercontent; +/usr/bin/mc policy set public myminio/usercontent; exit 0;