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 個人的まとめ

Last updated at Posted at 2020-03-27

docker run [OPTIONS] IMAGE [COMMANDS]
ドッカーを走らせる

docker run -it -d IMAGE
-it:入力&ターミナル表示
-d:バックグラウンド

docker pull [image]
imageをダウンロード

docker ps
動いているcontainerを表示

docker ps -a
全てのcontainerを表示

docker stop [ID or tag]
containerを止める

docker rm [container]
containerを削除

docker rmi [ID or tag]
imageを削除

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?