加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
entrypoint.sh 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
set -e
set -o pipefail
# shellcheck source=assets/runtime/functions
source "${GITLAB_RUNTIME_DIR}/functions"
[[ $DEBUG == true ]] && set -x
case ${1} in
app:init|app:start|app:sanitize|app:rake)
initialize_system
configure_gitlab
configure_gitlab_shell
configure_gitlab_pages
configure_nginx
case ${1} in
app:start)
/usr/bin/supervisord -nc /etc/supervisor/supervisord.conf &
SUPERVISOR_PID=$!
migrate_database
kill -15 $SUPERVISOR_PID
if ps h -p $SUPERVISOR_PID > /dev/null ; then
wait $SUPERVISOR_PID || true
fi
rm -rf /var/run/supervisor.sock
exec /usr/bin/supervisord -nc /etc/supervisor/supervisord.conf
;;
app:init)
migrate_database
;;
app:sanitize)
sanitize_datadir
;;
app:rake)
shift 1
execute_raketask "$@"
;;
esac
;;
app:help)
echo "Available options:"
echo " app:start - Starts the gitlab server (default)"
echo " app:init - Initialize the gitlab server (e.g. create databases, compile assets), but don't start it."
echo " app:sanitize - Fix repository/builds directory permissions."
echo " app:rake <task> - Execute a rake task."
echo " app:help - Displays the help"
echo " [command] - Execute the specified command, eg. bash."
;;
*)
exec "$@"
;;
esac
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化