系统准备
Atlas 200 DK物理机(配置正常联网,apt镜像源,建议更换为aliyun镜像源)
安装过程
一、Install docker>18.03
SSH连接200 DK 执行以下命令
su - root
apt remove docker docker-engine docker-ce docker.io
apt update
apt install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt update
apt install docker-ce
systemctl status docker
检查docker版本
docker -v
测试安装是否成功
sudo docker run hello-world
二、Install Docker web tool-Portainer
默认版本安装
使用如下命令即可安装原版:
docker run -d \
--name portainer \
-p 9000:9000 \
-v /var/run/docker.sock:/var/run/docker.sock \
--restart always \
portainer/portainer
安装完成访问ip:9000进入管理页面
中文版本安装
使用如下命令即可安装原版:
docker run -d --name=portainer-zh -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock --restart=always 6053537/portainer-ce
安装完成访问ip:9000进入管理页面