Dockerにmysql dumpをコピー同期する方法
Dockerにmysql dumpをコピー同期する方法
このコマンドを実行
$ docker exec -it CONTAINER_ID mysqldump -u root -ppassword DB_NAME < dump.sql
エラーが出るのであきらめて
the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty'
これならうまくいった
$ docker cp dump.sql CONTAINER_ID:/tmp/dump.sql
$ docker exec -it CONTAINER_ID bash