Merge pull request 'fix(Dockerfile.rootless): revert to default path for app.ini
' (#3363) from gmask/forgejo:fix/container-app-ini-variable into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3363 Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
This commit is contained in:
commit
4da76d0e5f
4 changed files with 28 additions and 2 deletions
|
@ -100,8 +100,11 @@ ENV GITEA_CUSTOM /var/lib/gitea/custom
|
||||||
ENV GITEA_TEMP /tmp/gitea
|
ENV GITEA_TEMP /tmp/gitea
|
||||||
ENV TMPDIR /tmp/gitea
|
ENV TMPDIR /tmp/gitea
|
||||||
|
|
||||||
#TODO add to docs the ability to define the ini to load (useful to test and revert a config)
|
# Legacy config file for backwards compatibility
|
||||||
ENV GITEA_APP_INI /etc/gitea/app.ini
|
# TODO: remove on next major version release
|
||||||
|
ENV GITEA_APP_INI_LEGACY /etc/gitea/app.ini
|
||||||
|
|
||||||
|
ENV GITEA_APP_INI ${GITEA_CUSTOM}/conf/app.ini
|
||||||
ENV HOME "/var/lib/gitea/git"
|
ENV HOME "/var/lib/gitea/git"
|
||||||
VOLUME ["/var/lib/gitea", "/etc/gitea"]
|
VOLUME ["/var/lib/gitea", "/etc/gitea"]
|
||||||
WORKDIR /var/lib/gitea
|
WORKDIR /var/lib/gitea
|
||||||
|
|
|
@ -13,5 +13,10 @@ fi
|
||||||
if [ $# -gt 0 ]; then
|
if [ $# -gt 0 ]; then
|
||||||
exec "$@"
|
exec "$@"
|
||||||
else
|
else
|
||||||
|
# TODO: remove on next major version release
|
||||||
|
# Honour legacy config file if existing
|
||||||
|
if [ -f ${GITEA_APP_INI_LEGACY} ]; then
|
||||||
|
GITEA_APP_INI=${GITEA_APP_INI_LEGACY}
|
||||||
|
fi
|
||||||
exec /usr/local/bin/gitea -c ${GITEA_APP_INI} web
|
exec /usr/local/bin/gitea -c ${GITEA_APP_INI} web
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -11,6 +11,18 @@ mkdir -p ${GITEA_CUSTOM} && chmod 0700 ${GITEA_CUSTOM}
|
||||||
mkdir -p ${GITEA_TEMP} && chmod 0700 ${GITEA_TEMP}
|
mkdir -p ${GITEA_TEMP} && chmod 0700 ${GITEA_TEMP}
|
||||||
if [ ! -w ${GITEA_TEMP} ]; then echo "${GITEA_TEMP} is not writable"; exit 1; fi
|
if [ ! -w ${GITEA_TEMP} ]; then echo "${GITEA_TEMP} is not writable"; exit 1; fi
|
||||||
|
|
||||||
|
# TODO: remove on next major version release
|
||||||
|
# Honour legacy config file if existing, but inform the user
|
||||||
|
if [ -f ${GITEA_APP_INI_LEGACY} ] && [ ${GITEA_APP_INI} != ${GITEA_APP_INI_LEGACY} ]; then
|
||||||
|
GITEA_APP_INI_DEFAULT=/var/lib/gitea/custom/conf/app.ini
|
||||||
|
echo -e \
|
||||||
|
"\033[33mWARNING\033[0m: detected configuration file in deprecated default path ${GITEA_APP_INI_LEGACY}." \
|
||||||
|
"The new default is ${GITEA_APP_INI_DEFAULT}. To remove this warning, choose one of the options:\n" \
|
||||||
|
"* Move ${GITEA_APP_INI_LEGACY} to ${GITEA_APP_INI_DEFAULT} (or to \$GITEA_APP_INI if you want to override this variable)\n" \
|
||||||
|
"* Explicitly override GITEA_APP_INI=${GITEA_APP_INI_LEGACY} in the container environment"
|
||||||
|
GITEA_APP_INI=${GITEA_APP_INI_LEGACY}
|
||||||
|
fi
|
||||||
|
|
||||||
#Prepare config file
|
#Prepare config file
|
||||||
if [ ! -f ${GITEA_APP_INI} ]; then
|
if [ ! -f ${GITEA_APP_INI} ]; then
|
||||||
|
|
||||||
|
|
6
release-notes/8.0.0/fix/3363.md
Normal file
6
release-notes/8.0.0/fix/3363.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
Reverted the rootless container image path in `GITEA_APP_INI` from
|
||||||
|
`/etc/gitea/app.ini` to its default value of
|
||||||
|
`/var/lib/gitea/custom/conf/app.ini`. This allows container users to not have
|
||||||
|
to mount two separate volumes (one for the configuration data and one for the
|
||||||
|
configuration `.ini` file). A warning is issued for users with the legacy
|
||||||
|
configuration on how to update to the new path.
|
Loading…
Reference in a new issue