aboutsummaryrefslogtreecommitdiffstats
path: root/docker/root/usr
diff options
context:
space:
mode:
authorJakob Ackermann <das7pad@outlook.com>2019-05-06 04:49:32 +0200
committertechknowlogick <hello@techknowlogick.com>2019-05-05 22:49:32 -0400
commitdab38c375df5c4719d35f1be29278d254d68390f (patch)
treeccb2cd4e71f5e4b622c00be382153406b097893d /docker/root/usr
parent0081cd8dfe34bcd9182ccebb406000c17dcb8025 (diff)
downloadgitea-dab38c375df5c4719d35f1be29278d254d68390f.tar.gz
gitea-dab38c375df5c4719d35f1be29278d254d68390f.zip
[docker] drop the docker Makefile from the image (#6507)
Diffstat (limited to 'docker/root/usr')
-rwxr-xr-xdocker/root/usr/bin/entrypoint37
1 files changed, 37 insertions, 0 deletions
diff --git a/docker/root/usr/bin/entrypoint b/docker/root/usr/bin/entrypoint
new file mode 100755
index 0000000000..d8e68b9404
--- /dev/null
+++ b/docker/root/usr/bin/entrypoint
@@ -0,0 +1,37 @@
+#!/bin/sh
+
+if [ "${USER}" != "git" ]; then
+ # rename user
+ sed -i -e "s/^git\:/${USER}\:/g" /etc/passwd
+ # switch sshd config to different user
+ sed -i -e "s/AllowUsers git$/AllowUsers ${USER}/g" /etc/ssh/sshd_config
+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