feat: update lobe-chat-data 1.127.4

This commit is contained in:
arch3rPro
2025-09-12 05:31:55 +08:00
parent 70f3607cbe
commit 9c95a1f0ba
7 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/sh
minio server /etc/minio/data --address ":${MINIO_PORT}" --console-address ":9001" &
MINIO_PID=$!
while ! curl -s http://localhost:${MINIO_PORT}/minio/health/live; do
echo 'Waiting for MinIO to start...'
sleep 1
done
sleep 5
mc alias set myminio http://localhost:${MINIO_PORT} ${MINIO_ROOT_USER} ${MINIO_ROOT_PASSWORD}
echo "Creating bucket ${MINIO_LOBE_BUCKET}"
mc mb myminio/${MINIO_LOBE_BUCKET}
wait $MINIO_PID