Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use swarm in Docker

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how to use swarm in Docker. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Swarm three virtual machines 132133134

1. Initialize a cluster and add yourself to the cluster

# initialize the master node docker swarm init-- advertise-addr 192.168.220.13mm 133134 join worker to execute docker swarm join-token worker # add work (manager-- master node management node) # execute docker swarm join--token SWMTKN-1-49blzc9unsa1e8vcb4sonqx2q2rq02588jqjbhfzykowgtaoy1-57s37b21k0h49j0ywf6vd6la1 192.168.220.132 worker 2377 corresponding to the machine

two。 View Node docker node ls

3. Primary node creates a service nginx replicas 1 (a service)

Docker service create-- replicas 1-- name manageNg-p 80:80 nginx

All three ip can be accessed normally, and there is only one container instance.

View Service: docker service ls

Docker service ls

Dynamic scaling: docker service scale manageNg=5

Create five services

Docker service scale manageNg=5

5. View the instance; docker service ps manageNg

Thank you for reading! This is the end of the article on "how to use swarm in Docker". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report