1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-04 01:27:20 +00:00

In docker rootless use $GITEA_APP_INI if provided (#18524)

This commit is contained in:
Michael Kriese
2022-02-01 21:18:57 +01:00
committed by GitHub
parent 24d39ee6b7
commit de05d71b40

View File

@ -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