0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

dockerで一回コンテナから出てから作業して、また入り直す。

Posted at

コンテナから出て作業するのってどうすれば?

と思ったので書こうと思いました。結論としては、

コンテナ内から出る

まず、現在コンテナ内にいる場合は、exit コマンドを実行してシェルを終了し、ホストマシンに戻ります。

 exit

/ここで諸々作業する

再度コンテナに入る
その後、以下のコマンドを使って、元の作業していたコンテナに再度入ります。

docker exec -it コンテナ名 /bin/sh

流れ

  • exit でコンテナ内のシェルから抜ける。
  • コンテナが実行中であれば、docker exec -it コンテナ名 /bin/sh で再度シェルに接続できる。
    これで問題なくコンテナ内に再度入れます!
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?