Disable auto-migrate in docker container (#5730)

pull/5758/head
techknowlogick 2019-01-17 22:31:14 -05:00 committed by GitHub
parent 7d65ddf5e1
commit ec9331510c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -30,12 +30,6 @@ 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"
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