cash hack

テクノロジーでお金を稼ぐ方法を考えて、実際に稼げるのか検証しています。技術は何のためにあるのか?お金を稼ぐためにある!

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

$ mysql -u root -ppassword DB_NAME < /tmp/dump.sql

参考

kapi-travel.com