p图做网站兼职,网页链接视频怎么下载到本地,南昌有做网站的吗,成立软件公司1. 下载 下载地址#xff1a;Index of linux/static/stable/x86_64/ 下载好后#xff0c;将文件docker-18.06.3-ce.tgz用WinSCP等工具#xff0c;上传到不能外网的linux系统服务器
2. 安装
解压后的文件夹docker中文件如下所示#xff1a; 将docker中的全部文件#xff…1. 下载 下载地址Index of linux/static/stable/x86_64/ 下载好后将文件docker-18.06.3-ce.tgz用WinSCP等工具上传到不能外网的linux系统服务器
2. 安装
解压后的文件夹docker中文件如下所示 将docker中的全部文件使用下边命令复制到/usr/bin
cp ./docker/* /usr/bin
创建docker.service文件
cd /etc/systemd/system/
touch docker.service
编辑docker.service文件
注意将其中的ip地址改成您的服务器地址其它参数不用改。
--insecure-registry192.168.205.230
[Unit]
DescriptionDocker Application Container Engine
Documentationhttps://docs.docker.com
Afternetwork-online.target firewalld.service
Wantsnetwork-online.target[Service]
Typenotify
# 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-enabledfalse --insecure-registry192.168.205.230
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.
LimitNOFILEinfinity
LimitNPROCinfinity
LimitCOREinfinity
# Uncomment TasksMax if your systemd version supports it.
# Only systemd 226 and above support this version.
#TasksMaxinfinity
TimeoutStartSec0
# set delegate yes so that systemd does not reset the cgroups of docker containers
Delegateyes
# kill only the docker process, not all processes in the cgroup
KillModeprocess
# restart the docker process if it exits prematurely
Restarton-failure
StartLimitBurst3
StartLimitInterval60s[Install]
WantedBymulti-user.target
添加可执行权限
chmod x docker.service
加载docker.service 注意若修改了docker.service文件则要重新加载该文件
systemctl daemon-reload
启动docker
systemctl status docker
查看docker 设置开机自启动
systemctl enable docker.service