Merge pull request #32653 from allencloud/add-empty-string-for-restartpolicy-in-swagger

add empty string for restart policy in swagger.yml
Upstream-commit: 9752e41fd06a46a7d3f3e1c42168dc02df53b81c
Component: engine
This commit is contained in:
Brian Goff
2017-04-28 00:03:09 -04:00
committed by GitHub

View File

@ -308,10 +308,12 @@ definitions:
Name:
type: "string"
description: |
- Empty string means not to restart
- `always` Always restart
- `unless-stopped` Restart always except when the user has manually stopped the container
- `on-failure` Restart only when the container exit code is non-zero
enum:
- ""
- "always"
- "unless-stopped"
- "on-failure"