1 Star 0 Fork 903

mr_nobody/chemex

forked from celaraze/chemex 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-entrypoint.sh 428 Bytes
一键复制 编辑 原始数据 按行查看 历史
KagurazakaNyaa 提交于 2022-02-08 13:59 . 添加docker构建
#!/bin/bash
set -e
# Set the environment variables
source /var/www/chemex/.env
# Wait for MySQL
while ! mysqladmin ping -h"$DB_HOST" -u"$DB_USERNAME" -p"$DB_PASSWORD" -P${DB_PORT:-3306} --silent; do
echo "MariaDB container might not be ready yet. Sleeping..."
sleep 3
done
# Initialize application
[ -z "${APP_KEY}" ] && php artisan jwt:secret -f && php artisan chemex:install -n
# Run application
apache2-foreground
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mr_nobody/chemex.git
[email protected]:mr_nobody/chemex.git
mr_nobody
chemex
chemex
main

搜索帮助