mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-04-30 04:16:47 -05:00
15 lines
280 B
Bash
15 lines
280 B
Bash
#! /bin/sh
|
|
|
|
set -eu
|
|
|
|
mc alias set minio http://minio:9000 "$MINIO_ROOT_USER" "$MINIO_ROOT_PASSWORD"
|
|
mc admin info minio
|
|
|
|
buckets="pn-cdn"
|
|
|
|
# Create buckets allow public access
|
|
for bucket in $buckets; do
|
|
mc mb "minio/$bucket"
|
|
mc anonymous set download "minio/$bucket"
|
|
done
|