shipyard的模式,好像在docker 1.12之后,没有啥用武之地了,也没有更新。

接下来,集群管理和调度,最有知名度的就是rancher了。

在rancher之前,我们试一下portainer吧。。超简单方便哟。

万一rancher不行,这个也可以上哈。

安装命令:

docker service create \
>     --name portainer \
>     --publish 9000:9000 \
>     --constraint 'node.role == manager' \
>     --mount type=bind,src=//var/run/docker.sock,dst=/var/run/docker.sock \
>     portainer/portainer \
>     -H unix:///var/run/docker.sock

portainer,用于管理docker swarm,好像也不错哟

相关文章:

  • 2021-08-16
  • 2021-11-17
  • 2021-07-07
  • 2021-07-06
  • 2022-12-23
  • 2021-10-06
  • 2021-07-20
  • 2021-08-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
  • 2021-08-29
  • 2021-07-09
相关资源
相似解决方案