From c1186748cf301d074af1372babab69326126fb24 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sat, 3 Oct 2020 13:03:47 -0700 Subject: [PATCH] --address is an arg apparently the rest are called "flags" --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 1bb8405..219eeb1 100755 --- a/start.sh +++ b/start.sh @@ -15,5 +15,5 @@ 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 echo "==> Starting minio" -exec /usr/local/bin/gosu cloudron:cloudron /app/code/minio --certs-dir /run/minio/certs --config-dir /run/minio/config --quiet --address :8000 ${CLOUDRON_MINIO_STARTUP_ARGS} +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