当前位置:   article > 正文

香橙派 arm64 ubuntu安装docker_香橙派 docker

香橙派 docker

目录

前言 :

1.离线安装docker:

移除以前安装的docker:

下载docker的安装包:

复制docker目录下的文件到/usr/bin/目录

注册docker为系统服务:

在编辑器中添加以下内容:

 设置 docker.service 文件权限

重载unit配置文件:

运行docker:

开机自启:

​编辑


前言 :

我使用的是 香橙派3b Ubuntu 系统

官方的系统应该是没有docker包的

我这里用的是离线方式安装:

1.离线安装docker

移除以前安装的docker:

sudo apt-get remove docker docker-engine docker.io containerd runc

下载docker的安装包

你可以选择自己在电脑下载,然后ftp传到你想要的目录:

root目录也可以

https://download.docker.com/linux/static/stable/aarch64/docker-24.0.6.tgz

wget https://download.docker.com/linux/static/stable/aarch64/docker-24.0.6.tgz

解压docker压缩包:

先cd到你的压缩包目录

tar -zxvf docker-19.03.9.tgz

复制docker目录下的文件到/usr/bin/目录

sudo cp -p docker/* /usr/bin/

注册docker为系统服务:

这里会在:/usr/lib/systemd/system/下创建一个docker.service文件

sudo nano /usr/lib/systemd/system/docker.service

在编辑器中添加以下内容:

  1. docker.service
  2. [Unit]
  3. Description=Docker Application Container Engine
  4. Documentation=https://docs.docker.com
  5. After=network-online.target firewalld.service
  6. Wants=network-online.target
  7. [Service]
  8. Type=notify
  9. # the default is not to use systemd for cgroups because the delegate issues still
  10. # exists and systemd currently does not support the cgroup feature set required
  11. # for containers run by docker
  12. ExecStart=/usr/bin/dockerd
  13. ExecReload=/bin/kill -s HUP $MAINPID
  14. # Having non-zero Limit*s causes performance problems due to accounting overhead
  15. # in the kernel. We recommend using cgroups to do container-local accounting.
  16. LimitNOFILE=infinity
  17. LimitNPROC=infinity
  18. LimitCORE=infinity
  19. # Uncomment TasksMax if your systemd version supports it.
  20. # Only systemd 226 and above support this version.
  21. #TasksMax=infinity
  22. TimeoutStartSec=0
  23. # set delegate yes so that systemd does not reset the cgroups of docker containers
  24. Delegate=yes
  25. # kill only the docker process, not all processes in the cgroup
  26. KillMode=process
  27. # restart the docker process if it exits prematurely
  28. Restart=on-failure
  29. StartLimitBurst=3
  30. StartLimitInterval=60s
  31. [Install]
  32. WantedBy=multi-user.target

 设置 docker.service 文件权限

chmod +x /etc/systemd/system/docker.service

重载unit配置文件:

sudo systemctl daemon-reload

运行docker

sudo systemctl start docker

开机自启:

sudo systemctl enable docker


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/730614
推荐阅读
相关标签
  

闽ICP备14008679号