一、安装Docker
1、由于apt官方库里的docker版本可能比较旧,所以先卸载可能存在的旧版本:
sudo apt-get remove docker docker-engine docker-ce docker.io
2、更新apt包索引:sudo apt-get update
3、安装以下包以使apt可以通过HTTPS使用存储库(repository):
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
4、添加Docker官方的GPG密钥:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
5、使用下面的命令来设置stable存储库:
sudo add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
注意arm64
换成自己的系统架构。查看系统架构命令:dpkg --print-architecture
6、再更新一下apt包索引:sudo apt-get update
7、安装最新版本的Docker CE:sudo apt-get install -y docker-ce
8、查看docker服务是否启动:systemctl status docker
二、安装汉化版Portainer-ce
docker pull 6053537/portainer-ce \
docker volume create portainer_data \
docker run -d --name portainer -p 9000:9000 --restart=always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data 6053537/portainer-ce \
访问地址:ip:9000
可能第一次进入会卡在加载页面,可以换谷歌浏览器或者运行docker ps
查看容器列表,然后运行docker restart 容器id
重启容器试试。
参考文章:
Ubuntu快速安装Docker及管理界面portainer_ubuntu安装portainer_全栈小定的博客-CSDN博客
安装中文版 portainer-ce - 简书 (jianshu.com)
标签:Ubuntu20.04,sudo,Portainer,汉化版,apt,ce,portainer,docker,Docker From: https://www.cnblogs.com/loiou/p/17851133.html