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.

【Docker】Reactがすぐにexitしてしまう時の対処方法 no.32

Posted at

パンプキン カフェ (10).png

こんにちは。まゆみです。

DockerでReact環境を作ろうと、

docker run <ImageID>

したら、すぐにContainerがExitになってしまう。

今回の記事では、ContainerのSTATUSがExitになってしまう時の対処方法を書いていこうと思います

Exitしてしまう時の対処方法

Create React Appのアップデートにより、今までは普通に『docker run』できていたのが、できなくなってしまったようです。

解決方法は『-it』を付けてContainerをrun すればいいようです。

Dockerfileの場合

docker run -it <ImageID>

docker-composeの場合

stdin_open: true

docker-composeファイルに変更を加えた時は必ず

docker-compose down && docker-compose up --build

と、down でContainerを停止・削除してから--build オプションを付けて、Image をrebuildしましょう

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?