首页 > 其他分享 >Portainer笔记-安装

Portainer笔记-安装

时间:2023-01-17 14:12:10浏览次数:43  
标签:Pull complete Portainer ce 笔记 portainer docker 安装 latest

新建数据卷

[root@VM-24-9-centos ~]# docker volume create portainer_data

拉取Portainer镜像

[root@VM-24-9-centos ~]# docker pull portainer/portainer-ce
Using default tag: latest
latest: Pulling from portainer/portainer-ce
772227786281: Pull complete 
96fd13befc87: Pull complete 
0bad1d247b5b: Pull complete 
b5d1b01b1d39: Pull complete 
Digest: sha256:f7607310051ee21f58f99d7b7f7878a6a49d4850422d88a31f8c61c248bbc3a4
Status: Downloaded newer image for portainer/portainer-ce:latest
docker.io/portainer/portainer-ce:latest

启动命令

[root@VM-24-9-centos ~]# docker run -itd -p 9000:9000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce
1a21ea9a3d8e01a3d10a19c96ddfaaf98a01dd681187dcaed6f40510d914bf2a

展示效果

访问地址:http://ip:9000

设置admin用户密码

image.png

页面介绍

image.png
image.png

标签:Pull,complete,Portainer,ce,笔记,portainer,docker,安装,latest
From: https://www.cnblogs.com/jruing/p/17057678.html

相关文章

  • Win11+Ubuntu双系统安装
    Win11+ubuntu双系统安装记录参考制作系统安装盘1.下载Ubuntu官方镜像点击链接,选择22.04LTS版本下载2.下载系统盘制作工具这里使用Rufus下载完成后双击启动,提示......
  • Docker笔记-容器镜像导入导出
    镜像导入导出导出镜像dockersave镜像id>镜像名称.tar导入镜像dockersave<镜像名称.tar容器导入导出导出容器dockerexport容器id>容器名称.tar导入镜......
  • Prometheus笔记-Grafana可视化
    Grafana官网下载Grafana[root@VM-24-9-centosPrometheus_server]#wgethttps://dl.grafana.com/oss/release/grafana-9.3.2.linux-amd64.tar.gz安装Grafana[root@VM......
  • Prometheus笔记-安装blackbox_exporter
    BlackboxExporter是Prometheus社区提供的官方黑盒监控解决方案,其允许用户通过:HTTP、HTTPS、DNS、TCP以及ICMP 的方式对网络进行探测。我们可以利用这个exporter定时访问......
  • Prometheus笔记-监控docker容器
    docker安装google/cadvisor[root@VM-24-9-centos~]#dockerpullgoogle/cadvisorUsingdefaulttag:latestlatest:Pullingfromgoogle/cadvisorff3a5c916c92:Pul......
  • Prometheus笔记-安装Node_exporter
    Node_exporter是可以在*Nix和Linux系统上运行的计算机度量标准的导出器。Node_exporter主要用于暴露metrics给Prometheus,其中metrics包括:cpu的负载,内存的使用情......
  • yum方式安装nginx
    转载地址:https://blog.csdn.net/qq_34200979/article/details/123016644 1、添加CentOS7Nginxyum资源库[root@localhost~]# rpm-Uvhhttp://nginx.org/package......
  • 如何在centos上安装nvidia docker
    当基于nvidiagpu开发的docker镜像在实际部署时,需要先安装nvidiadocker。那么如何安装nvidiadocker呢。下面将详细介绍下。安装原生dockeryum-yinstalldocker-io......
  • Prometheus笔记-安装
    官网https://prometheus.io/docs/introduction/overview/下载Prometheushttps://prometheus.io/download/安装Prometheus配置文件#myglobalconfigglobal:......
  • Prometheus笔记-Label标签
    LabelLable是为了方便管理及查询监控目标,在后续写promtheus查询语法的时候需要使用标签作为查询条件配置文件#Ascrapeconfigurationcontainingexactlyoneendpoin......