mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix doc strings.
This commit is contained in:
parent
1d327a23cd
commit
a9ddb5023d
1 changed files with 5 additions and 3 deletions
|
@ -255,13 +255,14 @@ options:
|
||||||
required: false
|
required: false
|
||||||
networks:
|
networks:
|
||||||
description:
|
description:
|
||||||
- List of networks to which the container is a member.
|
- List of networks that the container belongs to.
|
||||||
- Each network is dict with keys C(name), C(ipv4_address), C(ipv6_address), C(links), C(aliases).
|
- Each network is a dict with keys C(name), C(ipv4_address), C(ipv6_address), C(links), C(aliases).
|
||||||
- For each network C(name) is required. Optional parameters C(links) and C(aliases) are type list.
|
- For each network C(name) is required. Optional parameters C(links) and C(aliases) are of type list.
|
||||||
- For more information see U(https://docs.docker.com/engine/userguide/networking/dockernetworks/).
|
- For more information see U(https://docs.docker.com/engine/userguide/networking/dockernetworks/).
|
||||||
- To remove a container from one or more networks, use the C(purge_networks) option.
|
- To remove a container from one or more networks, use the C(purge_networks) option.
|
||||||
default: null
|
default: null
|
||||||
required: false
|
required: false
|
||||||
|
version_added: "2.2"
|
||||||
oom_killer:
|
oom_killer:
|
||||||
description:
|
description:
|
||||||
- Whether or not to disable OOM Killer for the container.
|
- Whether or not to disable OOM Killer for the container.
|
||||||
|
@ -304,6 +305,7 @@ options:
|
||||||
- Remove the container from all networks not included in C(networks) parameter.
|
- Remove the container from all networks not included in C(networks) parameter.
|
||||||
default: false
|
default: false
|
||||||
required: false
|
required: false
|
||||||
|
version_added: "2.2"
|
||||||
read_only:
|
read_only:
|
||||||
description:
|
description:
|
||||||
- Mount the container's root file system as read-only.
|
- Mount the container's root file system as read-only.
|
||||||
|
|
Loading…
Reference in a new issue