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 1 year has passed since last update.

【Docker】docker-compose up でうまくコンテナが起動状態にならない時の対処法

Posted at

この記事は2023年6月に作成した記事です。

はじめに

書いた人
最近Dockerについて勉強を始た初心者です。

環境
macOS Monterey == 12.5
Docker == 23.0.5

問題の内容

docker-compose up を実行しても ~~ exited with code 0と出力されて起動状態が継続されない...

解決方法

docker-composeファイルに以下の1文を記述することで解決できました!

docker-compose.yml
    tty:true

ttyについて調べてみると、「対話的なセッションやコマンドラインの操作を許可する」といった説明がされていました。
簡単にいうと、「起動状態を維持して、コマンドラインから色々できるよ」といった感じだと思います。

私も初心者なので、間違いが含まれるかもしれませんが、その際いはコメントなどで指摘していただけると幸いです!

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?