1 Star 0 Fork 17

ZZZ/xmysql

forked from user_499098/xmysql 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-entrypoint.sh 342 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
# https://stackoverflow.com/questions/25503412/how-do-i-know-when-my-docker-mysql-container-is-up-and-mysql-is-ready-for-taking
set -e
until nc -z -v -w30 $DATABASE_HOST 3306
do
echo "Waiting for database connection..."
# wait for 5 seconds before check again
sleep 5
done
echo "Mysql is up - executing command"
exec "$@"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/justzzz/xmysql.git
[email protected]:justzzz/xmysql.git
justzzz
xmysql
xmysql
master

搜索帮助