欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux部署docker 离线安装包部署方式

程序员文章站 2022-05-27 19:21:31
...

linux安装docker

首先,linux安装docker的环境,需要centos的版本最好达到7及以上(个人见解)
首先通过命令查看操作系统版本:

lsb_release -a

在 CentOS 7安装docker要求系统为64位、系统内核版本为 3.10 以上

通过该命令查看系统详细信息
uname -r

离线安装

一般情况下,我是使用离线安装模式,因为到时实际生产环境中,使用的网络可能是局域网,并不能直接访问互联网链接
下载地址:https://download.docker.com/linux/static/stable/x86_64/

解压命令(这里可以下载你实际使用到的版本)
tar -zxvf docker-18.06.3-ce.tgz
解压之后的文件复制到 /usr/bin/ 目录下
cp docker/* /usr/bin/

在/etc/systemd/system/目录下新增docker.service文件

通过 vi docker.service 进入文件编辑模式,粘贴如下代码。
注意:其中的ExecStart=/usr/bin/dockerd --selinux-enabled=false --insecure-registry=127.0.0.1 。将127.0.0.1设置成你的私服ip地址。对之后搭建harbor行方便

[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 --selinux-enabled=false --insecure-registry=127.0.0.1
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

启动docker

#给docker.service文件添加执行权限
chmod +x /etc/systemd/system/docker.service
#重新加载配置文件(每次有修改docker.service文件时都要重新加载下)
systemctl daemon-reload   
#启动docker
systemctl start docker
设置开机启动
#systemctl enable docker.service
#查看docker服务状态
systemctl status docker