一.在線安裝
1.安裝依賴
yum install -y yum-utils device-mapper-persistent-data lvm2
2.添加軟件源
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
3.安裝docker-ce
yum -y install docker-ce
4.啟動服務
systemctl start docker
5.查看docker版本信息
docker version
二.離線安裝
1.登錄鏡像網站
https://download.docker.com/linux/static/stable/x86_64/
2.解壓
tar -xvf docker-18.06.1-ce.tgz
3.把解壓出來的文件移動到/usr/bin 目錄下
cp docker/* /usr/bin/
4.將docker注冊為service
vim /etc/systemd/system/docker.service
[Unit] Description=Docker Application Container Engine Documentation=https://docs.docker.com
After=network-online.target firewalld.service Wants=network-online.target [Service] Type=notify # the default is not to use systemd for cgroups because the delegate issues still # exists and systemd currently does not support the cgroup feature set required # for containers run by docker ExecStart=/usr/bin/dockerd ExecReload=/bin/kill -s HUP $MAINPID # Having non-zero Limit*s causes performance problems due to accounting overhead # in the kernel. We recommend using cgroups to do container-local accounting. LimitNOFILE=infinity LimitNPROC=infinity LimitCORE=infinity # Uncomment TasksMax if your systemd version supports it. # Only systemd 226 and above support this version. #TasksMax=infinity TimeoutStartSec=0 # set delegate yes so that systemd does not reset the cgroups of docker containers Delegate=yes # kill only the docker process, not all processes in the cgroup KillMode=process # restart the docker process if it exits prematurely Restart=on-failure StartLimitBurst=3 StartLimitInterval=60s [Install] WantedBy=multi-user.target
5.啟動
chmod +x /etc/systemd/system/docker.service systemctl daemon-reload systemctl start docker systemctl enable docker.service 原文:https://blog.csdn.net/ywd1992/article/details/82897394
6.安裝好的docker沒有補全,從其他服務器拷貝一份docker
ll /usr/share/bash-completion/completions/docker
7.將docker文件放置相同路徑下,並生效
source /usr/share/bash-completion/completions/docker