mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-03-25 19:23:03 -04:00
This legacy support was added in version 8. We now have version 14, so this deprecated feature can be confidently removed.
See dad16cd589 for a detailed explanation.
Docs PR: https://codeberg.org/forgejo/docs/pulls/1740
Co-authored-by: Jakob Linskeseder <jakob@linskeseder.com>
Co-authored-by: 0ko <0ko@noreply.codeberg.org>
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11098
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Reviewed-by: 0ko <0ko@noreply.codeberg.org>
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: jaylinski <jaylinski@noreply.codeberg.org>
Co-committed-by: jaylinski <jaylinski@noreply.codeberg.org>
17 lines
500 B
Bash
Executable file
17 lines
500 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Protect against buggy runc in docker <20.10.6 causing problems in with Alpine >= 3.14
|
|
if [ ! -x /bin/sh ]; then
|
|
echo "Executable test for /bin/sh failed. Your Docker version is too old to run Alpine 3.14+ and Gitea. You must upgrade Docker.";
|
|
exit 1;
|
|
fi
|
|
|
|
if [ -x /usr/local/bin/docker-setup.sh ]; then
|
|
/usr/local/bin/docker-setup.sh || { echo 'docker setup failed' ; exit 1; }
|
|
fi
|
|
|
|
if [ $# -gt 0 ]; then
|
|
exec "$@"
|
|
else
|
|
exec /usr/local/bin/gitea -c ${GITEA_APP_INI} web
|
|
fi
|