-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update compose with secondary store setup && minor refactors
- Loading branch information
1 parent
0e7dcaf
commit 9aaabe3
Showing
6 changed files
with
92 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
|
||
# Wait 2 seconds to ensure minio is finished bootstrapping | ||
# TODO: Update this to do event based polling on minio server directly vs semi-arbitrary timeout | ||
sleep 2s | ||
|
||
# Configure MinIO client (mc) | ||
echo "Configuring MinIO client..." | ||
mc alias set local http://minio:9000 minioadmin minioadmin | ||
|
||
# Ensure the bucket exists | ||
echo "Creating bucket: eigenda-proxy-test..." | ||
mc mb local/eigenda-proxy-test || echo "Bucket already exists." | ||
|
||
echo "Bucket setup complete." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters