mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-13 06:20:24 +00:00
This was missed in https://codeberg.org/forgejo/forgejo/pulls/11098. See https://github.com/go-gitea/gitea/pull/17846 for why this was added in the first place. Note that this is not backwards compatible. For users with a custom `app.ini`-config this won't work. But it also didn't work with the previous config. This change only aligns it with the default app.ini-path. Co-authored-by: Jakob Linskeseder <jakob@linskeseder.com> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11720 Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Co-authored-by: jaylinski <jaylinski@noreply.codeberg.org> Co-committed-by: jaylinski <jaylinski@noreply.codeberg.org>
40 lines
842 B
Bash
40 lines
842 B
Bash
#!/bin/bash
|
|
|
|
###############################################################
|
|
# This script sets defaults for gitea to run in the container #
|
|
###############################################################
|
|
|
|
# It assumes that you place this script as gitea in /usr/local/bin
|
|
#
|
|
# And place the original in /usr/lib/gitea with working files in /data/gitea
|
|
GITEA="/app/gitea/gitea"
|
|
WORK_DIR="/var/lib/gitea"
|
|
APP_INI="/var/lib/gitea/custom/conf/app.ini"
|
|
|
|
APP_INI_SET=""
|
|
for i in "$@"; do
|
|
case "$i" in
|
|
"-c")
|
|
APP_INI_SET=1
|
|
;;
|
|
"-c="*)
|
|
APP_INI_SET=1
|
|
;;
|
|
"--config")
|
|
APP_INI_SET=1
|
|
;;
|
|
"--config="*)
|
|
APP_INI_SET=1
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$APP_INI_SET" ]; then
|
|
CONF_ARG=("-c" "${GITEA_APP_INI:-$APP_INI}")
|
|
fi
|
|
|
|
|
|
# Provide docker defaults
|
|
GITEA_WORK_DIR="${GITEA_WORK_DIR:-$WORK_DIR}" exec -a "$0" "$GITEA" "${CONF_ARG[@]}" "$@"
|