0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Rails・Docker】gemを追加したらブラウザ(localhost:3000)でアクセスが拒否されてしまう場合の対処方法

Posted at

#環境
macOS 10.15.5
Rails 5.2.4.2
Docker 19.03.12

#gemを追加したらブラウザ(localhost:3000)でアクセスが拒否されてしまう場合の対処方法

Dockerの環境でページネーション機能を追加しようとした際に下記のgemを追加してその後bundle installを実行しサーバーを再起動...

gemfile
gem 'kaminari'
terminal
$ bundle install
$ docker-compose restart

しかしブラウザではアクセスが拒否されてしまいました...

スクリーンショット 2020-11-06 22.40.07.png

#Dockerの動作確認
まずはdocker-compose upを実行するとDockerが落ちてしまっていることが確認できましたので下記の操作で再度ブラウザと接続できるかを試みます。

terminal
$ docker-compose build

そして再度docker-compose upを実行します。

terminal
$ docker-compose up

するとgemを追加した状態でもブラウザへの接続が成功できるかと思います!Dockerの環境でgemの追加の際に落ちてしまった場合に試してください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?