#!/bin/bash set -eu mkdir -p /app/data/data /run/minio/config /run/minio/certs # 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 echo "==> Changing ownership" [[ $(stat --format '%U' /app/data/data) != "cloudron" ]] && chown -R cloudron:cloudron /app/data # https://docs.min.io/minio/baremetal/reference/minio-server/minio-server.html#envvar.MINIO_SERVER_URL export MINIO_SERVER_URL="https://${API_SERVER_DOMAIN}" export MINIO_BROWSER_REDIRECT_URL="https://${CLOUDRON_APP_DOMAIN}" if [[ ! -f /app/data/env.sh ]]; then 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 fi if [[ ! -d /app/data/mc_config ]]; then echo "==> Set /app/data/mc default config dir" mkdir -p /app/data/mc_config /app/code/mc --config-dir /app/data/mc_config &> /dev/null || true fi source /app/data/env.sh # the --config-dir is deprecated and not used. but without it, minio will try to create $HOME/.minio :/ same for --certs-dir # MinIO Console is an embedded web-based object browser built into MinIO Server echo "==> Starting minio" 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 :9000 --console-address :8000