Docker 安装使用

  1. 下载

下载地址:Index of linux/static/stable/x86_64/

下载好后,将文件docker-18.06.3-ce.tgz用WinSCP等工具,上传到不能外网的linux系统服务器

  1. 安装

解压后的文件夹docker中文件如下所示:

将docker中的全部文件,使用下边命令,复制到/usr/bin

复制代码
cp ./docker/* /usr/bin
创建docker.service文件
复制代码
cd /etc/systemd/system/
touch docker.service
编辑docker.service文件

注意,将其中的ip地址,改成您的服务器地址,其它参数不用改。

--insecure-registry=192.168.205.230

复制代码
[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.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.
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
添加可执行权限
复制代码
chmod +x docker.service
加载docker.service (注意,若修改了docker.service文件,则要重新加载该文件)
复制代码
systemctl daemon-reload
启动docker
复制代码
systemctl status docker
查看docker
设置开机自启动
复制代码
systemctl enable docker.service
相关推荐
实在智能RPA34 分钟前
Agent上线后有专人运营支持吗?深度解析AI Agent的全生命周期运维保障体系
运维·人工智能·ai
木心术134 分钟前
OpenClaw数据库自动化部署与网站接口调通全流程指南
运维·数据库·自动化
ulias21235 分钟前
Linux中的基本命令符
linux·运维·服务器
eRTE XFUN42 分钟前
Redis 设置密码(配置文件、docker容器、命令行3种场景)
数据库·redis·docker
桌面运维家1 小时前
服务器RAID优化:IOPS性能与数据安全实战指南
运维·服务器·网络
HABuo1 小时前
【linux线程(二)】线程互斥、线程同步、条件变量详细剖析
linux·运维·服务器·c语言·c++·ubuntu·centos
万象.1 小时前
Docker网络原理
网络·docker·容器
crossaspeed1 小时前
Nginx配置文件详解
运维·nginx
春日见2 小时前
从底层思维3分钟彻底弄清卷积神经网络CNN
人工智能·深度学习·神经网络·计算机视觉·docker·cnn·计算机外设