We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 042665b commit bf4ccdaCopy full SHA for bf4ccda
docker-entrypoint.sh
@@ -5,8 +5,7 @@ mysql_install_db --datadir=/var/lib/mysql --user=mysql
5
for f in /docker-entrypoint-initdb.d/*; do
6
case "$f" in
7
*.sh) echo "$0: running $f"; . "$f" ;;
8
- *.sql) echo "$0: running $f"; "${mysql[@]}" < "$f"; echo ;;
9
- *.sql.gz) echo "$0: running $f"; gunzip -c "$f" | "${mysql[@]}"; echo ;;
+ *.sql) echo "$0: running $f"; mysql < "$f"; echo ;;
10
*) echo "$0: ignoring $f" ;;
11
esac
12
echo
0 commit comments