docker環境で
rails
1docker-compose run web bundle install --without development test
を実行しましたのですが、その後通常に
docker-compose run web bundle install
をしてもproduction環境のgemしかインストールされず、毎回
Gems in the groups development and test were not installed.
が表示されます。
これをもとの状態に戻したいです。
通常コンテナは作り直す事が前提なので、
あまり再インストールという事はしません。
下記のいずれかが参考になるかもしれません。
.bundle/configはどうなってますか?
bundler install --clean
https://bundler.io/v2.2/man/bundle-remove.1.html
https://bundler.io/v2.2/man/bundle-clean.1.html
場合によっては、
gem uninstall
gem cleanup
も必要になるかもしれません。
volumeを削除してからもう一度docker-compose run web bundle installコマンドを実行することで解決することができました。ありがとうございました。
回答1件
あなたの回答
tips
プレビュー