🐈

[環境構築]Ubuntu22.04にDockerをインストール

2023/11/18に公開

この度、勉強会をすることになって開発環境を一斉に構築する必要にせまられ、Dockerで楽できんかな~と考えた。

前提

ubuntuマシンにインストールするのが前提です。
※VirtualBoxにUbuntu22.04をインストールするのはココを参考に。

手順

  1. dockerインストール
  2. dockerでHelloWorld実行
  3. 後片付け

dockerインストール

パッケージリストを更新 && パッケージの最新バージョンをインストール
$ sudo apt update
$ sudo apt upgrade -y
dockerに必要なライブラリのインストール
$ sudo apt install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common
PGPキーの追加
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Dockerリポジトリを追加
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
リポジトリのパッケージリストを更新
$ sudo apt update
dockerインストール
$ sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
docker権限を追加
$ sudo usermod -aG docker $USER

※↑これは再起動せんと反映されんかった...

dockerバージョン確認
$ docker --version

hello-world実行

dockerで、hello-world実行
$ docker run hello-world
実行結果
Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

できた!!

dockerコンテナ確認
$ docker ps -a
確認結果
CONTAINER ID   IMAGE         COMMAND    CREATED         STATUS                     PORTS     NAMES
b49a6178e819   hello-world   "/hello"   8 seconds ago   Exited (0) 6 seconds ago             dazzling_hellman
dockerイメージ確認
$ docker images
確認結果
REPOSITORY    TAG       IMAGE ID       CREATED        SIZE
hello-world   latest    9c7a54a9a43c   6 months ago   13.3kB

後片付け

dockerコンテナ削除
$ docker rm b49a6178e819
dockerイメージ削除
$ docker rmi hello-world
削除を確認
$ docker ps -a
CONTAINER ID   IMAGE     COMMAND   CREATED   STATUS    PORTS     NAMES
$ docker images
REPOSITORY   TAG       IMAGE ID   CREATED   SIZE

Discussion