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?

Dockerで使用したコマンド

Posted at

概要

自分がDockerで使用したコマンドをまとめました。

イメージ一覧

ホスト上にあるイメージ一覧の取得

$ sudo docker images
REPOSITORY    TAG       IMAGE ID       CREATED         SIZE
ubuntu        latest    61b2756d6fa9   3 weeks ago     78.1MB
hello-world   latest    d2c94e258dcb   17 months ago   13.3kB

イメージの起動

$ sudo docker run -t -i ubuntu /bin/bash
root@4f6aa85e5f27:/# 

イメージの取得

サンプルとして以下のページのイメージの取得を行いました。

sudo docker pull node

イメージ一覧を表示して、取得できたことを確認しました。

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?