Skip to content

Commit

Permalink
Launch Gitea with custom UID/GID for 'git' user (fixes #2286) (#2791)
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson authored and lunny committed Nov 5, 2017
1 parent be52315 commit 9bdce5d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker/usr/bin/entrypoint
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
#!/bin/sh

## 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
Expand Down

0 comments on commit 9bdce5d

Please sign in to comment.