码迷,mamicode.com
首页 > 其他好文 > 详细

portainer图形化监控

时间:2018-10-01 11:56:45      阅读:787      评论:0      收藏:0      [点我收藏+]

标签:部署   str   add   create   集群   ice   for   mes   manager   

步骤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图形化监控

标签:部署   str   add   create   集群   ice   for   mes   manager   

原文地址:https://www.cnblogs.com/luoyan01/p/9734295.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!