動かして学ぶ!Python FastAPI開発入門を実践してみて引っかかったところをメモします。
MySQLコンテナの立ち上げ
リスト11.1を入力後
ocker-compose upすると以下エラー
[Server] Could not open the mysql.plugin table. Please perform the MySQL upgrade procedure.
mysqld: Table 'mysql.plugin' doesn't exist
以下コマンドで一旦コンテナの停止&ボリュームを削除
docker-compose down -v
その後
docker-compose up
で正常にDBが立ち上がることを確認できた。