fix duplicate rescheduling.md

Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
Victor Vieux 2016-03-16 17:27:32 -07:00
parent fc1d6a2f1d
commit 07143cea03
1 changed files with 0 additions and 41 deletions

View File

@ -1,41 +0,0 @@
<!--[metadata]>
+++
title = "Docker Swarm recheduling"
description = "Swarm rescheduling"
keywords = ["docker, swarm, clustering, rescheduling"]
[menu.main]
parent="smn_workw_swarm"
weight=5
+++
<![end-metadata]-->
# Rescheduling
The Docker Swarm scheduler is able to detect node failure and
restart its containers on another node.
## Rescheduling policies
The rescheduling policies are:
* `on-node-failure`
* `off` (default if not specified)
When you start a container, use the env var `reschedule` or the
label `com.docker.swarm.reschedule-policy` to specify the policy to
apply to the container.
```
# do not reschedule (default)
$ docker run -d -e reschedule:off redis
# or
$ docker run -d -l 'com.docker.swarm.reschedule-policy=["off"]' redis
```
```
# reschedule on node failure
$ docker run -d -e reschedule:on-node-failure redis
# or
$ docker run -d -l 'com.docker.swarm.reschedule-policy=["on-node-failure"]' redis
```