大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE稳定放心使用
docker 离线安装部署
下载地址
docker下载地址
我使用的是docker-20.10.8.tgz
解压
chmod 777 docker-20.10.8.tgz
tar -zxvf docker-20.10.9-ce.tgz
解压之后的文件复制到 /usr/bin/ 目录下
cp docker/* /usr/bin/
新增docker.service文件
在/etc/systemd/system/目录下新增docker.service文件
通过 vi 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
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
docker-compose 离线安装
首先下载离线文件
上传至服务器
/usr/local/bin/
添加权限
chmod +x /usr/local/bin/docker-compose
检查状态
docker-compose -v
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/189324.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...