使用docker搭建portainer容器
使用docker搭建portainer容器
文章目录
- 使用docker搭建portainer容器
- 前期准备
- 安装步骤
- portainer的使用
前期准备
- 安装docker
安装步骤
# docker volume 默认创建的数据卷目录在/var/lib/docker/volumes下
docker volume create portainer_data
docker run -d -p 9000:9000 -p 8000:8000 \
--name portainer --restart always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data portainer/portainer
参考地址:
官网参考地址:https://portainer.readthedocs.io/en/latest/deployment.html
portainer的使用
参考地址:
1.使用portainer创建云盘
还没有评论,来说两句吧...