編程小知識(shí)【docker-0001】docker安裝(在線、離線兩種方式)
1、自動(dòng)安裝
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
systemctl start docker
3、設(shè)置阿里云加速
vi /etc/docker/daemon.json
# 添加加速配置
{
?"registry-mirrors": ["https://6283jv2m.mirror.aliyuncs.com"]
}
離線安裝
1、下載離線安裝包
https://download.docker.com/linux/static/stable/x86_64/docker-20.10.14.tgz
2、安裝
# 解壓
tar -zxvf docker-20.10.14.tgz
# 移動(dòng)到/usr/bin目錄下
cp -p docker/* /usr/bin
# 注冊(cè)系統(tǒng)服務(wù)
vi /usr/lib/systemd/system/docker.service
# docker.service添加如下內(nèi)容
[Unit]
Description=Docker Application Container Engine
Documentation=http://docs.docker.com
After=network.target docker.socket
[Service]
Type=notify
EnvironmentFile=-/run/flannel/docker
WorkingDirectory=/usr/local/bin
ExecStart=/usr/bin/dockerd \
? ? ? ? ? ? ? ?-H tcp://0.0.0.0:4243 \
? ? ? ? ? ? ? ?-H unix:///var/run/docker.sock \
? ? ? ? ? ? ? ?--selinux-enabled=false \
? ? ? ? ? ? ? ?--log-opt max-size=1g
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=on-failure
[Install]
WantedBy=multi-user.target
#重啟守護(hù)進(jìn)程
systemctl daemon-reload
#啟動(dòng)docker
systemctl start docker