Shorten entrypoint file also

This commit is contained in:
Luke Murphy
2020-03-17 13:48:16 +01:00
parent 03e18ff0f8
commit 50316af321
2 changed files with 1 additions and 1 deletions

43
sbin/entrypoint.sh Executable file
View File

@ -0,0 +1,43 @@
#!/bin/bash
set -eu -o pipefail
setup_db() {
set -eu
if [ -f "/data/gitea/conf/app.ini" ]; then
echo "=====> Running database migration"
gitea migrate
fi
}
setup_root_user() {
set -eu
if [ ! -f "/data/gitea/conf/app.ini" ]; then
return
fi
user_count=$(sqlite3 /data/gitea/gitea.db "select count(*) from user;")
if [[ "${user_count}" == "0" ]]; then
echo "=====> Setting up root user for initial deployment"
if gitea admin create-user --username "$ADMIN_USER" --password "$ADMIN_PASS" --email "$ADMIN_MAIL" --admin; then
echo "=====> root user added"
else
echo "=====> Failed to add root user"
exit 1
fi
fi
}
main() {
set -eu
setup_db
setup_root_user
}
main
/usr/bin/entrypoint "$@"