added unless stopped option
This commit is contained in:
parent
11f4340a44
commit
aa15231cb7
1 changed files with 2 additions and 2 deletions
|
@ -305,7 +305,7 @@ options:
|
|||
restart_policy:
|
||||
description:
|
||||
- Container restart policy.
|
||||
choices: ["no", "on-failure", "always"]
|
||||
choices: ["no", "on-failure", "always", "unless-stopped"]
|
||||
default: null
|
||||
version_added: "1.9"
|
||||
restart_policy_retry:
|
||||
|
@ -1762,7 +1762,7 @@ def main():
|
|||
detach = dict(default=True, type='bool'),
|
||||
state = dict(default='started', choices=['present', 'started', 'reloaded', 'restarted', 'stopped', 'killed', 'absent', 'running']),
|
||||
signal = dict(default=None),
|
||||
restart_policy = dict(default=None, choices=['always', 'on-failure', 'no']),
|
||||
restart_policy = dict(default=None, choices=['always', 'on-failure', 'no', 'unless-stopped']),
|
||||
restart_policy_retry = dict(default=0, type='int'),
|
||||
extra_hosts = dict(type='dict'),
|
||||
debug = dict(default=False, type='bool'),
|
||||
|
|
Loading…
Reference in a new issue