Skip to content

Commit

Permalink
migrate database if app.ini found (#5290)
Browse files Browse the repository at this point in the history
* migrate database if app.ini found

* replacing hard-coded user id by env variable

* Update per @zeripath's feedback
  • Loading branch information
pciavald authored and techknowlogick committed Jan 5, 2019
1 parent cbc14df commit 0236856
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docker/usr/bin/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ if [ "${USER}" != "git" ]; then
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
Expand All @@ -22,6 +30,13 @@ for FOLDER in /data/gitea/conf /data/gitea/log /data/git /data/ssh; do
mkdir -p ${FOLDER}
done

if [ -f /data/gitea/conf/app.ini ]; then
echo "Found app.ini config file, migrating database"
chmod 644 /data/gitea/conf/app.ini
chown -R ${USER_UID}:${USER_GID} /data/git /data/gitea
su - ${USER} -c gitea migrate -c /data/gitea/conf/app.ini
fi

if [ $# -gt 0 ]; then
exec "$@"
else
Expand Down

0 comments on commit 0236856

Please sign in to comment.