mirror of https://github.com/go-gitea/gitea.git
Currently when calling `gitea` from any shell in rootless docker image it won't respect my `$GITEA_APP_INI`. Which this change it will use that value when defined instead of the default value. - https://discourse.gitea.io/t/gitea-1-16-0-unable-to-find-configuration-file/4543 - https://gitea.com/gitea/helm-chart/issues/287 Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
parent
e4919e414f
commit
73b68015de
|
@ -32,7 +32,7 @@ for i in "$@"; do
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ -z "$APP_INI_SET" ]; then
|
if [ -z "$APP_INI_SET" ]; then
|
||||||
CONF_ARG="-c \"$APP_INI\""
|
CONF_ARG="-c \"${GITEA_APP_INI:-$APP_INI}\""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue