mirror of
https://github.com/jkocon/hassio-addons.git
synced 2026-02-24 05:14:41 +01:00
10 lines
237 B
Python
10 lines
237 B
Python
|
|
#!/usr/bin/with-contenv bashio
|
|
ACCESS_KEY=$(bashio::config 'access_key')
|
|
SECRET_KEY=$(bashio::config 'secret_key')
|
|
|
|
export MINIO_ROOT_USER=$ACCESS_KEY
|
|
export MINIO_ROOT_PASSWORD=$SECRET_KEY
|
|
|
|
exec minio server /data --console-address ":
|