安装好Docker,centos8会报错,请查看上一篇。
docker 加速 https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors
docker pull portainer/portainer
docker images
可以看到最新的Portainer已经pull
docker volume create portainer_data
systemctl restart docker
不重启会出现无法找到这个volume
docker run -d -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer
到这一步,已经可以正常使用了。如果无法访问,请查看9000端口,最简答的就是关闭防火墙。docker出现问题,万能方法,重启
systemctl stop firewalld
systemctl restart docker.service
文章评论