mouseaniridiaintegrated / mount-blobfuse.sh
Arts-of-coding's picture
Update mount-blobfuse.sh
a31dcb4 verified
raw
history blame
No virus
350 Bytes
# mount our blobstore
test ${AZURE_MOUNT_POINT}
rm -rf ${AZURE_MOUNT_POINT}
mkdir ${AZURE_MOUNT_POINT}
blobfuse ${AZURE_MOUNT_POINT} --use-https=true --tmp-path=/tmp/blobfuse/${AZURE_STORAGE_ACCOUNT} --container-name=${AZURE_STORAGE_ACCOUNT_CONTAINER} -o allow_other
# run the command passed to us
exec "uvicorn main:app --host 0.0.0.0 --port 5000"