没网的环境linux安装docker

Docker在Linux环境下安装部署
提前准备一个tar包
链接:https://pan.baidu.com/s/1opg9AxkEgoiz5jZ0gI7Qjg 提取码:r9he

mkdir -p /App/Docker #创建安装目录 将文件复制到该安装目录

tar -xvf docker-18.06.1-ce.tgz #解压该Docker压缩包

cp docker/* /usr/bin #将解压出来的包复制到/usr/bin目录下

vim /etc/systemd/system/docker.service #编辑文件 将Docker注册为服务 将以下内容复制到该文件里 输入i 进行编辑 复制粘贴

[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

粘贴完毕后按左上角esc键 按:wq 写入并退出

chmod +x /etc/systemd/system/docker.service #给服务添加权限

systemctl daemon-reload #重加载服务文件
systemctl start docker #启动服务
systemctl enable docker.service #设置开机自启

安装完毕

你可能感兴趣的:(docker)