此文包括两部分内容
1.Linux安装Docker
2.docker 连接harbor客户端
一、Linux安装Docker
1、安装环境
1.1 此处在Centos7进行安装,可以使用以下命令查看CentOS版本,如果出现未找到这个命令的话,需要去安装redhat-lsb-->1.2 解决方法
lsb_release -a

图片.png
1.2 解决方法:输入命令:yum install -y redhat-lsb 输入这个等待安装成功就可以了
yum install -y redhat-lsb
1.3 在 CentOS 7安装docker要求系统为64位、系统内核版本为 3.10 以上,可以使用以下命令查看
uname -r

图片.png
2、用yum源安装
2.1 查看是否已安装docker列表
yum list installed | grep docker
2.2 安装docker
yum -y install docker
-y表示不询问安装,直到安装成功,安装完后再次查看安装列表
2.3 启动docker
systemctl start docker
2.4 查看docker服务状态
systemctl status docker

图片.png
以上说明docker安装成功
二、docker 连接harbor客户端
1.查找docker.service 所在的位置
find / -name docker.service -type f

图片.png
如果有此文件-->2;如果没有则新建一个docker.server,内容如下:
此处的--insecure-registry=127.0.0.1(此处改成你私服ip)设置是针对有搭建了自己私服Harbor时允许docker进行不安全的访问,否则访问将会被拒绝。
[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
2.修改配置文件, 增加 --insecure-registry=127.0.0.1 选项

图片.png

图片.png
3.重新启动服务
systemctl daemon-reload
systemctl restart docker
4.查看服务,已经包含了 --insecure-registry=127.0.0.1 参数
ps aux|grep docker

图片.png
5.进行登录 ,可以成功登录

图片.png
