一、通过docker方式直接运行portainer
# 搜索镜像
#docker search portainer/portainer
# 拉取镜像
#docker pull portainer/portainer
#后面直接运行下列命令:数据保存在/opt/portainer目录下
docker run -d -p 9000:9000 -v /opt/portainer:/data -v /var/run/docker.sock:/var/run/docker.sock --name dev-portainer portainer/portainer
二、开启各服务器上的Docker API接口
修改/usr/lib/systemd/system/docker.service,在ExecStart的末尾追加 -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock
[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 -H fd:// --containerd=/run/containerd/containerd.sock -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock
ExecReload=/bin/kill -s HUP $MAINPID
TimeoutSec=0
RestartSec=2
Restart=always
然后重启docker服务
sudo systemctl daemon-reload
sudo service docker restart
三、配置remote模式的docker节点
使用第三个Docker,直接连接服务器上的docker API服务,输入docker API的IP地址XXX和端口号2375