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?

More than 3 years have passed since last update.

さくっとDockerでLinux OSを試す(Ubuntu, Fedoraなど)

Posted at

前提条件

Dockerインストール済み。
ホストOSはMacです。

さくっと試す

Docker image ubuntuなどで検索。

以下のようにdocker hubのサイトが出てくるのでクリック。

スクリーンショット 2021-09-28 19.38.19.png

こだわりがなければ画面右のコマンドをコピペして実行。
特定バージョンが欲しければTagsから欲しいもの探してコピペ。

スクリーンショット 2021-09-28 19.39.30.png

# docker pull ubuntu
Using default tag: latest
latest: Pulling from library/ubuntu
Digest: sha256:xxx
Status: Image is up to date for ubuntu:latest
docker.io/library/ubuntu:latest

# docker images
REPOSITORY TAG     IMAGE ID       CREATED     SIZE
ubuntu     latest  fb52e22af1b0  4 weeks ago  72.8MB

# docker run -it ubuntu:latest
root@1ce9df42add1:/#

インストールされていないコマンドが多いので、好きなコマンドをインストールする

root@1ce9df42add1:/# apt update
root@1ce9df42add1:/# apt install bc
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?