17 lines
315 B
Bash
Executable File
17 lines
315 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
mc alias set wallmuse http://minio:9000 "$MINIO_ROOT_USER" "$MINIO_ROOT_PASSWORD"
|
|
|
|
for bucket in \
|
|
"$S3_BUCKET_ORIGINALS" \
|
|
"$S3_BUCKET_PREVIEWS" \
|
|
"$S3_BUCKET_DOWNLOADS" \
|
|
"$S3_BUCKET_REFERENCES" \
|
|
"$S3_BUCKET_TEMP"
|
|
do
|
|
mc mb --ignore-existing "wallmuse/$bucket"
|
|
done
|
|
|
|
mc ls wallmuse
|