LoginSignup
0
2

More than 5 years have passed since last update.

Docker Community Edition のインストール

Last updated at Posted at 2018-08-12

インストールメモ。とは言ってもそのまま手順をなぞっただけだけど。

手順

  1. 依存ライブラリをインストールする

    # yum install -y yum-utils \
     device-mapper-persistent-data \
     lvm2
    
  2. Docker Community Edition のリポジトリを登録する

    # yum-config-manager \
     --add-repo \
     https://download.docker.com/linux/centos/docker-ce.repo
    
  3. Docker をインストールする

    # yum install docker-ce
    
  4. Docker を起動する

    # systemctl start docker
    

参考

0
2
2

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
2