2017-01-24 06:06:51 +00:00
#!/bin/bash
set -eu
2020-01-16 22:46:41 +00:00
mkdir -p /app/data/data /run/minio/config /run/minio/certs
2017-01-24 06:06:51 +00:00
2020-09-11 19:34:40 +00:00
# minio is used for backups at times and has a large number of files. optimize by checking if files
# are actually in correct chown state
2020-01-16 22:46:41 +00:00
echo "==> Changing ownership"
2020-09-11 19:34:40 +00:00
[ [ $( stat --format '%U' /app/data/data) != "cloudron" ] ] && chown -R cloudron:cloudron /app/data
2019-01-22 23:29:43 +00:00
2020-10-03 20:13:26 +00:00
[ [ ! -f /app/data/env.sh ] ] && echo -e "# Add custom minio configuration to this file. Restart the app for changes to take effect.\n\nexport CLOUDRON_MINIO_STARTUP_ARGS='server /app/data/data'" > /app/data/env.sh
2020-10-03 20:03:47 +00:00
source /app/data/env.sh
2020-01-16 22:46:41 +00:00
# the --config-dir is deprecated and not used. but without it, minio will try to create $HOME/.minio :/ same for --certs-dir
echo "==> Starting minio"
2020-10-03 20:03:47 +00:00
exec /usr/local/bin/gosu cloudron:cloudron /app/code/minio --certs-dir /run/minio/certs --config-dir /run/minio/config --quiet ${ CLOUDRON_MINIO_STARTUP_ARGS } --address :8000
2017-01-24 06:06:51 +00:00