Class: Ansible::Ruby::Modules::Docker_container
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Docker_container
- Defined in:
- lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb
Instance Method Summary collapse
-
#blkio_weight ⇒ Object?
Block IO (relative weight), between 10 and 1000.
-
#capabilities ⇒ Object?
List of capabilities to add to the container.
-
#command ⇒ String?
Command or list of commands to execute in the container when it starts.
-
#cpu_period ⇒ Integer?
Limit CPU CFS (Completely Fair Scheduler) period.
-
#cpu_quota ⇒ Integer?
Limit CPU CFS (Completely Fair Scheduler) quota.
-
#cpu_shares ⇒ Object?
CPU shares (relative weight).
-
#cpuset_cpus ⇒ Object?
CPUs in which to allow execution C(1,3) or C(1-3).
-
#cpuset_mems ⇒ Object?
Memory nodes (MEMs) in which to allow execution C(0-3) or C(0,1).
-
#detach ⇒ Boolean?
Enable detached mode to leave the container running in background.
-
#devices ⇒ Array<String>, ...
List of host device bindings to add to the container.
-
#dns_search_domains ⇒ Object?
List of custom DNS search domains.
-
#dns_servers ⇒ Object?
List of custom DNS servers.
-
#entrypoint ⇒ Object?
String or list of commands that overwrite the default ENTRYPOINT of the image.
-
#env ⇒ Hash?
Dictionary of key,value pairs.
-
#env_file ⇒ Object?
Path to a file containing environment variables I(FOO=BAR).,If variable also present in C(env), then C(env) value will override.,Requires docker-py >= 1.4.0.
-
#etc_hosts ⇒ Object?
Dict of host-to-IP mappings, where each host name is a key in the dictionary.
-
#exposed_ports ⇒ Array<Integer>, ...
List of additional container ports to expose for port mappings or links.
-
#force_kill ⇒ Boolean?
Use the kill command when stopping a running container.
-
#groups ⇒ Object?
List of additional group names and/or IDs that the container process will run as.
-
#hostname ⇒ Object?
Container hostname.
-
#ignore_image ⇒ Boolean?
When C(state) is I(present) or I(started) the module compares the configuration of an existing container to requested configuration.
-
#image ⇒ String?
Repository path and tag used to create the container.
-
#interactive ⇒ Boolean?
Keep stdin open after a container is launched, even if not attached.
-
#ipc_mode ⇒ Object?
Set the IPC mode for the container.
-
#keep_volumes ⇒ Boolean?
Retain volumes associated with a removed container.
-
#kernel_memory ⇒ Integer?
Kernel memory limit (format: <number>).
-
#kill_signal ⇒ Object?
Override default signal used to kill a running container.
-
#labels ⇒ Object?
Dictionary of key value pairs.
-
#links ⇒ Array<String>, ...
List of name aliases for linked containers in the format C(container_name:alias).
-
#log_driver ⇒ :"json-file", ...
Specify the logging driver.
-
#log_options ⇒ Hash?
Dictionary of options specific to the chosen log_driver.
-
#mac_address ⇒ Object?
Container MAC address (e.g. 92:d0:c6:0a:29:33).
-
#memory ⇒ Integer?
Memory limit (format: <number>).
-
#memory_reservation ⇒ Integer?
Memory soft limit (format: <number>).
-
#memory_swap ⇒ Integer?
Total memory limit (memory + swap, format:<number>).
-
#memory_swappiness ⇒ Integer?
Tune a container’s memory swappiness behavior.
-
#name ⇒ String
Assign a name to a new container or match an existing container.,When identifying an existing container name may be a name or a long or short container ID.
-
#network_mode ⇒ :bridge, ...
Connect the container to a network.
-
#networks ⇒ Array<Hash>, ...
List of networks the container belongs to.,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, all other keys are optional.,If included, C(links) or C(aliases) are lists.,For examples of the data structure and usage see EXAMPLES below.,To remove a container from one or more networks, use the C(purge_networks) option.
-
#oom_killer ⇒ Boolean?
Whether or not to disable OOM Killer for the container.
-
#paused ⇒ Boolean?
Use with the started state to pause running processes inside the container.
-
#pid_mode ⇒ Object?
Set the PID namespace mode for the container.
-
#privileged ⇒ Boolean?
Give extended privileges to the container.
-
#published_ports ⇒ Object?
List of ports to publish from the container to the host.,Use docker CLI syntax: C(8000), C(9000:8000), or C(0.0.0.0:9000:8000), where 8000 is a container port, 9000 is a host port, and 0.0.0.0 is a host interface.,Container ports must be exposed either in the Dockerfile or via the C(expose) option.,A value of ALL will publish all exposed container ports to random host ports, ignoring any other mappings.
-
#pull ⇒ Boolean?
If true, always pull the latest version of an image.
-
#purge_networks ⇒ Boolean?
Remove the container from ALL networks not included in C(networks) parameter.,Any default networks such as I(bridge), if not found in C(networks), will be removed as well.
-
#read_only ⇒ Boolean?
Mount the container’s root file system as read-only.
-
#recreate ⇒ Boolean?
Use with present and started states to force the re-creation of an existing container.
-
#restart ⇒ Boolean?
Use with started state to force a matching container to be stopped and restarted.
-
#restart_policy ⇒ :always, ...
Container restart policy.
-
#restart_retries ⇒ Integer?
Use with restart policy to control maximum number of restart attempts.
-
#security_opts ⇒ Object?
List of security options in the form of C(“label:user:User”).
-
#shm_size ⇒ Object?
Size of ‘/dev/shm`.
-
#state ⇒ :absent, ...
I(absent) - A container matching the specified name will be stopped and removed.
-
#stop_signal ⇒ Object?
Override default signal used to stop the container.
-
#stop_timeout ⇒ Object?
Number of seconds to wait for the container to stop before sending SIGKILL.
-
#trust_image_content ⇒ Boolean?
If true, skip image verification.
-
#tty ⇒ Boolean?
Allocate a psuedo-TTY.
-
#ulimits ⇒ Object?
List of ulimit options.
-
#user ⇒ Object?
Sets the username or UID used and optionally the groupname or GID for the specified command.,Can be [ user | user:group | uid | uid:gid | user:gid | uid:group ].
-
#uts ⇒ Object?
Set the UTS namespace mode for the container.
-
#volume_driver ⇒ String?
The container’s volume driver.
-
#volumes ⇒ Array<String>, ...
List of volumes to mount within the container.,Use docker CLI-style syntax: C(/host:/container),You can specify a read mode for the mount with either C(ro) or C(rw).,SELinux hosts can additionally use C(z) or C(Z) to use a shared or private label for the volume.
-
#volumes_from ⇒ Array<String>, ...
List of container names or Ids to get volumes from.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#blkio_weight ⇒ Object?
Returns Block IO (relative weight), between 10 and 1000.
10 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 10 attribute :blkio_weight |
#capabilities ⇒ Object?
Returns List of capabilities to add to the container.
13 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 13 attribute :capabilities |
#command ⇒ String?
Returns Command or list of commands to execute in the container when it starts.
16 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 16 attribute :command |
#cpu_period ⇒ Integer?
Returns Limit CPU CFS (Completely Fair Scheduler) period.
20 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 20 attribute :cpu_period |
#cpu_quota ⇒ Integer?
Returns Limit CPU CFS (Completely Fair Scheduler) quota.
24 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 24 attribute :cpu_quota |
#cpu_shares ⇒ Object?
Returns CPU shares (relative weight).
34 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 34 attribute :cpu_shares |
#cpuset_cpus ⇒ Object?
Returns CPUs in which to allow execution C(1,3) or C(1-3).
28 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 28 attribute :cpuset_cpus |
#cpuset_mems ⇒ Object?
Returns Memory nodes (MEMs) in which to allow execution C(0-3) or C(0,1).
31 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 31 attribute :cpuset_mems |
#detach ⇒ Boolean?
Returns Enable detached mode to leave the container running in background. If disabled, the task will reflect the status of the container run (failed if the command failed).
37 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 37 attribute :detach |
#devices ⇒ Array<String>, ...
Returns List of host device bindings to add to the container. Each binding is a mapping expressed in the format: <path_on_host>:<path_in_container>:<cgroup_permissions>.
41 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 41 attribute :devices |
#dns_search_domains ⇒ Object?
Returns List of custom DNS search domains.
48 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 48 attribute :dns_search_domains |
#dns_servers ⇒ Object?
Returns List of custom DNS servers.
45 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 45 attribute :dns_servers |
#entrypoint ⇒ Object?
Returns String or list of commands that overwrite the default ENTRYPOINT of the image.
58 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 58 attribute :entrypoint |
#env ⇒ Hash?
Returns Dictionary of key,value pairs.
51 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 51 attribute :env |
#env_file ⇒ Object?
Returns Path to a file containing environment variables I(FOO=BAR).,If variable also present in C(env), then C(env) value will override.,Requires docker-py >= 1.4.0.
55 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 55 attribute :env_file |
#etc_hosts ⇒ Object?
Returns Dict of host-to-IP mappings, where each host name is a key in the dictionary. Each host name will be added to the container’s /etc/hosts file.
61 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 61 attribute :etc_hosts |
#exposed_ports ⇒ Array<Integer>, ...
Returns List of additional container ports to expose for port mappings or links. If the port is already exposed using EXPOSE in a Dockerfile, it does not need to be xposed again.
64 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 64 attribute :exposed_ports |
#force_kill ⇒ Boolean?
Returns Use the kill command when stopping a running container.
68 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 68 attribute :force_kill |
#groups ⇒ Object?
Returns List of additional group names and/or IDs that the container process will run as.
72 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 72 attribute :groups |
#hostname ⇒ Object?
Returns Container hostname.
75 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 75 attribute :hostname |
#ignore_image ⇒ Boolean?
Returns When C(state) is I(present) or I(started) the module compares the configuration of an existing container to requested configuration. The evaluation includes the image version. If the image vesion in the registry does not match the container, the container will be recreated. Stop this behavior by setting C(ignore_image) to I(True).
78 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 78 attribute :ignore_image |
#image ⇒ String?
Returns Repository path and tag used to create the container. If an image is not found or pull is true, the image will be pulled from the registry. If no tag is included, ‘latest’ will be used.
82 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 82 attribute :image |
#interactive ⇒ Boolean?
Returns Keep stdin open after a container is launched, even if not attached.
86 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 86 attribute :interactive |
#ipc_mode ⇒ Object?
Returns Set the IPC mode for the container. Can be one of ‘container:<name|id>’ to reuse another container’s IPC namespace or ‘host’ to use the host’s IPC namespace within the container.
90 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 90 attribute :ipc_mode |
#keep_volumes ⇒ Boolean?
Returns Retain volumes associated with a removed container.
93 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 93 attribute :keep_volumes |
#kernel_memory ⇒ Integer?
Returns Kernel memory limit (format: <number>). Number is a positive integer. Unit can be one of b, k, m, or g. Minimum is 4M.
100 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 100 attribute :kernel_memory |
#kill_signal ⇒ Object?
Returns Override default signal used to kill a running container.
97 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 97 attribute :kill_signal |
#labels ⇒ Object?
Returns Dictionary of key value pairs.
104 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 104 attribute :labels |
#links ⇒ Array<String>, ...
Returns List of name aliases for linked containers in the format C(container_name:alias).
107 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 107 attribute :links |
#log_driver ⇒ :"json-file", ...
Returns Specify the logging driver.
111 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 111 attribute :log_driver |
#log_options ⇒ Hash?
Returns Dictionary of options specific to the chosen log_driver. See docs.docker.com/engine/admin/logging/overview/ for details.
115 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 115 attribute :log_options |
#mac_address ⇒ Object?
Returns Container MAC address (e.g. 92:d0:c6:0a:29:33).
119 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 119 attribute :mac_address |
#memory ⇒ Integer?
Returns Memory limit (format: <number>). Number is a positive integer. Unit can be one of b, k, m, or g.
122 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 122 attribute :memory |
#memory_reservation ⇒ Integer?
Returns Memory soft limit (format: <number>). Number is a positive integer. Unit can be one of b, k, m, or g.
126 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 126 attribute :memory_reservation |
#memory_swap ⇒ Integer?
Returns Total memory limit (memory + swap, format:<number>). Number is a positive integer. Unit can be one of b, k, m, or g.
130 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 130 attribute :memory_swap |
#memory_swappiness ⇒ Integer?
Returns Tune a container’s memory swappiness behavior. Accepts an integer between 0 and 100.
134 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 134 attribute :memory_swappiness |
#name ⇒ String
Returns Assign a name to a new container or match an existing container.,When identifying an existing container name may be a name or a long or short container ID.
138 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 138 attribute :name |
#network_mode ⇒ :bridge, ...
Returns Connect the container to a network.
142 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 142 attribute :network_mode |
#networks ⇒ Array<Hash>, ...
Returns List of networks the container belongs to.,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, all other keys are optional.,If included, C(links) or C(aliases) are lists.,For examples of the data structure and usage see EXAMPLES below.,To remove a container from one or more networks, use the C(purge_networks) option.
146 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 146 attribute :networks |
#oom_killer ⇒ Boolean?
Returns Whether or not to disable OOM Killer for the container.
150 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 150 attribute :oom_killer |
#paused ⇒ Boolean?
Returns Use with the started state to pause running processes inside the container.
154 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 154 attribute :paused |
#pid_mode ⇒ Object?
Returns Set the PID namespace mode for the container. Currenly only supports ‘host’.
158 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 158 attribute :pid_mode |
#privileged ⇒ Boolean?
Returns Give extended privileges to the container.
161 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 161 attribute :privileged |
#published_ports ⇒ Object?
Returns List of ports to publish from the container to the host.,Use docker CLI syntax: C(8000), C(9000:8000), or C(0.0.0.0:9000:8000), where 8000 is a container port, 9000 is a host port, and 0.0.0.0 is a host interface.,Container ports must be exposed either in the Dockerfile or via the C(expose) option.,A value of ALL will publish all exposed container ports to random host ports, ignoring any other mappings.
165 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 165 attribute :published_ports |
#pull ⇒ Boolean?
Returns If true, always pull the latest version of an image. Otherwise, will only pull an image when missing.
168 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 168 attribute :pull |
#purge_networks ⇒ Boolean?
Returns Remove the container from ALL networks not included in C(networks) parameter.,Any default networks such as I(bridge), if not found in C(networks), will be removed as well.
172 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 172 attribute :purge_networks |
#read_only ⇒ Boolean?
Returns Mount the container’s root file system as read-only.
176 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 176 attribute :read_only |
#recreate ⇒ Boolean?
Returns Use with present and started states to force the re-creation of an existing container.
180 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 180 attribute :recreate |
#restart ⇒ Boolean?
Returns Use with started state to force a matching container to be stopped and restarted.
184 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 184 attribute :restart |
#restart_policy ⇒ :always, ...
Returns Container restart policy. Place quotes around I(no) option.
188 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 188 attribute :restart_policy |
#restart_retries ⇒ Integer?
Returns Use with restart policy to control maximum number of restart attempts.
192 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 192 attribute :restart_retries |
#security_opts ⇒ Object?
Returns List of security options in the form of C(“label:user:User”).
199 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 199 attribute :security_opts |
#shm_size ⇒ Object?
Returns Size of ‘/dev/shm`. The format is `<number><unit>`. `number` must be greater than `0`. Unit is optional and can be `b` (bytes), `k` (kilobytes), `m` (megabytes), or `g` (gigabytes).,Ommitting the unit defaults to bytes. If you omit the size entirely, the system uses `64m`.
196 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 196 attribute :shm_size |
#state ⇒ :absent, ...
Returns I(absent) - A container matching the specified name will be stopped and removed. Use force_kill to kill the container rather than stopping it. Use keep_volumes to retain volumes associated with the removed container.,I(present)“ - Asserts the existence of a container matching the name and any provided configuration parameters. If no container matches the name, a container will be created. If a container matches the name but the provided configuration does not match, the container will be updated, if it can be. If it cannot be updated, it will be removed and re-created with the requested config. Image version will be taken into account when comparing configuration. To ignore image version use the ignore_image option. Use the recreate option to force the re-creation of the matching container. Use force_kill to kill the container rather than stopping it. Use keep_volumes to retain volumes associated with a removed container.,I(started) - Asserts there is a running container matching the name and any provided configuration. If no container matches the name, a container will be created and started. If a container matching the name is found but the configuration does not match, the container will be updated, if it can be. If it cannot be updated, it will be removed and a new container will be created with the requested configuration and started. Image version will be taken into account when comparing configuration. To ignore image version use the ignore_image option. Use recreate to always re-create a matching container, even if it is running. Use restart to force a matching container to be stopped and restarted. Use force_kill to kill a container rather than stopping it. Use keep_volumes to retain volumes associated with a removed container.,I(stopped) - Asserts that the container is first I(present), and then if the container is running moves it to a stopped state. Use force_kill to kill a container rather than stopping it.
202 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 202 attribute :state |
#stop_signal ⇒ Object?
Returns Override default signal used to stop the container.
206 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 206 attribute :stop_signal |
#stop_timeout ⇒ Object?
Returns Number of seconds to wait for the container to stop before sending SIGKILL.
209 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 209 attribute :stop_timeout |
#trust_image_content ⇒ Boolean?
Returns If true, skip image verification.
212 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 212 attribute :trust_image_content |
#tty ⇒ Boolean?
Returns Allocate a psuedo-TTY.
216 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 216 attribute :tty |
#ulimits ⇒ Object?
Returns List of ulimit options. A ulimit is specified as C(nofile:262144:262144).
220 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 220 attribute :ulimits |
#user ⇒ Object?
Returns Sets the username or UID used and optionally the groupname or GID for the specified command.,Can be [ user | user:group | uid | uid:gid | user:gid | uid:group ].
223 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 223 attribute :user |
#uts ⇒ Object?
Returns Set the UTS namespace mode for the container.
226 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 226 attribute :uts |
#volume_driver ⇒ String?
Returns The container’s volume driver.
233 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 233 attribute :volume_driver |
#volumes ⇒ Array<String>, ...
Returns List of volumes to mount within the container.,Use docker CLI-style syntax: C(/host:/container),You can specify a read mode for the mount with either C(ro) or C(rw).,SELinux hosts can additionally use C(z) or C(Z) to use a shared or private label for the volume.
229 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 229 attribute :volumes |
#volumes_from ⇒ Array<String>, ...
Returns List of container names or Ids to get volumes from.
237 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/docker/docker_container.rb', line 237 attribute :volumes_from |