This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
git.autonomic.zone/sbin/docker-entrypoint.sh

9 lines
142 B
Bash
Raw Normal View History

2020-03-15 11:41:24 +00:00
#!/bin/sh
if [ -f "/data/gitea/conf/app.ini" ]; then
echo "=====> Running database migration"
gitea migrate
fi
/usr/bin/entrypoint "$@"