1.Docker是什么

  • Docker官网:Docker: Accelerated Container Application Development
  • 介绍:Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何流行的 Linux 机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口。

2.Docker安装

1. 查看系统的内核版本

1
uname -r
1
4.19.188-10.el7.ucloud.x86_64
  • x86_64代表64位操作系统(如果是32位无法安装)

2. yum 更新到最新版本

1
sudo yum update
  • 出现 Complete 就代表完成了

注意:可能会更新失败,那就操作以下指令

1
2
3
4
5
6
7
8
9
10
11
12
## 建议备份当前的 yum 源配置,以防万一需要恢复
sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

## 从阿里云下载 CentOS 7 的 yum 源配置文件并替换现有的配置
sudo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

## 清理旧的缓存并生成新的缓存
sudo yum clean all
sudo yum makecache

## 再次更新
sudo yum update

3. 安装Docker所需的依赖包

1
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
  • 出现 Complete 就代表完成了

4. 设置Docker的yum的源

1
2
3
4
5
6
7
# 添加阿里云的 Docker 仓库
sudo yum-config-manager \
--add-repo \
https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

# 替换仓库中的默认源为阿里云源
sudo sed -i 's/download.docker.com/mirrors.aliyun.com\/docker-ce/g' /etc/yum.repos.d/docker-ce.repo

5. 查看仓库所有Docker版本

1
yum list docker-ce --showduplicates | sort -r

6. 安装Docker

如果你想要安装某个特定版本的 Docker,可以使用以下命令:

1
sudo yum install docker-ce-<VERSION_STRING>

例如,安装 20.10.17 版本:

1
sudo yum install docker-ce-20.10.17-3.el7

7. 安装Docker-Compose

7.1.正常安装

1
2
3
4
#注意版本可以根据要求修改
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

sudo chmod +x /usr/local/bin/docker-compose

7.2.离线安装

1
2
3
4
5
6
7
# 下载后上传到指定位置
# 重命名
mv docker-compose-linux-x86_64 docker-compose
# 加入执行权限
sudo chmod +x /usr/local/bin/docker-compose
# 查看docker-compose版本
docker-compose -v

8. 启动Docker并添加开机自启动

1
2
# 启动Docker
sudo systemctl start docker
1
2
# 检查Docker服务状态
sudo systemctl status docker
1
2
# 启用Docker开机自启动
sudo systemctl enable docker

9. 查看Docker版本

1
docker --version

10. 卸载Docker

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 停止所有运行的容器
sudo docker stop $(docker ps -aq)

# 删除所有容器
sudo docker rm $(docker ps -aq)

# 删除所有镜像
sudo docker rmi $(docker images -q)

# 停止 Docker 服务
sudo systemctl stop docker

# 卸载 Docker 及其相关包
sudo yum remove docker-ce docker-ce-cli containerd.io

# 删除 Docker 数据和配置文件
sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd

# 删除 Docker 的仓库配置文件
sudo rm -f /etc/yum.repos.d/docker-ce.repo

# 清理残留文件(可选)
sudo rm -f /usr/local/bin/docker-compose
sudo rm -f /usr/bin/docker-compose

11.Docker常用命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Docker帮助
docker --help
# 查看Docker版本
docker --version
# 搜索镜像文件,如:docker search mysql
docker search <image>
# 拉取镜像文件,如:docker pull mysql
docker pull <image>
# 查看已经拉取下来的所以镜像文件
docker images
# 删除指定镜像文件
docker rmi <image>
# 发布指定镜像文件
docker run --name <name> -p 80:8080 -d <image>
# 查看正在运行的所有镜像
docker ps
# 查看所有发布的镜像
docker ps -a
# 删除执行已发布的镜像
docker rm <image>

12.国内镜像源

13. 远程连接(常见IDEA连接)

编辑docker.server文件

1
vi /usr/lib/systemd/system/docker.service

运行代码后内容如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network-online.target docker.socket firewalld.service containerd.service time-set.target
Wants=network-online.target containerd.service
Requires=docker.socket

[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 -H fd:// --containerd=/run/containerd/containerd.sock
ExecReload=/bin/kill -s HUP $MAINPID
TimeoutStartSec=0
RestartSec=2
Restart=always

# Note that StartLimit* options were moved from "Service" to "Unit" in systemd 229.
# Both the old, and new location are accepted by systemd 229 and up, so using the old location
# to make them work for either version of systemd.
StartLimitBurst=3

# Note that StartLimitInterval was renamed to StartLimitIntervalSec in systemd 230.
# Both the old, and new name are accepted by systemd 230 and up, so using the old name to make
# this option work for either version of systemd.
StartLimitInterval=60s

# Having non-zero Limit*s causes performance problems due to accounting overhead
# in the kernel. We recommend using cgroups to do container-local accounting.
LimitNPROC=infinity
LimitCORE=infinity
# Older systemd versions default to a LimitNOFILE of 1024:1024, which is insufficient for many
# applications including dockerd itself and will be inherited. Raise the hard limit, while
# preserving the soft limit for select(2).
LimitNOFILE=1024:524288

# Comment TasksMax if your systemd version does not support it.
# Only systemd 226 and above support this option.
TasksMax=infinity

# 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
OOMScoreAdjust=-500

[Install]
WantedBy=multi-user.target
  • 需要找到ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock这句进行修改,在后面加上-H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock
1
ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock
  • 重启服务测试
1
2
3
4
5
6
# 加载
systemctl daemon-reload
# 重启
systemctl restart docker
# 测试
curl http://127.0.0.1:2375/info
  • 在IDEA的服务中选择Docker写入相关地址即可连接
1
tcp://192.168.1.150:2375