在多台机器上运行Docker群

5vf7fwbs  于 2022-11-22  发布在  Docker
关注(0)|答案(1)|浏览(154)

我在5个节点上部署了一个Docker群,我有5个微服务。Docker群只在一个节点上分配服务。有没有什么方法告诉Docker群每个服务使用哪个节点,以便在每个节点上分配1个服务?

t5fffqht

t5fffqht1#

是的,您可以使用构成档案中的"deploy" configuration option来执行此动作。例如:

deploy:
  placement:
    constraints:
    - "node.hostname == desired_machine_hostname"

相关问题