diff options
author | Pierre-Alexis Ciavaldini <pierre-alexis@ciavaldini.fr> | 2019-01-05 19:16:38 +0100 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2019-01-05 13:16:38 -0500 |
commit | 0236856924160c4497c1621fa3f3e644a07bd5b4 (patch) | |
tree | f991bd188bed9b2a6aa231ea668860b67c6d410c /docker/usr | |
parent | cbc14df16a3574398bfde2c50e77a5cb8c9bbbe9 (diff) | |
download | gitea-0236856924160c4497c1621fa3f3e644a07bd5b4.tar.gz gitea-0236856924160c4497c1621fa3f3e644a07bd5b4.zip |
migrate database if app.ini found (#5290)
* migrate database if app.ini found
* replacing hard-coded user id by env variable
* Update per @zeripath's feedback
Diffstat (limited to 'docker/usr')
-rwxr-xr-x | docker/usr/bin/entrypoint | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docker/usr/bin/entrypoint b/docker/usr/bin/entrypoint index e2875b443a..8f65b5ef74 100755 --- a/docker/usr/bin/entrypoint +++ b/docker/usr/bin/entrypoint @@ -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 @@ -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 |