🐳 Docker 関連…
🤷🏻♂️❓ $ docker-compose build
で、 $ bundle install
を実行する際に発生したエラー
ターミナル
Your bundle is locked to 'Ruby Gem名', but that version could not be found in any of the sources listed in your Gemfile.
If you haven't changed sources, that means the author of 'Ruby Gem名' has removed it.
You'll need to update your bundle to a version other than 'Ruby Gem名' that hasn't been removed in order to install.
-
意訳
Gemfile.lock の中にある 'Ruby Gems' のバージョンが Ruby Gems の中に見当たりません。
インストールするためには、その 'Ruby Gems' を更新する必要があります。 -
解決方法
$ docker-compose run(exec)*** bundle update 'Ruby Gem名'
※ Ruby を動かしているコンテナに対して、エラーを起こした Ruby Gems をアップデートさせる。