mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-03 07:05:20 +00:00
26 lines
844 B
Bash
26 lines
844 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
SCRIPT_DIR=$(dirname "$(realpath "$0")")
|
||
|
|
||
|
secret_key=minioadmin
|
||
|
access_key=minioadmin
|
||
|
region=us-east-2
|
||
|
endpoint_url=http://localhost:9000
|
||
|
bucket_name=utic-dev-tech-fixtures
|
||
|
|
||
|
function upload(){
|
||
|
echo "Uploading test content to new bucket in minio"
|
||
|
AWS_REGION=$region AWS_SECRET_ACCESS_KEY=$secret_key AWS_ACCESS_KEY_ID=$access_key \
|
||
|
aws --output json --endpoint-url $endpoint_url s3api create-bucket --bucket $bucket_name | jq
|
||
|
AWS_REGION=$region AWS_SECRET_ACCESS_KEY=$secret_key AWS_ACCESS_KEY_ID=$access_key \
|
||
|
aws --endpoint-url $endpoint_url s3 cp "$SCRIPT_DIR"/wiki_movie_plots_small.csv s3://$bucket_name/
|
||
|
}
|
||
|
|
||
|
# Create Minio single server
|
||
|
docker compose version
|
||
|
docker compose -f "$SCRIPT_DIR"/docker-compose.yaml up --wait
|
||
|
docker compose -f "$SCRIPT_DIR"/docker-compose.yaml ps
|
||
|
|
||
|
echo "Cluster is live."
|
||
|
upload
|