mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
4563148a61
* Upgrade alpine to 3.15 * Add executability test to entrypoint for too old dockers Signed-off-by: Andrew Thornton <art27@cantab.net> * Update docker/rootless/usr/local/bin/docker-entrypoint.sh Co-authored-by: zeripath <art27@cantab.net>
42 lines
1.1 KiB
Bash
Executable File
42 lines
1.1 KiB
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 [ "${USER}" != "git" ]; then
|
|
# rename user
|
|
sed -i -e "s/^git\:/${USER}\:/g" /etc/passwd
|
|
fi
|
|
|
|
if [ -z "${USER_GID}" ]; then
|
|
USER_GID="`id -g ${USER}`"
|
|
fi
|
|
|
|
if [ -z "${USER_UID}" ]; then
|
|
USER_UID="`id -u ${USER}`"
|
|
fi
|
|
|
|
## Change GID for USER?
|
|
if [ -n "${USER_GID}" ] && [ "${USER_GID}" != "`id -g ${USER}`" ]; then
|
|
sed -i -e "s/^${USER}:\([^:]*\):[0-9]*/${USER}:\1:${USER_GID}/" /etc/group
|
|
sed -i -e "s/^${USER}:\([^:]*\):\([0-9]*\):[0-9]*/${USER}:\1:\2:${USER_GID}/" /etc/passwd
|
|
fi
|
|
|
|
## Change UID for USER?
|
|
if [ -n "${USER_UID}" ] && [ "${USER_UID}" != "`id -u ${USER}`" ]; then
|
|
sed -i -e "s/^${USER}:\([^:]*\):[0-9]*:\([0-9]*\)/${USER}:\1:${USER_UID}:\2/" /etc/passwd
|
|
fi
|
|
|
|
for FOLDER in /data/gitea/conf /data/gitea/log /data/git /data/ssh; do
|
|
mkdir -p ${FOLDER}
|
|
done
|
|
|
|
if [ $# -gt 0 ]; then
|
|
exec "$@"
|
|
else
|
|
exec /bin/s6-svscan /etc/s6
|
|
fi
|