LoginSignup
0
1

More than 3 years have passed since last update.

CentOS7にDockerをインストールして起動する

Posted at

前提

  • CentOS7にrootでSSHログインできること。

Dockerをインストールする

root権限で下記を実行する。

yum update -y
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install docker-ce -y

Dockerを起動する

systemctl start docker
systemctl enable docker
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