mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
25 lines
490 B
YAML
25 lines
490 B
YAML
service1:
|
|
image: busybox
|
|
ports:
|
|
- "80"
|
|
command: sleep 100
|
|
labels:
|
|
com.docker.swarm.constraints: '["node==~node-0"]'
|
|
com.docker.swarm.reschedule-policies: '["on-node-failure"]'
|
|
|
|
service2:
|
|
image: busybox
|
|
ports:
|
|
- "80"
|
|
command: sleep 100
|
|
environment:
|
|
- reschedule:on-node-failure
|
|
labels:
|
|
com.docker.swarm.constraints: '["node==~node-0"]'
|
|
|
|
service3:
|
|
image: busybox
|
|
command: sleep 100
|
|
labels:
|
|
com.docker.swarm.constraints: '["node==~node-0"]'
|