CentOS 7にDocker CEをインストール

Facebooktwittermail

CentOS 7にDocker CEをインストールしてみました。

https://www.docker.com/what-docker


Dockerプロダクトは2種類あり小規模、無償のDOCKER COMMUNITY EDITION (CE)と大規模、商用のDOCKER ENTERPRISE EDITION (EE)があります。
Select a Product
https://www.docker.com/get-docker

DOCKER COMMUNITY EDITION (CE)
Docker CE is available for free and is ideal for developers and small teams looking to get started with Docker to build container apps. Docker CE offers a monthly or quarterly release cadence for both the adventurous and practical developer.

DOCKER ENTERPRISE EDITION (EE)
Docker EE is a subscription of software, support and certification for enterprise dev and IT teams building and managing critical apps in production at scale. Docker EE provides a modern and trusted platform for all apps with integrated management and security across the app lifecycle.

Docker Pricing Plans
https://www.docker.com/pricing

Dockerの仕組みなどは多数の解説サイトがあるので、そちらを参考にしてして下さい。実は当方も今回が初めてなのです(^^;

それではCentOS 7にDocker CEをインストールしますが、下記のサイトを参考にしました。この通りに作業をするだけなんですが。

環境
・CentOS Linux release 7.3.1611 (Core)
・Kernel: 3.10.0-514.16.1.el7.x86_64

Install Docker
https://docs.docker.com/engine/installation/linux/centos/#install-docker

  1. repositoryの作成
  2. Docker CE repositoryを/etc/yum.repos.d/にダウンロードします。
    [docker-ce-stable]だけ有効になっています。

  3. Docker CEインストール
  4. Dockerサービスの開始
  5. Dockerの動作確認
  6. このコマンドでテストイメージをダウンロード、コンテナ内で実行します。コンテナが実行されると、”Hello from Docker!”が出力され終了します。

Leave a Reply