1 Star 2 Fork 1

bgoonz / sqlpad

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-entrypoint 413 Bytes
一键复制 编辑 原始数据 按行查看 历史
JstDust 提交于 2021-06-28 04:35 . odbc support in docker container (#1031)
#!/bin/bash
set -e
# This iterates any sh file in the directory and executes them before our server starts
# Note: we intentionally source the files, allowing scripts to set vars that override default behavior.
if [ -d "/etc/docker-entrypoint.d" ]; then
find /etc/docker-entrypoint.d -name '*.sh' -print0 |
while IFS= read -r -d '' line; do
. "$line"
done
fi
exec node /usr/app/server.js $@
1
https://gitee.com/bgoonz/sqlpad.git
git@gitee.com:bgoonz/sqlpad.git
bgoonz
sqlpad
sqlpad
master

搜索帮助