Docker のインストール

以下の手順はパッケージ・マネージャに不慣れな方向けの内容です。パッケージ・マネージャに使い慣れているのであれば、 curl を使うことでインストールやトラブルシューティングの問題になるかもしれません。その場合は aptyumリポジトリを使うインストール方法 をご覧ください。

  1. インストールする Ubuntu 環境に sudo 権限を持つユーザでログインします。
  1. curl がインストールされているか確認します。
$ which curl

もしも curl が入っていなければ、マネージャの更新後にインストールします。

$ sudo apt-get update
$ sudo apt-get install curl
  1. 最新の Docker パッケージを取得します。
$ curl -fsSL https://get.docker.com/ | sh

sudo パスワードの入力を求めるシステム・プロンプトが表示します。入力すると、 Docker と、その依存関係にあるパッケージをインストールします。

注釈

社内環境が制限されたプロキシ配下の場合、 Docker リポジトリのインストール中に apt-key コマンドの実行に失敗するかもしれません。正常に動かすためには、以下のように直接キーを追加します。

$ curl -fsSL https://get.docker.com/gpg | sudo apt-key add -
  1. docker が正常にインストールされたことを確認します。
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
535020c3e8ad: Pull complete
af340544ed62: Pull complete
Digest: sha256:a68868bfe696c00866942e8f5ca39e3e31b79c1e50feaee4ce5e28df2f051d5c
Status: Downloaded newer image for hello-world:latest

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 Engine CLI client contacted the Docker Engine daemon.
 2. The Docker Engine daemon pulled the "hello-world" image from the Docker Hub.
 3. The Docker Engine daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker Engine daemon streamed that output to the Docker Engine CLI 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 Hub account:
 https://hub.docker.com

For more examples and ideas, visit:
 https://docs.docker.com/userguide/

次は何をしますか

以上で Docker のインストールが完了しました。画面は開いたままにします。次は イメージとコンテナを学ぶ に進みます。

参考

Install Docker for Windows
https://docs.docker.com/linux/step_one/