大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE稳定放心使用
1、下载docker的安装文件
下载地址
这里下载docker-20.10.8.tgz,如果无法下载可以在网盘下载:
docker安装包下载
提取码:qw9f
将docker-20.10.8.tgz文件上传到系统上:
将解压出来的docker文件内容移动到 /usr/bin/ 目录下
进入/etc/systemd/system/目录,并创建docker.service文件
编辑docker.service:
打开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 --selinux-enabled=false --insecure-registry=192.168.200.128
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
注意: –insecure-registry=192.168.200.128 此处改为你自己服务器ip。
编辑完成保存退出。
给docker.service文件添加执行权限:
重新加载配置文件(每次有修改docker.service文件时都要重新加载下):
启动docker:
查看docker状态:
出现上面面这个界面就代表docker安装成功。
设置开机启动:
还可以用systemctl enable docker.service设置docker开机自启动。
其他命令:
systemctl stop docker #停止Docker守护进程
systemctl restart docker #重启Docker守护进程
配置镜像加速器:
国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Docker 官方和国内很多云服务商都提供了国内加速器服务,例如:
Docker官方提供的中国加速器:https://registry.docker-cn.com
当配置某一个加速器地址之后,若发现拉取不到镜像,请切换到另一个加速器地址。
国内各大云服务商均提供了 Docker 镜像加速服务,建议根据运行 Docker 的云平台选择 对应的镜像加速服务。
在 /etc/docker/daemon.json 中写入如下内容(如果文件不存 用touch新建该文件):
{
"registry-mirrors": ["https://registry.docker-cn.com"]
}
#网易云
{"registry-mirrors": ["http://hub-mirror.c.163.com"] }
#阿里云
{
"registry-mirrors": ["https://{自已的编码}.mirror.aliyuncs.com"]
}
**注意:**一定要保证该文件符合 json 规范,否则 Docker 将不能启动。 之后重新启动docker服务。
重启Docker:
systemctl restart docker
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/189442.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...