107
88

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 5 years have passed since last update.

dockerの起動、停止、再起動

Posted at

docker停止

 dockerを普段利用していますが、いつもターミナルを終える時になんとなく、以下の作業を行なっていました。

docker-compose down

 しかし、最近コンテナ内で作業している時に、インストールしたはずのgemやEDITORが無いことに気づきました。
色々と調べてみると、どうやら上記のコマンドを打つ度にコンテナが消滅しているようでした。
 

 ですので、dockerの停止は、

docker stop コンテナ名

で、OKです。

#dockerの起動
 それでは、一度停止したdockerの起動なのですが、以下のコマンドで再び立ち上がります。

docker start コンテナ名

#dockerの再起動
 よく、gemをインストールしたあとなどに再起動が必要になる事があると思います。
以下のコマンドで再起動ができます。

docker restart コンテナ名

#dockerの状態確認
 dockerのコンテナの起動状態を見る場合は、

docker ps

 で、OKです。

ぜひ、試してみてくださいね。

参考にした記事
@koooheiさん
[@okame_qlitaさん]
(https://qiita.com/okame_qiita/items/201ebc85b3d317364b4d)

107
88
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
107
88

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?