mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-05-04 20:47:48 -05:00
16 lines
344 B
Bash
16 lines
344 B
Bash
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
buckets="pn-cdn pn-boss super-mario-maker"
|
|
|
|
# Create buckets and allow public access
|
|
for bucket in $buckets; do
|
|
if ! mc ls "minio/$bucket" >/dev/null 2>&1; then
|
|
mc mb "minio/$bucket"
|
|
mc anonymous set download "minio/$bucket"
|
|
else
|
|
echo "Bucket $bucket already exists. Skipping..."
|
|
fi
|
|
done
|