mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes doc string in docker_volume (#27074)
This commit is contained in:
parent
96a0bdeac5
commit
2e073e73d2
1 changed files with 11 additions and 6 deletions
|
@ -44,9 +44,8 @@ options:
|
||||||
|
|
||||||
driver_options:
|
driver_options:
|
||||||
description:
|
description:
|
||||||
- >
|
- "Dictionary of volume settings. Consult docker docs for valid options and values:
|
||||||
Dictionary of volume settings. Consult docker docs for valid options and values:
|
U(https://docs.docker.com/engine/reference/commandline/volume_create/#driver-specific-options)"
|
||||||
U(https://docs.docker.com/engine/reference/commandline/volume_create/#driver-specific-options)
|
|
||||||
|
|
||||||
labels:
|
labels:
|
||||||
description:
|
description:
|
||||||
|
@ -55,8 +54,8 @@ options:
|
||||||
force:
|
force:
|
||||||
description:
|
description:
|
||||||
- With state C(present) causes the volume to be deleted and recreated if the volume already
|
- With state C(present) causes the volume to be deleted and recreated if the volume already
|
||||||
exist and the driver, driver options or labels differ.
|
exist and the driver, driver options or labels differ. This will cause any data in the existing
|
||||||
This will cause any data in the existing volume to be lost.
|
volume to be lost.
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
|
|
||||||
|
@ -108,7 +107,13 @@ facts:
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from ansible.module_utils.six import iteritems, text_type
|
from ansible.module_utils.six import iteritems, text_type
|
||||||
from ansible.module_utils.docker_common import DockerBaseClass, AnsibleDockerClient, APIError
|
from ansible.module_utils.docker_common import DockerBaseClass, AnsibleDockerClient
|
||||||
|
|
||||||
|
try:
|
||||||
|
from docker.errors import APIError
|
||||||
|
except:
|
||||||
|
# missing docker-py handled in ansible.module_utils.docker
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class TaskParameters(DockerBaseClass):
|
class TaskParameters(DockerBaseClass):
|
||||||
|
|
Loading…
Reference in a new issue