portainer图形化监控
Posted luoyan01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了portainer图形化监控相关的知识,希望对你有一定的参考价值。
步骤1,在Swarm集群中创建一个新的覆盖网络:
$ docker network create --driver overlay --attachable portainer_agent_network
步骤2,将代理部署为集群中的全局服务:
$ docker service create
--name portainer_agent
--network portainer_agent_network
-e AGENT_CLUSTER_ADDR=tasks.portainer_agent
--mode global
--constraint ‘node.platform.os == linux‘
--mount type=bind,src=//var/run/docker.sock,dst=/var/run/docker.sock
--mount type=bind,src=//var/lib/docker/volumes,dst=/var/lib/docker/volumes
portainer/agent
步骤3,将Portainer实例部署为服务:
$ docker service create
--name portainer
--network portainer_agent_network
--publish 9000:9000
--replicas=1
--constraint ‘node.role == manager‘
portainer/portainer -H "tcp://tasks.portainer_agent:9001" --tlsskipverify
以上是关于portainer图形化监控的主要内容,如果未能解决你的问题,请参考以下文章