community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose.
+community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1
Note
This module is part of the community.docker collection (version 3.6.0).
@@ -184,14 +186,15 @@ see ParametersSynopsis
-
-
Uses Docker Compose to start, shutdown and scale services. This module requires docker-compose < 2.0.0.
+Uses Docker Compose to start, shutdown and scale services. This module requires docker-compose < 2.0.0. Use the community.docker.docker_compose_v2 module for using the modern Docker compose CLI plugin.
Configuration can be read from a
docker-compose.ymlordocker-compose.yamlfile or inline using thedefinitionoption.See the examples for more details.
Supports check mode.
@@ -634,8 +637,18 @@ see
+- community.docker.docker_compose_v2
Manage multi-container Docker applications with Docker Compose CLI plugin.
+
+
See Also
+See also
+-
+
Examples
+Examples
# Examples use the django example at https://docs.docker.com/compose/django. Follow it to create the
# flask directory
@@ -798,7 +811,7 @@ see
-Return Values
+Return Values
Common return values are documented here, the following are the fields unique to this module:
Parameter |
+Comments |
+
|---|---|
| + | The version of the Docker API running on the Docker Host. +Defaults to the latest version of the API supported by this collection and the docker daemon. +If the value is not specified in the task, the value of environment variable Default: |
+
| + | Use a CA certificate when performing server verification by providing the path to a CA certificate file. +If the value is not specified in the task and the environment variable |
+
| + | The Docker CLI context to use. + |
+
| + | Path to the client’s TLS certificate file. +If the value is not specified in the task and the environment variable |
+
| + | Path to the client’s TLS key file. +If the value is not specified in the task and the environment variable |
+
| + | When Choices: +
|
+
| + | Path to the Docker CLI. If not provided, will search for Docker CLI on the |
+
| + | The URL or Unix socket path used to connect to the Docker API. To connect to a remote host, provide the TCP connection string. For example, If the value is not specified in the task, the value of environment variable Default: |
+
| + | By default environment files are loaded from a
The path is relative to the |
+
| + | List of profiles to enable when starting services. +Equivalent to |
+
| + | Provide a project name. If not provided, the project name is taken from the basename of |
+
| + | Path to a directory containing a |
+
| + | By default containers will be recreated when their configuration differs from the service definition. +Setting to Setting to Choices: +
|
+
| + | + |
| + | Remove containers for services not defined in the Compose file. +Choices: +
|
+
| + | + |
| + | Desired state of the project. +
Choices: +
|
+
| + | Timeout in seconds for container shutdown when attached or when containers are already running. + |
+
| + | Secure the connection to the API by using TLS without verifying the authenticity of the Docker host server. Note that if If the value is not specified in the task, the value of environment variable Choices: +
|
+
| + | When verifying the authenticity of the Docker Host server, provide the expected name of the server. +If the value is not specified in the task, the value of environment variable Note that this option had a default value |
+
| + | Secure the connection to the API by using TLS and verifying the authenticity of the Docker host server. +If the value is not specified in the task, the value of environment variable Choices: +
|
+
Attributes
+Attribute |
+Support |
+Description |
+
|---|---|---|
| + | Action groups: community.docker.docker, docker + |
+Use |
+
| + | Support: full + |
+Can run in |
+
| + | Support: none + |
+Will return details on what has changed (or possibly needs changing in |
+
Notes
+Note
+-
+
The Docker compose CLI plugin has no stable output format (see for example https://github.com/docker/compose/issues/10872), +and for the main operations also no machine friendly output format. The module tries to accomodate this with various +version-dependent behavior adjustments and with testing older and newer versions of the Docker compose CLI plugin.
+Currently the module is tested with multiple plugin versions between 2.18.1 and 2.23.3. The exact list of plugin versions +will change over time. New releases of the Docker compose CLI plugin can break this module at any time.
+
+Connect to the Docker daemon by providing parameters with each task or by defining environment variables. You can define
DOCKER_HOST,DOCKER_TLS_HOSTNAME,DOCKER_API_VERSION,DOCKER_CERT_PATH,DOCKER_TLS,DOCKER_TLS_VERIFYandDOCKER_TIMEOUT. If you are using docker machine, run the script shipped with the product that sets up the environment. It will set these variables for you. See https://docs.docker.com/machine/reference/env/ for more details.
+This module does not use the Docker SDK for Python to communicate with the Docker daemon. It directly calls the Docker CLI program.
+
See Also
+See also
+-
+
- community.docker.docker_compose
Manage multi-container Docker applications with Docker Compose V1.
+
+
Examples
+# Examples use the django example at https://docs.docker.com/compose/django. Follow it to create the
+# flask directory
+
+- name: Run using a project directory
+ hosts: localhost
+ gather_facts: false
+ tasks:
+ - name: Tear down existing services
+ community.docker.docker_compose_v2:
+ project_src: flask
+ state: absent
+
+ - name: Create and start services
+ community.docker.docker_compose_v2:
+ project_src: flask
+ register: output
+
+ - name: Show results
+ ansible.builtin.debug:
+ var: output
+
+ - name: Run `docker-compose up` again
+ community.docker.docker_compose_v2:
+ project_src: flask
+ register: output
+
+ - name: Show results
+ ansible.builtin.debug:
+ var: output
+
+ - ansible.builtin.assert:
+ that: not output.changed
+
+ - name: Stop all services
+ community.docker.docker_compose_v2:
+ project_src: flask
+ state: stopped
+ register: output
+
+ - name: Show results
+ ansible.builtin.debug:
+ var: output
+
+ - name: Verify that web and db services are not running
+ ansible.builtin.assert:
+ that:
+ - "not output.services.web.flask_web_1.state.running"
+ - "not output.services.db.flask_db_1.state.running"
+
+ - name: Restart services
+ community.docker.docker_compose_v2:
+ project_src: flask
+ state: restarted
+ register: output
+
+ - name: Show results
+ ansible.builtin.debug:
+ var: output
+
+ - name: Verify that web and db services are running
+ ansible.builtin.assert:
+ that:
+ - "output.services.web.flask_web_1.state.running"
+ - "output.services.db.flask_db_1.state.running"
+Return Values
+Common return values are documented here, the following are the fields unique to this module:
+Key |
+Description |
+
|---|---|
| + | A list of actions that have been applied. +Returned: success + |
+
| + | The ID of the resource that was changed. +Returned: success +Sample: |
+
| + | The status change that happened. +Returned: success +Can only return: +
Sample: |
+
| + | What kind of resource was changed. +Returned: success +Can only return: +
Sample: |
+
| + | A list of containers associated to the service. +Returned: success + |
+
| + | The container’s command. +Returned: success + |
+
| + | The timestamp when the container was created. +Returned: success +Sample: |
+
| + | The container’s exit code. +Returned: success + |
+
| + | The container’s health check. +Returned: success + |
+
| + | The container’s ID. +Returned: success +Sample: |
+
| + | The container’s image. +Returned: success + |
+
| + | Labels for this container. +Returned: success + |
+
| + | The local volumes count. +Returned: success + |
+
| + | Mounts. +Returned: success + |
+
| + | The container’s primary name. +Returned: success + |
+
| + | List of names of the container. +Returned: success + |
+
| + | List of networks attached to this container. +Returned: success + |
+
| + | List of port assignments as a string. +Returned: success + |
+
| + | List of port assigments. +Returned: success + |
+
| + | The protocol. +Returned: success +Can only return: +
|
+
| + | The port that is published. +Returned: success + |
+
| + | The container’s port the published port maps to. +Returned: success + |
+
| + | Interface the port is bound to. +Returned: success + |
+
| + | Amount of time the container runs. +Returned: success + |
+
| + | The name of the service. +Returned: success + |
+
| + | The container’s size. +Returned: success +Sample: |
+
| + | The container’s state. +Returned: success +Sample: |
+
| + | The container’s status. +Returned: success +Sample: |
+
| + | A list of images associated to the service. +Returned: success + |
+
| + | Name of the conainer this image is used by. +Returned: success + |
+
| + | The image’s ID. +Returned: success +Sample: |
+
| + | The repository where this image belongs to. +Returned: success + |
+
| + | The image’s size in bytes. +Returned: success + |
+
| + | The tag of the image. +Returned: success + |
+
Collection links
+ +- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- Synopsis
- Requirements @@ -640,7 +641,7 @@ see - Previous + Previous Next diff --git a/branch/main/docker_connection.html b/branch/main/docker_connection.html index 62d5cb03..3172e1db 100644 --- a/branch/main/docker_connection.html +++ b/branch/main/docker_connection.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_container_copy_into_module.html b/branch/main/docker_container_copy_into_module.html index 57702abf..90eeefaf 100644 --- a/branch/main/docker_container_copy_into_module.html +++ b/branch/main/docker_container_copy_into_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container
-
diff --git a/branch/main/docker_container_exec_module.html b/branch/main/docker_container_exec_module.html
index 13047559..b2e8ae23 100644
--- a/branch/main/docker_container_exec_module.html
+++ b/branch/main/docker_container_exec_module.html
@@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_container_info_module.html b/branch/main/docker_container_info_module.html index 40530b5f..fc895e16 100644 --- a/branch/main/docker_container_info_module.html +++ b/branch/main/docker_container_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_container_module.html b/branch/main/docker_container_module.html index cc2d6cb7..c99999d8 100644 --- a/branch/main/docker_container_module.html +++ b/branch/main/docker_container_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- Synopsis diff --git a/branch/main/docker_containers_inventory.html b/branch/main/docker_containers_inventory.html index 312abd86..fa3ae51f 100644 --- a/branch/main/docker_containers_inventory.html +++ b/branch/main/docker_containers_inventory.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_host_info_module.html b/branch/main/docker_host_info_module.html index e15dd2e5..b56611db 100644 --- a/branch/main/docker_host_info_module.html +++ b/branch/main/docker_host_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_image_build_module.html b/branch/main/docker_image_build_module.html index abd8ecd2..3cb65124 100644 --- a/branch/main/docker_image_build_module.html +++ b/branch/main/docker_image_build_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_image_info_module.html b/branch/main/docker_image_info_module.html index c9130b72..eaa46e4e 100644 --- a/branch/main/docker_image_info_module.html +++ b/branch/main/docker_image_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_image_load_module.html b/branch/main/docker_image_load_module.html index 459f59aa..1b5e1db4 100644 --- a/branch/main/docker_image_load_module.html +++ b/branch/main/docker_image_load_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_image_module.html b/branch/main/docker_image_module.html index 2abee559..e3ee3271 100644 --- a/branch/main/docker_image_module.html +++ b/branch/main/docker_image_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_image_pull_module.html b/branch/main/docker_image_pull_module.html index 15544b23..c8b294fa 100644 --- a/branch/main/docker_image_pull_module.html +++ b/branch/main/docker_image_pull_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_image_push_module.html b/branch/main/docker_image_push_module.html index 76672d32..5c7bf2b7 100644 --- a/branch/main/docker_image_push_module.html +++ b/branch/main/docker_image_push_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_image_remove_module.html b/branch/main/docker_image_remove_module.html index 890a452d..1c2e645c 100644 --- a/branch/main/docker_image_remove_module.html +++ b/branch/main/docker_image_remove_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_image_tag_module.html b/branch/main/docker_image_tag_module.html index 4793304b..4ca2d79b 100644 --- a/branch/main/docker_image_tag_module.html +++ b/branch/main/docker_image_tag_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_login_module.html b/branch/main/docker_login_module.html index 6e9879ee..96467509 100644 --- a/branch/main/docker_login_module.html +++ b/branch/main/docker_login_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_machine_inventory.html b/branch/main/docker_machine_inventory.html index 96c39013..4bbf7d9b 100644 --- a/branch/main/docker_machine_inventory.html +++ b/branch/main/docker_machine_inventory.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_network_info_module.html b/branch/main/docker_network_info_module.html index b45b9adf..0f192d37 100644 --- a/branch/main/docker_network_info_module.html +++ b/branch/main/docker_network_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_network_module.html b/branch/main/docker_network_module.html index c7fc54ac..8e08b2fd 100644 --- a/branch/main/docker_network_module.html +++ b/branch/main/docker_network_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_node_info_module.html b/branch/main/docker_node_info_module.html index 6d35ce0e..dad94f0f 100644 --- a/branch/main/docker_node_info_module.html +++ b/branch/main/docker_node_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_node_module.html b/branch/main/docker_node_module.html index 2f6d27cd..79a2582f 100644 --- a/branch/main/docker_node_module.html +++ b/branch/main/docker_node_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_plugin_module.html b/branch/main/docker_plugin_module.html index ede85a44..79e3d2b4 100644 --- a/branch/main/docker_plugin_module.html +++ b/branch/main/docker_plugin_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_prune_module.html b/branch/main/docker_prune_module.html index fed50750..720783ea 100644 --- a/branch/main/docker_prune_module.html +++ b/branch/main/docker_prune_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_secret_module.html b/branch/main/docker_secret_module.html index a3270c33..e31a3ec3 100644 --- a/branch/main/docker_secret_module.html +++ b/branch/main/docker_secret_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_stack_info_module.html b/branch/main/docker_stack_info_module.html index e0c451b0..6b156ca8 100644 --- a/branch/main/docker_stack_info_module.html +++ b/branch/main/docker_stack_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_stack_module.html b/branch/main/docker_stack_module.html index d6933a8c..6bf5d0ea 100644 --- a/branch/main/docker_stack_module.html +++ b/branch/main/docker_stack_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_stack_task_info_module.html b/branch/main/docker_stack_task_info_module.html index e77cf31f..2c44772b 100644 --- a/branch/main/docker_stack_task_info_module.html +++ b/branch/main/docker_stack_task_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_swarm_info_module.html b/branch/main/docker_swarm_info_module.html index 76332dfc..6dbceea2 100644 --- a/branch/main/docker_swarm_info_module.html +++ b/branch/main/docker_swarm_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_swarm_inventory.html b/branch/main/docker_swarm_inventory.html index e374d6be..dc06266f 100644 --- a/branch/main/docker_swarm_inventory.html +++ b/branch/main/docker_swarm_inventory.html @@ -79,7 +79,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_swarm_module.html b/branch/main/docker_swarm_module.html index 70a8e808..6f7be672 100644 --- a/branch/main/docker_swarm_module.html +++ b/branch/main/docker_swarm_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_swarm_service_info_module.html b/branch/main/docker_swarm_service_info_module.html index 5dd3fe14..9854a5cc 100644 --- a/branch/main/docker_swarm_service_info_module.html +++ b/branch/main/docker_swarm_service_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_swarm_service_module.html b/branch/main/docker_swarm_service_module.html index 1fc1eba2..e6bebede 100644 --- a/branch/main/docker_swarm_service_module.html +++ b/branch/main/docker_swarm_service_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_volume_info_module.html b/branch/main/docker_volume_info_module.html index 49e84b2d..ae2f34a2 100644 --- a/branch/main/docker_volume_info_module.html +++ b/branch/main/docker_volume_info_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docker_volume_module.html b/branch/main/docker_volume_module.html index ac93ee8d..b98573e0 100644 --- a/branch/main/docker_volume_module.html +++ b/branch/main/docker_volume_module.html @@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/docsite/scenario_guide.html b/branch/main/docsite/scenario_guide.html index e0f646c0..3a681974 100644 --- a/branch/main/docsite/scenario_guide.html +++ b/branch/main/docsite/scenario_guide.html @@ -98,7 +98,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/environment_variables.html b/branch/main/environment_variables.html index 4dabf940..36f17a19 100644 --- a/branch/main/environment_variables.html +++ b/branch/main/environment_variables.html @@ -78,7 +78,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/index.html b/branch/main/index.html index 1148fccb..ab1c26b9 100644 --- a/branch/main/index.html +++ b/branch/main/index.html @@ -79,7 +79,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container @@ -205,7 +206,8 @@
current_container_facts module – Return facts about whether the module runs in a container
-docker_compose module – Manage multi-container Docker applications with Docker Compose.
+docker_compose module – Manage multi-container Docker applications with Docker Compose V1
+docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
docker_config module – Manage docker configs.
docker_container module – manage Docker containers
docker_container_copy_into module – Copy a file into a Docker container
diff --git a/branch/main/nsenter_connection.html b/branch/main/nsenter_connection.html
index 9cbb71a5..f38cc158 100644
--- a/branch/main/nsenter_connection.html
+++ b/branch/main/nsenter_connection.html
@@ -80,7 +80,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/objects.inv b/branch/main/objects.inv index e70e2d65..ae8c1eb6 100644 Binary files a/branch/main/objects.inv and b/branch/main/objects.inv differ diff --git a/branch/main/search.html b/branch/main/search.html index b83fe100..8891a0a1 100644 --- a/branch/main/search.html +++ b/branch/main/search.html @@ -79,7 +79,8 @@
- community.docker.current_container_facts module – Return facts about whether the module runs in a container -
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose. +
- community.docker.docker_compose module – Manage multi-container Docker applications with Docker Compose V1 +
- community.docker.docker_compose_v2 module – Manage multi-container Docker applications with Docker Compose CLI plugin
- community.docker.docker_config module – Manage docker configs.
- community.docker.docker_container module – manage Docker containers
- community.docker.docker_container_copy_into module – Copy a file into a Docker container diff --git a/branch/main/searchindex.js b/branch/main/searchindex.js index e3a0106e..7639115d 100644 --- a/branch/main/searchindex.js +++ b/branch/main/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["current_container_facts_module", "docker_api_connection", "docker_compose_module", "docker_config_module", "docker_connection", "docker_container_copy_into_module", "docker_container_exec_module", "docker_container_info_module", "docker_container_module", "docker_containers_inventory", "docker_host_info_module", "docker_image_build_module", "docker_image_info_module", "docker_image_load_module", "docker_image_module", "docker_image_pull_module", "docker_image_push_module", "docker_image_remove_module", "docker_image_tag_module", "docker_login_module", "docker_machine_inventory", "docker_network_info_module", "docker_network_module", "docker_node_info_module", "docker_node_module", "docker_plugin_module", "docker_prune_module", "docker_secret_module", "docker_stack_info_module", "docker_stack_module", "docker_stack_task_info_module", "docker_swarm_info_module", "docker_swarm_inventory", "docker_swarm_module", "docker_swarm_service_info_module", "docker_swarm_service_module", "docker_volume_info_module", "docker_volume_module", "docsite/scenario_guide", "environment_variables", "index", "nsenter_connection"], "filenames": ["current_container_facts_module.rst", "docker_api_connection.rst", "docker_compose_module.rst", "docker_config_module.rst", "docker_connection.rst", "docker_container_copy_into_module.rst", "docker_container_exec_module.rst", "docker_container_info_module.rst", "docker_container_module.rst", "docker_containers_inventory.rst", "docker_host_info_module.rst", "docker_image_build_module.rst", "docker_image_info_module.rst", "docker_image_load_module.rst", "docker_image_module.rst", "docker_image_pull_module.rst", "docker_image_push_module.rst", "docker_image_remove_module.rst", "docker_image_tag_module.rst", "docker_login_module.rst", "docker_machine_inventory.rst", "docker_network_info_module.rst", "docker_network_module.rst", "docker_node_info_module.rst", "docker_node_module.rst", "docker_plugin_module.rst", "docker_prune_module.rst", "docker_secret_module.rst", "docker_stack_info_module.rst", "docker_stack_module.rst", "docker_stack_task_info_module.rst", "docker_swarm_info_module.rst", "docker_swarm_inventory.rst", "docker_swarm_module.rst", "docker_swarm_service_info_module.rst", "docker_swarm_service_module.rst", "docker_volume_info_module.rst", "docker_volume_module.rst", "docsite/scenario_guide.rst", "environment_variables.rst", "index.rst", "nsenter_connection.rst"], "titles": ["community.docker.current_container_facts module \u2013 Return facts about whether the module runs in a container", "community.docker.docker_api connection \u2013 Run tasks in docker containers", "community.docker.docker_compose module \u2013 Manage multi-container Docker applications with Docker Compose.", "community.docker.docker_config module \u2013 Manage docker configs.", "community.docker.docker connection \u2013 Run tasks in docker containers", "community.docker.docker_container_copy_into module \u2013 Copy a file into a Docker container", "community.docker.docker_container_exec module \u2013 Execute command in a docker container", "community.docker.docker_container_info module \u2013 Retrieves facts about docker container", "community.docker.docker_container module \u2013 manage Docker containers", "community.docker.docker_containers inventory \u2013 Ansible dynamic inventory plugin for Docker containers", "community.docker.docker_host_info module \u2013 Retrieves facts about docker host and lists of objects of the services.", "community.docker.docker_image_build module \u2013 Build Docker images using Docker buildx", "community.docker.docker_image_info module \u2013 Inspect docker images", "community.docker.docker_image_load module \u2013 Load docker image(s) from archives", "community.docker.docker_image module \u2013 Manage docker images", "community.docker.docker_image_pull module \u2013 Pull Docker images from registries", "community.docker.docker_image_push module \u2013 Push Docker images to registries", "community.docker.docker_image_remove module \u2013 Remove Docker images", "community.docker.docker_image_tag module \u2013 Tag Docker images with new names and/or tags", "community.docker.docker_login module \u2013 Log into a Docker registry.", "community.docker.docker_machine inventory \u2013 Docker Machine inventory source", "community.docker.docker_network_info module \u2013 Retrieves facts about docker network", "community.docker.docker_network module \u2013 Manage Docker networks", "community.docker.docker_node_info module \u2013 Retrieves facts about docker swarm node from Swarm Manager", "community.docker.docker_node module \u2013 Manage Docker Swarm node", "community.docker.docker_plugin module \u2013 Manage Docker plugins", "community.docker.docker_prune module \u2013 Allows to prune various docker objects", "community.docker.docker_secret module \u2013 Manage docker secrets.", "community.docker.docker_stack_info module \u2013 Return information on all docker stacks", "community.docker.docker_stack module \u2013 docker stack module", "community.docker.docker_stack_task_info module \u2013 Return information of the tasks on a docker stack", "community.docker.docker_swarm_info module \u2013 Retrieves facts about Docker Swarm cluster.", "community.docker.docker_swarm inventory \u2013 Ansible dynamic inventory plugin for Docker swarm nodes.", "community.docker.docker_swarm module \u2013 Manage Swarm cluster", "community.docker.docker_swarm_service_info module \u2013 Retrieves information about docker services from a Swarm Manager", "community.docker.docker_swarm_service module \u2013 docker swarm service", "community.docker.docker_volume_info module \u2013 Retrieve facts about Docker volumes", "community.docker.docker_volume module \u2013 Manage Docker volumes", "Docker Guide", "Index of all Collection Environment Variables", "Community.Docker", "community.docker.nsenter connection \u2013 execute on host running controller container"], "terms": {"thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "part": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "version": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "3": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "6": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "It": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "includ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "ansibl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41], "core": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41], "To": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "check": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "galaxi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "list": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "playbook": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "specifi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "new": [0, 1, 2, 3, 5, 6, 8, 9, 11, 13, 14, 15, 16, 17, 20, 22, 24, 25, 27, 29, 33, 35, 37, 40, 41], "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "podman": 0, "attempt": [0, 8, 12, 20], "best": 0, "effort": 0, "detect": [0, 2, 8, 32, 33, 38], "There": 0, "might": [0, 2, 3, 6, 8, 9, 14, 20, 23, 24, 27, 31, 32, 33, 34, 35], "special": [0, 8, 10, 14, 32], "case": [0, 8, 10, 35], "where": [0, 2, 3, 5, 8, 12, 14, 20, 27, 35, 38], "doe": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37], "work": [0, 1, 2, 3, 5, 6, 8, 9, 24, 27, 35, 38, 40], "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41], "encount": [0, 8], "one": [0, 2, 3, 4, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 23, 24, 27, 31, 33, 34, 35, 38], "pleas": [0, 2, 3, 6, 8, 22, 23, 24, 27, 31, 33, 34, 35, 37, 38], "file": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 40], "an": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 27, 31, 32, 33, 34, 35, 37, 38], "issu": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "support": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40], "descript": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "check_mod": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "full": [0, 2, 3, 5, 7, 8, 10, 11, 12, 15, 17, 18, 19, 21, 22, 23, 24, 25, 27, 28, 30, 31, 33, 34, 35, 36, 37, 38], "action": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37], "modifi": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38], "state": [0, 2, 3, 7, 8, 10, 12, 14, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39], "chang": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38], "statu": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "predict": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "without": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "target": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "diff_mod": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "n": [0, 7, 10, 12, 21, 23, 28, 29, 30, 31, 34, 36], "A": [0, 2, 3, 7, 8, 9, 10, 12, 14, 18, 20, 21, 23, 26, 27, 28, 30, 31, 32, 34, 35, 36], "Will": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "detail": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "what": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "ha": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38], "possibli": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "need": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "when": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "diff": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "mode": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 41], "ansible_fact": 0, "dictionari": [0, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "updat": [0, 3, 8, 11, 14, 19, 22, 24, 27, 33, 35, 38], "exist": [0, 1, 2, 3, 4, 5, 7, 8, 11, 12, 14, 15, 18, 19, 21, 22, 25, 27, 33, 34, 35, 36, 37, 38], "host": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 40], "name": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40], "get": [0, 5, 7, 8, 10, 20, 21, 23, 31, 34, 36], "current": [0, 2, 3, 5, 7, 8, 15, 19, 21, 23, 27, 29, 31, 33, 34, 35], "print": [0, 6, 7, 8, 13, 21, 31, 36], "inform": [0, 1, 2, 5, 6, 7, 8, 9, 10, 13, 21, 23, 24, 26, 31, 33, 36, 38, 40], "builtin": [0, 2, 3, 5, 6, 7, 10, 12, 13, 21, 23, 24, 27, 28, 30, 31, 33, 34, 35, 36], "debug": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37], "msg": [0, 7, 13, 21, 31, 36], "id": [0, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 21, 22, 23, 24, 26, 27, 30, 33, 35], "ansible_module_container_id": 0, "ansible_module_running_in_contain": 0, "ar": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "ad": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "hostvar": 0, "referenc": 0, "just": [0, 38], "like": [0, 6, 8, 22, 33, 35], "ani": [0, 5, 8, 11, 14, 20, 29, 35, 37], "other": [0, 2, 6, 8, 9, 20, 23, 24, 31, 32, 33, 34, 35], "thei": [0, 5, 8, 9, 20, 22, 32, 35, 38], "do": [0, 5, 8, 9, 11, 14, 20], "regist": [0, 2, 6, 7, 10, 12, 13, 21, 23, 24, 28, 30, 31, 34, 35, 36], "order": [0, 1, 2, 4, 6, 8, 9, 20, 32, 35, 38, 41], "them": [0, 2, 8, 19, 20, 22, 23, 24, 31, 33, 34, 38], "kei": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "string": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41], "empti": [0, 2, 6, 8, 9, 12, 17, 20, 22, 23, 24, 32], "wa": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "alwai": [0, 2, 3, 7, 8, 9, 10, 11, 12, 14, 15, 20, 21, 23, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 41], "ansible_module_container_typ": 0, "environ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 41], "non": [0, 5, 7, 8, 11, 14, 21, 22, 26, 39, 41], "identifi": [0, 7, 8, 18, 21, 23], "indic": [0, 5, 20, 31], "ran": [0, 6], "insid": [0, 1, 4, 5, 6, 8, 9, 35], "regular": 0, "azure_pipelin": 0, "azur": 0, "pipelin": 0, "seem": [0, 5], "longer": [0, 2, 3, 8, 23, 24, 27, 31, 33, 34, 35, 38], "report": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "github_act": 0, "github": [0, 1, 6, 8, 9], "sinc": [0, 6, 8, 9, 20, 32, 38], "2": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "4": [0, 2, 3, 5, 8, 10, 22, 23, 24, 27, 31, 32, 33, 34, 35, 38], "onli": [0, 2, 3, 5, 6, 8, 9, 10, 12, 14, 15, 19, 22, 23, 24, 26, 27, 31, 33, 34, 35], "boolean": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37], "abl": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37], "felix": [0, 1, 5, 6, 7, 8, 9, 11, 13, 15, 16, 17, 18, 26, 36], "fontein": [0, 1, 5, 6, 7, 8, 9, 11, 13, 15, 16, 17, 18, 26, 36], "felixfontein": [0, 1, 5, 6, 7, 8, 9, 11, 13, 15, 16, 17, 18, 26, 36], "tracker": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "repositori": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "submit": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "bug": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "request": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "featur": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "plugin": [1, 4, 5, 11, 20, 35, 38, 39, 41], "whether": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "further": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37], "see": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "command": [1, 2, 4, 8, 19, 28, 29, 30, 35, 38, 40], "put": [1, 4], "fetch": [1, 4, 20], "librari": 1, "interact": [1, 8], "directli": [1, 2, 3, 4, 6, 11, 27, 35, 38], "daemon": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "instead": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 41], "cli": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "want": [1, 4, 8, 12, 14, 22], "below": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37], "local": [1, 2, 7, 8, 9, 12, 14, 18, 19, 20, 21, 22, 25, 32, 36, 37, 38], "control": [1, 3, 4, 8, 9, 19, 20, 22, 27, 32, 37, 38, 39, 40], "node": [1, 5, 8, 9, 20, 22, 28, 29, 30, 31, 33, 35, 38, 40, 41], "execut": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40], "pywin32": [1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 36, 37], "pipe": [1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 36, 37], "window": [1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 35, 36, 37], "32": [1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 33, 35, 36, 37], "paramiko": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "ssh": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "use_ssh_cli": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "fals": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "pyopenssl": [1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 36, 37], "tl": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "backport": [1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 36, 37], "ssl_match_hostnam": [1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 36, 37], "python": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "comment": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "api_vers": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "alias": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "docker_api_vers": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "api": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "default": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41], "latest": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "If": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "valu": [1, 4, 9, 20, 32, 38], "variabl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 41], "set": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39], "auto": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "configur": [1, 2, 3, 4, 5, 8, 9, 14, 19, 20, 23, 24, 27, 31, 32, 33, 34, 35, 39, 41], "ansible_docker_api_vers": 1, "ca_cert": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "tls_ca_cert": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "cacert_path": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "path": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "ca": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "certif": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "perform": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "server": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "verif": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "provid": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 41], "docker_cert_path": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "pem": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "from": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40], "directori": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "ansible_docker_ca_cert": 1, "client_cert": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "tls_client_cert": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "cert_path": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "client": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "cert": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "ansible_docker_client_cert": 1, "client_kei": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "tls_client_kei": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "key_path": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "ansible_docker_client_kei": 1, "container_timeout": [1, 4], "integ": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 41], "how": [1, 4, 5, 8, 9, 20, 22, 35, 38, 39], "long": [1, 2, 4, 7, 8, 21, 39], "we": [1, 4, 8, 9, 14, 20, 22, 32, 39], "wait": [1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39], "access": [1, 4, 22, 35, 39, 41], "read": [1, 2, 3, 4, 8, 9, 27, 32, 35, 39], "output": [1, 2, 4, 6, 7, 8, 10, 14, 20, 21, 23, 31, 34, 39], "onc": [1, 4, 35, 39], "start": [1, 2, 4, 8, 9, 20, 32, 35, 38, 39], "10": [1, 2, 3, 4, 8, 25, 27, 31, 32, 33, 35], "ini": [1, 4, 9, 20, 32, 41], "entri": [1, 4, 8, 9, 20, 23, 24, 32, 33, 41], "timeout": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "docker_connect": [1, 4], "ansible_timeout": [1, 4], "ansible_docker_timeout": [1, 4, 39], "argument": [1, 4, 6, 11, 14, 35], "choic": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37], "true": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37], "docker_host": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "docker_url": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "url": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "unix": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "socket": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "remot": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 41], "tcp": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "For": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 41], "exampl": [1, 4, 38, 41], "192": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "23": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "2376": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "encrypt": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "modul": [1, 9, 32, 38], "automat": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "replac": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "http": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "var": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "sock": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "ansible_docker_docker_host": 1, "remote_addr": [1, 4, 33], "inventory_hostnam": [1, 4], "ansible_host": [1, 4, 9, 20, 32], "ansible_docker_host": [1, 4], "remote_us": [1, 4], "user": [1, 4, 5, 6, 7, 8, 11, 12, 19, 20, 24, 33, 35, 38, 39, 40, 41], "ansible_remote_us": [1, 4], "ansible_us": [1, 4, 20], "ansible_docker_us": [1, 4], "keyword": [1, 4], "ssl_version": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "valid": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "ssl": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "number": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "determin": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "docker_ssl_vers": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "ansible_docker_ssl_vers": 1, "maximum": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "amount": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "time": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "second": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "respons": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "docker_timeout": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "60": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "secur": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "verifi": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "authent": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "validate_cert": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "well": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "take": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "preced": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39], "docker_tl": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "ansible_docker_tl": 1, "tls_hostnam": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "expect": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "docker_tls_hostnam": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "option": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "had": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "localhost": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "older": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "remov": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 31, 33, 34, 35, 36, 37, 38, 40], "ansible_docker_tls_hostnam": 1, "5": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "transport": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "tool": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "tls_verifi": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "docker_tls_verifi": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "ansible_docker_validate_cert": 1, "caus": [1, 3, 6, 8, 27, 37], "inabl": [1, 6], "send": [1, 6, 8, 29, 33], "close_notifi": [1, 6], "close": [1, 6], "sslsocket": [1, 6], "com": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "605": [1, 6, 9], "more": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "each": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 41], "defin": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "machin": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 40], "script": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38], "ship": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "product": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37], "up": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 41], "doc": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "refer": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 31, 33, 34, 35, 36, 37], "env": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 33, 34, 35, 36, 37], "sdk": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38], "code": [1, 2, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 35, 36, 37], "deriv": [1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 32, 36, 37], "type": [1, 4, 6, 8, 9, 10, 20, 22, 31, 32, 35, 37, 41], "have": [1, 4, 8, 9, 20, 22, 23, 29, 32, 33, 35, 38, 41], "low": [1, 4, 9, 20, 32, 41], "high": [1, 4, 8, 9, 20, 32, 41], "prioriti": [1, 4, 9, 20, 32, 41], "lower": [1, 4, 9, 20, 32, 41], "overrid": [1, 2, 4, 8, 9, 20, 29, 32, 35, 41], "higher": [1, 4, 9, 20, 32, 41], "run": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40], "shutdown": 2, "scale": 2, "servic": [2, 8, 9, 22, 28, 29, 31, 40], "yml": [2, 9, 12, 20, 29, 32], "yaml": [2, 6, 8, 9, 20, 29, 32, 35], "inlin": 2, "definit": [2, 29], "call": [2, 8, 11, 12, 35, 38], "docker_servic": 2, "befor": [2, 3, 5, 8, 12, 14, 17, 19, 26, 27, 29, 33, 35, 38], "8": [2, 5, 8, 9, 12, 14, 25, 35], "usag": [2, 8, 10, 12, 14, 35, 40], "did": [2, 8, 12], "25": [2, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "py": [2, 3, 23, 24, 27, 31, 33, 34, 35, 38], "been": [2, 3, 8, 9, 23, 24, 27, 29, 31, 33, 34, 35], "supersed": [2, 3, 23, 24, 27, 31, 33, 34, 35], "here": [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "both": [2, 3, 8, 10, 12, 23, 24, 27, 31, 33, 34, 35, 38], "should": [2, 3, 5, 8, 9, 20, 23, 24, 27, 31, 32, 33, 34, 35, 39, 41], "same": [2, 8, 9, 22, 23, 24, 25, 31, 33, 34, 36, 37, 38], "also": [2, 5, 8, 10, 12, 22, 23, 24, 31, 33, 34, 35, 37, 38], "uninstal": [2, 23, 24, 31, 33, 34, 38], "function": [2, 3, 19, 22, 23, 24, 25, 27, 31, 33, 34, 35, 36, 37, 38], "reinstal": [2, 23, 24, 31, 33, 34, 38], "7": [2, 3, 4, 8, 12, 14, 15, 17, 23, 24, 27, 31, 32, 33, 34, 35, 38], "incompat": 2, "v1": [2, 7, 8, 14, 19], "pyyaml": [2, 29], "11": [2, 9, 20, 32, 40], "task": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "build": [2, 9, 10, 14, 20, 32, 38, 40], "present": [2, 3, 5, 8, 10, 14, 18, 19, 22, 25, 27, 29, 33, 35, 37], "imag": [2, 7, 8, 9, 10, 20, 26, 29, 30, 35, 40, 41], "prior": [2, 8, 22, 35], "pull": [2, 8, 11, 12, 14, 16, 17, 18, 38, 40, 41], "rebuilt": [2, 35], "dockerfil": [2, 8, 11, 14, 35, 38], "content": [2, 5, 29, 33], "nocach": [2, 11, 14], "ignor": [2, 8, 9, 15, 16, 20, 23, 24, 32, 41], "cach": [2, 8, 10, 11, 14, 26], "recreat": [2, 3, 8, 22, 27, 35, 37], "unless": [2, 3, 8, 10, 27, 31, 39, 41], "never": [2, 11, 29, 37, 38], "describ": [2, 35], "network": [2, 8, 9, 10, 11, 14, 26, 35, 40], "volum": [2, 7, 8, 10, 12, 26, 31, 35, 40], "mutual": [2, 3, 5, 9, 20, 27, 32], "exclus": [2, 3, 5, 9, 20, 27, 32], "project_src": 2, "depend": [2, 8, 10, 14, 23, 24, 31, 33], "connect": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 39], "env_fil": [2, 8, 35], "9": [2, 8, 12, 35, 41], "By": [2, 8, 9, 10, 20, 22, 32], "load": [2, 8, 14, 17, 40], "locat": 2, "under": [2, 28, 38], "custom": [2, 8, 19, 22, 35], "rel": [2, 8, 11, 14], "greater": 2, "28": [2, 35], "rather": [2, 8], "than": [2, 8, 18, 20, 23, 24, 26, 29, 35], "element": [2, 6, 8, 9, 10, 11, 12, 13, 14, 17, 18, 20, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 35], "merg": [2, 9, 20, 24, 32, 39], "given": [2, 8, 9, 13, 20, 32, 33], "hostname_check": 2, "hostnam": [2, 7, 8, 11, 12, 14, 22, 23, 24, 35, 38], "against": [2, 9], "dure": [2, 8, 9, 14, 25, 35], "process": [2, 8, 14, 35], "profil": 2, "enabl": [2, 8, 14, 22, 25], "equival": [2, 8], "project_nam": 2, "project": [2, 40], "taken": [2, 8], "basenam": 2, "differ": [2, 5, 8, 10, 22, 29, 31, 33, 37], "leav": [2, 8, 22, 33, 38], "unchang": [2, 24, 35], "forc": [2, 3, 5, 8, 14, 17, 19, 22, 27, 33, 35, 37], "all": [2, 5, 8, 9, 10, 12, 13, 14, 17, 20, 22, 23, 24, 29, 32, 33, 35, 38, 40], "smart": 2, "remove_imag": 2, "absent": [2, 3, 7, 8, 14, 19, 21, 22, 25, 27, 29, 33, 35, 37], "remove_orphan": 2, "remove_volum": 2, "data": [2, 3, 5, 6, 8, 12, 27, 33, 35, 37], "restart": [2, 8, 35], "pair": [2, 8, 11, 14, 35], "count": [2, 8], "resp": [2, 19], "stop": [2, 8, 9, 35, 38], "subset": [2, 10, 22, 31], "which": [2, 3, 6, 8, 9, 10, 14, 16, 19, 20, 27, 31, 32, 33, 35, 38], "oper": [2, 14, 22, 24, 25, 33, 35, 37, 38], "newer": [2, 3, 8, 23, 24, 27, 31, 32, 33, 34, 35, 40], "lead": [2, 3, 9, 20, 23, 24, 27, 31, 32, 33, 34, 35], "error": [2, 3, 6, 9, 10, 20, 23, 24, 27, 30, 31, 32, 33, 34, 35], "desir": [2, 8, 33], "down": 2, "17": 2, "first": [2, 3, 8, 9, 27, 35], "suppos": 2, "creat": [2, 3, 8, 9, 12, 14, 20, 21, 22, 26, 27, 32, 33, 35, 37, 38], "attach": [2, 8, 21, 22, 39, 41], "alreadi": [2, 8, 11, 14, 18, 22, 24, 25, 33, 37], "default_grace_period": 2, "particular": [2, 10], "suddenli": 2, "later": [2, 3, 27, 38], "action_group": [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "group": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 40], "module_default": [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37], "none": [2, 3, 6, 7, 8, 11, 13, 14, 16, 19, 21, 24, 26, 27, 29, 33, 34, 35, 36], "addit": [2, 3, 5, 8, 23, 24, 27, 31, 32, 33, 34, 35], "packag": [2, 3, 23, 24, 27, 31, 33, 34, 35, 38], "done": [2, 3, 14, 23, 24, 27, 31, 33, 34, 35], "pip": [2, 3, 23, 24, 27, 31, 33, 34, 35, 38], "allow": [2, 3, 4, 8, 10, 14, 18, 19, 23, 24, 25, 27, 31, 33, 34, 35, 38, 40, 41], "veri": [2, 3, 8, 23, 24, 27, 31, 33, 34, 35], "few": [2, 3, 23, 24, 27, 31, 33, 34, 35, 38], "In": [2, 3, 8, 23, 24, 27, 31, 33, 34, 35], "gener": [2, 3, 8, 9, 20, 23, 24, 27, 31, 32, 33, 34, 35, 38, 40], "home": [2, 3, 5, 11, 14, 23, 24, 27, 31, 33, 34, 35], "config": [2, 7, 8, 12, 14, 19, 21, 22, 23, 24, 27, 31, 33, 34, 35, 38, 40], "json": [2, 3, 8, 14, 19, 20, 23, 24, 27, 31, 33, 34, 35], "docker_config": [2, 23, 24, 27, 31, 33, 34, 35, 38, 40], "otherwis": [2, 3, 5, 8, 9, 20, 23, 24, 27, 31, 32, 33, 34, 35], "django": 2, "follow": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41], "flask": 2, "gather_fact": 2, "tear": 2, "show": [2, 10, 28, 30, 31, 35], "result": [2, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 28, 30, 31, 34, 36, 37, 38], "again": [2, 3, 8, 27], "assert": [2, 8, 12, 14, 35], "web": [2, 29, 35], "db": [2, 8], "flask_web_1": 2, "flask_db_1": 2, "two": [2, 3, 8, 18, 27], "instanc": 2, "v2": 2, "postgr": [2, 8], "playbook_dir": 2, "runserv": 2, "8000": [2, 8], "port": [2, 8, 9, 11, 14, 15, 16, 17, 18, 30, 32, 33, 35], "depends_on": 2, "common": [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "document": [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39], "field": [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "uniqu": [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "complex": 2, "service_nam": 2, "short_id": 2, "short": [2, 7, 8, 9, 21], "built_imag": 2, "built": [2, 14], "hash": [2, 3, 8, 11, 14, 15, 16, 17, 18, 27], "pulled_imag": 2, "map": [2, 3, 8, 9, 11, 14, 20, 22, 27, 32, 35], "success": [2, 3, 5, 6, 8, 10, 11, 13, 14, 15, 16, 17, 18, 22, 24, 25, 27, 31, 33, 36, 37], "container_nam": [2, 8], "format": [2, 8, 9, 11, 12, 14, 15, 16, 17, 18, 32, 33, 35], "project_service_": 2, "cmd": [2, 7, 8, 12, 35], "One": [2, 3, 5, 9, 27, 38], "sampl": [2, 3, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37], "label": [2, 3, 7, 8, 10, 11, 12, 14, 21, 22, 24, 27, 32, 33, 35, 36, 37], "meta": [2, 3, 27], "assign": [2, 3, 8, 9, 24, 27, 35], "null": [2, 7, 8, 12, 21, 35, 36], "member": 2, "globalipv6": 2, "ipv6": [2, 8, 22], "address": [2, 8, 9, 11, 14, 22, 33, 35], "globalipv6prefixlen": 2, "subnet": [2, 21, 22, 33], "length": [2, 8, 12, 33], "ipaddress": 2, "ip": [2, 8, 9, 11, 14, 22, 35], "172": [2, 8, 22, 32], "ipprefixlen": 2, "bit": 2, "16": [2, 8, 32], "macaddress": 2, "mac": [2, 8, 22], "virtual": 2, "nic": 2, "02": 2, "42": 2, "ac": 2, "00": [2, 21, 36], "regard": 2, "disposit": 2, "chri": [2, 3, 8, 12, 14, 19, 22, 27], "houseknecht": [2, 3, 8, 12, 14, 19, 22, 27], "chouseknecht": [2, 3, 8, 12, 14, 19, 22, 27], "swarm": [3, 22, 27, 29, 30, 40], "similar": [3, 5, 7, 19, 21, 27, 38], "rm": [3, 14, 27], "add": [3, 6, 8, 9, 11, 14, 19, 20, 22, 24, 27, 29, 32, 33, 35, 38], "metadata": [3, 8, 9, 20, 24, 27, 32, 33], "ansible_kei": [3, 27], "represent": [3, 27], "futur": [3, 14, 19, 27], "test": [3, 8, 21, 27, 35, 36], "30": [3, 8, 33, 35], "data_src": [3, 27], "data_is_b64": [3, 27], "assum": [3, 5, 8, 14, 15, 27], "base64": [3, 5, 27], "encod": [3, 5, 27], "decod": [3, 5, 27], "being": [3, 5, 14, 27, 33], "binari": [3, 5, 27], "better": [3, 5, 27], "keep": [3, 5, 8, 18, 27, 33, 41], "let": [3, 5, 27], "even": [3, 8, 22, 25, 27, 33, 35], "rolling_vers": [3, 27], "increas": [3, 27], "append": [3, 6, 11, 14, 15, 16, 17, 18, 22, 27], "contain": [3, 10, 11, 12, 14, 15, 16, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 35, 39, 40], "ansible_vers": [3, 27], "template_driv": 3, "golang": 3, "go": [3, 38], "templat": [3, 6, 8], "versions_to_keep": [3, 27], "old": [3, 4, 8, 27, 35, 38], "extran": [3, 27], "delet": [3, 17, 22, 25, 26, 27, 29, 37], "after": [3, 8, 9, 14, 20, 24, 27, 29, 32, 33, 35], "everyth": [3, 5, 26, 27], "foo": [3, 6, 8, 9, 27, 35], "becaus": [3, 8, 9, 20, 27, 32, 33], "re": [3, 8, 19, 22, 27], "prevent": [3, 6, 8, 27], "happen": [3, 8, 27, 38], "lookup": [3, 8, 27], "b64encod": [3, 27], "goodnight": [3, 27], "everyon": [3, 27], "bar": [3, 8, 27, 35], "baz": [3, 27], "No": [3, 27], "though": [3, 14, 27], "miss": [3, 8, 27], "monkei": [3, 27], "creation": [3, 8, 22, 27, 35], "config_id": [3, 35], "object": [3, 5, 20, 27, 31, 40], "hzehrmyjigmcp2gb6nlhmjqcv": [3, 27], "config_nam": [3, 35], "awesome_config": 3, "john": 3, "hu": 3, "ushuz": 3, "prefer": [4, 8, 14, 15, 35], "docker_api": [4, 9, 38, 39, 40], "docker_extra_arg": 4, "extra": [4, 9, 11, 14, 20, 32, 39], "pass": [4, 6, 8, 9, 33, 35, 38], "line": [4, 6, 8, 38], "extra_cli_arg": 4, "ansible_docker_extra_arg": 4, "too": 4, "itself": [4, 8, 38, 41], "lorin": 4, "hochestein": 4, "leendert": 4, "brouwer": 4, "cp": [5, 38], "must": [5, 6, 8, 14, 15, 16, 23, 24, 31, 33, 34, 35, 38], "owner_id": 5, "group_id": 5, "necessari": 5, "bin": [5, 6, 7, 8, 12], "sh": [5, 12], "shell": [5, 8, 35], "correspond": [5, 8, 10, 14, 33, 35], "container_path": 5, "absolut": 5, "plan": 5, "pre": 5, "content_is_b64": 5, "risk": 5, "interpret": [5, 38], "utf": 5, "corrupt": 5, "flag": [5, 31], "filesystem": [5, 8, 35], "write": [5, 8], "idempot": [5, 8, 33], "destin": [5, 8], "try": [5, 8, 14, 15, 22, 29], "match": [5, 7, 8, 10, 14, 15, 17, 21, 23, 31, 34, 35], "download": [5, 11, 14], "compar": [5, 8, 38], "upload": 5, "disk": [5, 10, 26], "avail": [5, 8, 9, 14, 20, 24, 31, 32, 35, 38, 39], "local_follow": 5, "tree": 5, "system": [5, 8, 10], "owner": [5, 8, 35], "manag": [5, 29, 31, 32, 35, 40], "transfer": 5, "comput": 5, "max_file_size_for_diff": 5, "larg": [5, 22, 25, 36, 37], "mydata": [5, 7, 8, 21, 36], "txt": [5, 35], "input": [5, 9, 20, 32], "runm": 5, "o": [5, 8, 9, 11, 12, 14, 20, 32], "root": [5, 6, 8, 35, 39, 41], "0o755": 5, "readabl": [5, 8], "writabl": 5, "actual": [5, 24, 35], "argv": 6, "quot": [6, 8, 35], "exactli": 6, "chdir": 6, "detach": [6, 8], "synchron": [6, 38], "asynchron": 6, "stdin": [6, 8], "cannot": [6, 8, 10, 11, 20, 22], "stdout": [6, 14], "stderr": 6, "rc": 6, "respect": [6, 19], "pars": [6, 8, 35], "parser": [6, 8, 35], "avoid": [6, 8, 35, 38], "loss": [6, 8, 35], "jinja2": [6, 8, 9, 20, 32], "convert": [6, 8, 9, 11, 14, 32], "back": [6, 8, 35], "correct": [6, 8, 38], "wai": [6, 8, 9, 14, 41], "stdin_add_newlin": 6, "newlin": 6, "strip_empty_end": 6, "strip": 6, "end": [6, 9, 20, 32], "tty": [6, 7, 8, 12, 35], "alloc": [6, 8, 35], "simpl": 6, "bash": 6, "c": [6, 12], "l": [6, 10, 31], "lah": 6, "dev": [6, 8, 11, 14, 37], "stderr_lin": 6, "exec_id": 6, "249d9e3075655baf705ed8f40488c5e9434049cf3431976f1bfdb73741c574c5": 6, "exit": [6, 8, 35], "standard": [6, 20], "essenti": [7, 10, 21, 23, 34, 38], "inspect": [7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 21, 22, 23, 25, 34, 36, 37, 38, 40], "docker_contain": [7, 22, 38, 39, 40], "mai": [7, 8, 21, 29, 32, 35], "info": [7, 10, 21, 23, 28, 30, 31, 34, 36], "els": [7, 21, 36], "repres": [7, 8, 10, 21, 23, 31, 34, 35], "apparmorprofil": [7, 8], "arg": [7, 8, 11, 14, 35], "attachstderr": [7, 8, 12], "attachstdin": [7, 8, 12], "attachstdout": [7, 8, 12], "usr": [7, 8, 12], "supervisord": [7, 8], "domainnam": [7, 8, 12], "entrypoint": [7, 8, 12], "sbin": [7, 8, 12], "exposedport": [7, 8, 12], "443": [7, 8], "80": [7, 8], "8e47bf643eb9": [7, 8], "lnmp_nginx": [7, 8], "onbuild": [7, 8, 12], "openstdin": [7, 8, 12], "stdinonc": [7, 8, 12], "tmp": [7, 8, 19, 35], "lnmp": [7, 8], "nginx": [7, 8, 14, 29, 35], "site": [7, 8], "log": [7, 8, 14, 33, 35, 38, 40], "life": 8, "cycl": 8, "view": 8, "auto_remov": 8, "side": [8, 33], "container_default_behavior": 8, "compat": [8, 9, 38], "blkio_weight": 8, "block": [8, 22], "io": [8, 19], "weight": [8, 14], "between": [8, 29, 33, 35, 38], "1000": 8, "cap_drop": [8, 35], "capabl": [8, 35], "drop": [8, 35], "cap": 8, "compos": [8, 9, 20, 29, 32, 40], "cap_add": [8, 35], "cgroup_par": 8, "parent": [8, 9, 12, 17, 20, 32], "cgroup": 8, "cgroupns_mod": 8, "namespac": [8, 28, 41], "simpli": 8, "cgroupn": 8, "privat": [8, 14, 19, 35, 38], "cleanup": 8, "either": [8, 14, 23, 33, 35], "were": [8, 14, 17], "split": 8, "comma": 8, "command_handl": 8, "handl": 8, "behavior": [8, 11, 18], "consid": [8, 11, 14, 22, 26, 33], "rule": 8, "relat": 8, "until": [8, 10, 26, 29], "kept": [8, 18], "correctli": [8, 22], "comparison": 8, "properti": 8, "decid": 8, "strict": [8, 9, 20, 32], "allow_more_pres": 8, "equal": [8, 35], "dict": [8, 10, 31, 35], "wildcard": 8, "explicitli": 8, "variou": [8, 40], "problem": 8, "now": 8, "no_default": 8, "restor": 8, "ensur": [8, 12, 20, 22], "affect": [8, 11, 14, 15, 16, 17, 18, 22, 25, 36, 37], "init": [8, 33, 35, 41], "memori": [8, 14, 35], "paus": [8, 24, 35], "privileg": [8, 41], "read_onli": [8, 35], "cpu_period": 8, "limit": [8, 14, 35], "cpu": [8, 14, 35], "cf": 8, "complet": [8, 24, 29], "fair": 8, "schedul": 8, "period": [8, 35], "easier": 8, "altern": [8, 9, 11, 14], "cpu_quota": 8, "quota": 8, "cpu_shar": 8, "share": [8, 14, 35], "float": [8, 35], "much": 8, "resourc": [8, 29, 35], "mean": [8, 14, 22], "most": [8, 38], "half": 8, "cpuset_cpu": 8, "cpuset_mem": 8, "mem": 8, "default_host_ip": 8, "ipv4": [8, 22], "With": [8, 20, 22], "20": [8, 21], "bind": [8, 35], "explicit": [8, 9], "70": 8, "bridg": [8, 21, 22], "host_binding_ipv4": 8, "fall": 8, "background": 8, "disabl": [8, 25, 35], "reflect": 8, "fail": [8, 10, 22, 23, 24, 29, 31, 33, 34, 35], "device_read_bp": 8, "devic": [8, 37], "rate": 8, "byte": [8, 11, 14, 26, 35], "per": [8, 20, 32, 35], "unit": [8, 11, 14, 35], "posit": [8, 11, 14, 35], "b": [8, 11, 14, 35], "k": [8, 11, 14, 35], "kibibyt": [8, 11, 14, 35], "1024b": [8, 11, 14, 35], "m": [8, 11, 14, 35], "mebibyt": [8, 11, 14, 35], "g": [8, 11, 14, 35], "gibibyt": [8, 11, 14, 35], "t": [8, 11, 14, 35], "tebibyt": [8, 11, 14, 35], "p": [8, 11, 14, 31, 35], "pebibyt": [8, 11, 14, 35], "omit": [8, 9, 11, 14, 20, 32, 33, 35], "device_read_iop": 8, "device_request": 8, "gpu": 8, "top": [8, 9], "level": [8, 9], "combin": [8, 15, 24, 33], "OR": 8, "everi": [8, 38], "AND": 8, "driver": [8, 20, 21, 22, 35, 36, 37], "tri": 8, "satisfi": 8, "sub": [8, 35], "nvidia": 8, "found": [8, 14, 17, 19, 38], "runtim": 8, "device_id": 8, "specif": [8, 14, 15, 22, 28, 37, 38], "device_write_bp": 8, "device_write_iop": 8, "express": [8, 9, 20, 32], "path_on_host": 8, "path_in_contain": 8, "cgroup_permiss": 8, "dns_opt": 8, "dn": [8, 35], "dns_search_domain": 8, "search": [8, 11, 35], "domain": [8, 35], "dns_server": 8, "overwrit": [8, 14, 18], "etc_host": [8, 11, 14], "etc": [8, 11, 12, 14, 22, 35], "exposed_port": 8, "expos": [8, 35], "listen": [8, 33], "force_kil": 8, "forcekil": 8, "kill": [8, 35], "healthcheck": [8, 35], "healthi": [8, 35], "instruct": [8, 11, 14, 35], "interv": [8, 29, 35], "start_period": [8, 35], "durat": [8, 35], "accept": [8, 20, 35], "look": [8, 35], "5h34m56": [8, 35], "1m30": [8, 35], "so": [8, 9, 22, 35, 38], "u": [8, 29, 35], "h": [8, 35], "retri": [8, 29, 35], "consecut": [8, 29, 35], "failur": [8, 35], "unhealthi": [8, 35], "initi": [8, 35], "health": [8, 35], "countdown": [8, 35], "item": [8, 9, 20, 32, 35], "ignore_imag": 8, "evalu": [8, 35], "registri": [8, 11, 12, 13, 14, 17, 18, 29, 35, 38, 40], "warn": [8, 20], "deprec": [8, 38], "tag": [8, 11, 12, 13, 14, 15, 16, 17, 20, 35, 38, 40], "image_comparison": 8, "via": [8, 22, 24, 26, 32, 35], "yet": 8, "image_label_mismatch": 8, "inherit": 8, "while": [8, 35, 41], "introduc": 8, "unexpect": 8, "base": [8, 9, 20, 29, 32], "image_name_mismatch": 8, "still": [8, 9, 20, 29, 32, 35, 38, 41], "reason": 8, "emit": 8, "would": 8, "make": [8, 9, 12, 14, 20, 22, 32, 33, 35, 37, 38], "forward": [8, 35], "signal": [8, 35], "reap": [8, 35], "open": 8, "launch": [8, 38, 41], "ipc_mod": 8, "ipc": 8, "reus": 8, "anoth": [8, 18], "within": 8, "keep_volum": 8, "retain": 8, "anonym": 8, "associ": [8, 19, 30], "kernel_memori": 8, "kernel": 8, "minimum": 8, "4m": 8, "kill_sign": 8, "alia": [8, 25], "log_driv": [8, 35], "possibl": [8, 9, 10, 14, 20, 26, 31, 32, 33], "log_opt": 8, "chosen": 8, "engin": [8, 10, 31, 35, 37], "admin": 8, "overview": 8, "effect": [8, 29, 33], "mac_address": 8, "92": 8, "d0": 8, "c6": 8, "0a": 8, "29": [8, 35], "33": 8, "memory_reserv": 8, "soft": 8, "memory_swap": 8, "total": [8, 14], "swap": [8, 14], "unlimit": [8, 14], "memory_swappi": 8, "tune": 8, "swappi": 8, "100": 8, "remain": [8, 24], "mount": [8, 35], "power": 8, "consist": 8, "deleg": 8, "no_copi": [8, 35], "popul": 8, "propag": [8, 35], "rprivat": [8, 35], "rshare": [8, 35], "slave": [8, 35], "rslave": [8, 35], "suppli": 8, "tmpfs_mode": [8, 35], "permiss": 8, "tmpf": [8, 35], "tmpfs_size": [8, 35], "size": [8, 11, 12, 14, 20, 35], "npipe": [8, 35], "volume_driv": 8, "volume_opt": 8, "network_mod": 8, "network_nam": [8, 22], "networks_cli_compat": 8, "least": 8, "belong": [8, 9, 14], "structur": 8, "enforc": 8, "mention": 8, "These": [8, 9, 40], "reach": 8, "ipv4_address": 8, "ipv6_address": 8, "behav": [8, 20], "afterward": 8, "oom_kil": 8, "oom": 8, "killer": 8, "oom_score_adj": 8, "score": 8, "output_log": 8, "journald": 8, "pid_mod": 8, "pid": [8, 39, 41], "pids_limit": 8, "platform": [8, 11, 14, 15, 29, 32], "arch": [8, 11, 14, 32], "variant": [8, 11, 14], "normal": 8, "similarli": 8, "notic": 8, "accident": 8, "due": 8, "give": 8, "extend": [8, 31], "publish_all_port": 8, "publish": [8, 35], "published_port": [8, 35], "intact": 8, "syntax": 8, "9000": 8, "interfac": [8, 9, 33], "rang": [8, 22], "shorter": 8, "free": 8, "util": [8, 38], "dig": 8, "resolv": [8, 29, 35], "bound": 8, "point": 8, "earlier": 8, "purge_network": 8, "sure": [8, 12, 14, 22, 33, 37, 38], "removal_wait_timeout": 8, "usual": [8, 14], "fast": 8, "howev": 8, "mani": 8, "phase": 8, "restart_polici": [8, 35], "polici": [8, 35], "place": 8, "around": [8, 33], "restart_retri": 8, "security_opt": 8, "form": [8, 33], "shm_size": [8, 11, 14], "shm": [8, 11, 14], "entir": [8, 11, 14], "64m": [8, 11, 14], "move": 8, "account": [8, 19, 35], "stop_sign": [8, 35], "stop_timeout": 8, "sigkil": 8, "its": [8, 24, 35], "stoptimeout": 8, "storage_opt": 8, "storag": 8, "sysctl": 8, "pseudo": [8, 35], "ulimit": 8, "nofil": 8, "262144": 8, "usernam": [8, 19, 35], "uid": [8, 35], "groupnam": 8, "gid": [8, 35], "userns_mod": 8, "ut": 8, "style": 8, "separ": [8, 9, 20, 32], "ro": 8, "rw": 8, "nocopi": 8, "selinux": 8, "addition": 8, "z": 8, "volumes_from": 8, "working_dir": [8, 35], "partial": [8, 14, 15], "destroi": [8, 38], "downtim": 8, "except": [8, 22, 32], "therefor": 8, "relev": 8, "busybox": [8, 30], "redi": 8, "myredi": 8, "appendonli": 8, "ye": [8, 9, 20, 32], "6379": 8, "myapplic": 8, "someus": 8, "appimag": 8, "aliasedredi": 8, "sda": 8, "xvda": 8, "rwm": 8, "8080": [8, 14], "udp": [8, 35], "9001": 8, "8081": 8, "127": [8, 9, 35], "9002": 8, "random": 8, "9003": 8, "8100": 8, "select": [8, 9, 10, 12, 14, 15, 16, 22, 24, 26, 31], "9010": 8, "9020": 8, "7000": 8, "7010": 8, "secret_kei": 8, "ssssh": 8, "boolean_kei": 8, "mycontain": 8, "ubuntu": [8, 35], "14": [8, 35], "04": [8, 35], "sleep": [8, 35], "infin": 8, "balanc": 8, "anotherappimag": 8, "1d": 8, "with_sequ": 8, "ohno": 8, "syslog": 8, "myservic": [8, 31, 34, 35], "my": [8, 9, 32], "514": 8, "facil": 8, "13": [8, 9, 35], "renam": [8, 35], "db_test": 8, "docker_network_nam": 8, "sleeper": 8, "testingnet": 8, "sleepyzz": 8, "testingnet2": 8, "sleepi": 8, "18": 8, "sleepyz": 8, "zzzz": 8, "agent": [8, 29, 33], "jenkinsci": 8, "jenkin": 8, "sys_tim": 8, "finer": 8, "arg1": 8, "arg2": 8, "whatev": [8, 14, 15], "precis": 8, "ok": 8, "ii": 8, "healthstatu": 8, "proxi": [8, 14], "curl": [8, 35], "ing": [8, 35], "22": [8, 9], "1700": 8, "16g": 8, "20m": [8, 35], "sdb": 8, "300": 8, "some": 8, "3a23c669": 8, "1f69": 8, "c64e": 8, "cf85": 8, "44e9b07e7a2a": 8, "condit": [8, 9, 20, 32, 35], "12": [8, 9, 11, 18, 20, 21, 25, 32, 36], "mb": 8, "backend": 8, "fabianle": 8, "org": 8, "2020": 8, "01": [8, 36], "15": [8, 12], "overlay2": 8, "xf": 8, "rootf": 8, "12m": 8, "fact": [8, 9, 20, 32, 35, 40], "zero": 8, "cove": 8, "schneider": 8, "joshua": 8, "conner": 8, "joshuaconn": 8, "pavel": [8, 14], "antonov": [8, 14], "softzilla": [8, 14], "thoma": 8, "steinbach": 8, "thomassteinbach": 8, "philipp": 8, "jandot": 8, "zfil": 8, "daan": 8, "oosterveld": 8, "dusdanig": 8, "kassian": 8, "sun": 8, "kassiansun": 8, "add_legacy_group": 9, "letter": 9, "image_": 9, "stack_": 9, "stack": [9, 35, 40], "service_": 9, "multipl": [9, 12, 13, 23, 38], "configure_docker_daemon": 9, "connection_typ": 9, "default_ip": 9, "private_ssh_port": 9, "keyed_group": [9, 20, 32], "default_valu": [9, 20, 32], "trailing_separ": [9, 20, 32], "parent_group": [9, 20, 32], "prefix": [9, 20, 32], "_": [9, 20, 32], "leading_separ": [9, 20, 32], "conjunct": [9, 20, 32], "underscor": [9, 20, 32], "concaten": [9, 20, 32], "recogn": [9, 32], "own": [9, 32], "invalid": [9, 20, 32], "fatal": [9, 20, 32], "skip": [9, 20, 32], "continu": [9, 20, 32, 35], "those": [9, 20, 24, 32], "use_extra_var": [9, 20, 32], "composit": [9, 20, 32, 39], "highest": [9, 20, 32, 39], "inventory_plugin": [9, 20, 32], "ansible_inventory_use_extra_var": [9, 20, 32, 39], "verbose_output": [9, 10, 20, 31, 32], "toggl": [9, 32], "transform": 9, "docker_xxx": 9, "hostconfig": 9, "docker_hostconfig": 9, "minim": [9, 20, 32], "2375": [9, 32], "unverifi": [9, 32], "somewher": [9, 32], "construct": [9, 20, 32], "primari": 9, "network_foo": 9, "networkmod": 9, "linux": [9, 12, 32], "os_linux": [9, 32], "docker_platform": 9, "fallback": 9, "export": 9, "ansible_ssh_host": 9, "ansible_ssh_port": 9, "docker_nam": 9, "queri": [10, 23, 29, 38], "contact": 10, "meet": 10, "containers_al": 10, "containers_filt": [10, 26], "filter": [10, 26, 31], "24h": [10, 26], "disk_usag": 10, "summari": 10, "space": [10, 26], "layer": 10, "sum": 10, "images_filt": [10, 26], "dangl": [10, 26], "networks_filt": [10, 26], "verbos": [10, 31], "method": [10, 31], "your": [10, 19, 22, 31, 33, 38], "volumes_filt": [10, 26], "mylabel": [10, 35], "key1": [10, 22, 24], "value1": [10, 22], "key2": [10, 22, 24], "value2": [10, 22], "host_info": 10, "can_talk_to_dock": [10, 31], "talk": [10, 31, 38], "basic": [10, 31], "piotr": [10, 23, 24, 31, 33, 35], "wojciechowski": [10, 23, 24, 31, 33, 35], "wojciechowskipiotr": [10, 23, 24, 31, 33, 35], "allo": 11, "buildkit": [11, 14], "direct": [11, 14], "conveni": [11, 14], "cache_from": [11, 14], "cli_context": 11, "context": [11, 14, 38], "docker_cli": 11, "registry_serv": [11, 14, 15, 16, 17, 18], "push": [11, 13, 14, 17, 18, 38, 40], "tag_nam": [11, 14, 15, 16, 17, 18], "digest": [11, 15, 16, 17, 29, 35], "rebuild": 11, "intermedi": [11, 14], "stage": [11, 14], "final": [11, 14], "program": [11, 41], "docker_image_push": [11, 13, 14, 18, 40], "docker_image_tag": [11, 13, 14, 15, 16, 17, 40], "arrai": 12, "appear": 12, "docker_imag": [12, 38, 40], "docker_image_fact": 12, "singl": [12, 22, 38], "pacur": [12, 14, 15, 17], "cento": [12, 14, 15, 17], "sinatra": [12, 14], "architectur": [12, 32], "amd64": [12, 14, 15], "5000": [12, 14, 16, 18, 19], "e5c68db50333": 12, "c72dce2618dc8f7b794d2b2c2b1e64e0205ead5befc294f8111da23bd6a2c799": 12, "lib": [12, 36], "workingdir": 12, "e83a452b8fb89d78a25a6739457050131ca5c863629a47639530d9ad2008d610": 12, "containerconfig": 12, "nop": 12, "2016": 12, "03": 12, "08t21": 12, "08": 12, "399680378z": 12, "dockervers": 12, "graphdriv": 12, "auf": 12, "53773d8552f07b730f3e19979e32499519807d67b344141d965463a950a66e08": 12, "f0b1f729f784b755e7bf9c8c2e65d8a0a35a533769c2588f02895f6781ac0805": 12, "repodigest": 12, "repotag": 12, "virtuals": 12, "165808884": 12, "tar": [13, 14], "docker_image_remov": [13, 14, 15, 16, 18, 40], "image_nam": 13, "join": [13, 33, 38], "hello": 13, "world": 13, "sha256": [13, 35], "e004c2cc521c95383aebb1fb5893719aa7a8eae2e7a71f316a4410784edb00a9": 13, "archiv": [14, 17, 40], "archive_path": 14, "container_limit": 14, "appli": [14, 24, 29, 33, 35], "cpusetcpu": 14, "cpushar": 14, "memswap": 14, "neither": [14, 38], "http_timeout": 14, "use_config_proxi": 14, "force_abs": 14, "un": [14, 17], "force_sourc": 14, "force_tag": 14, "load_path": 14, "ask": [14, 15, 20], "minor": 14, "releas": 14, "hub": [14, 38], "retriev": [14, 28, 30, 33, 38, 40], "about": [14, 22, 24, 28, 33, 38, 40], "buildx": [14, 40], "docker_image_build": [14, 40], "docker_image_info": [14, 38, 40], "docker_image_load": [14, 17, 38, 40], "docker_image_pul": [14, 16, 17, 40], "56": 14, "dcoppenhagan": 14, "myimag": 14, "As": 14, "repo": [14, 16], "my_sinatra": 14, "dir": 14, "log_volum": 14, "myapp": 14, "listen_port": 14, "alpin": [14, 35], "sorin": 14, "sbarnea": 14, "ssbarnea": 14, "not_pres": 15, "shown": 15, "unknown": 15, "prune": [17, 29, 38, 40], "untag": 17, "existing_imag": 18, "overwritten": 18, "tagged_imag": 18, "got": 18, "login": [19, 38], "credenti": 19, "store": [19, 20, 33], "config_path": 19, "dockercfg_path": 19, "password": [19, 25], "plaintext": 19, "reauthor": 19, "reauth": 19, "refresh": 19, "registry_url": 19, "index": 19, "out": [19, 35, 38], "logout": [19, 38], "dockerhub": 19, "could": 19, "rekcod": 19, "yourself": 19, "secrets3": 19, "mydockercfg": 19, "login_result": 19, "serveraddress": 19, "testus": 19, "olaf": 19, "kilian": 19, "olsaki": 19, "ansible_port": 20, "ansible_ssh_private_kei": 20, "dm_": 20, "daemon_env": 20, "silent": 20, "successfulli": 20, "token": [20, 31, 33], "running_requir": 20, "region": 20, "docker_machine_node_attribut": 20, "digitalocean": 20, "mymachin": 20, "drivernam": 20, "digit": 20, "dm_tag": 20, "behaviour": 20, "ansible_ssh_common_arg": 20, "stricthostkeycheck": 20, "ximon": 20, "eighteen": 20, "ximon18": 20, "docker_network": [21, 38, 40], "configfrom": 21, "configonli": 21, "2018": [21, 36], "07t01": 21, "47": 21, "51": 21, "250835114": 21, "06": 21, "enableipv6": 21, "ipam": [21, 22], "gatewai": [21, 22], "168": [21, 33], "96": 21, "0856968545f22026c41c2c7c3d448319d3b4a6a03a40b148b3ac4031696d1c0a": 21, "ingress": [21, 35], "intern": [21, 22], "f2700bba": 21, "scope": [21, 22, 36], "dave": [21, 22], "bendit": [21, 22], "dbendit": [21, 22], "subcommand": [22, 25, 36, 37], "increment": 22, "canon": 22, "global": [22, 35, 38], "worker": [22, 24, 32, 33], "care": 22, "reli": [22, 41], "overlai": 22, "3rd": [22, 37], "parti": [22, 37], "driver_opt": [22, 37], "consult": [22, 37], "enable_ipv6": 22, "disconnect": 22, "restrict": 22, "extern": [22, 33, 35], "ipam_config": 22, "iprang": 22, "spell": 22, "notat": 22, "aux_address": 22, "auxiliari": 22, "cidr": [22, 33], "ipam_driv": 22, "ipam_driver_opt": 22, "reconnect": 22, "ones": [22, 24], "fix": 22, "over": [22, 38], "loop": 22, "properli": 22, "network_on": 22, "container_a": 22, "container_b": 22, "container_c": 22, "fulllist": 22, "network_two": 22, "net2": 22, "network_thre": 22, "27": [22, 35], "24": [22, 26], "26": 22, "host1": 22, "host2": 22, "network_four": 22, "network_ipv6_on": 22, "fdd1": 22, "ac8c": 22, "0557": 22, "7ce1": 22, "64": 22, "network_ipv6_two": 22, "7ce2": 22, "ben": 22, "keith": 22, "keitwb": 22, "cluster": [23, 24, 40], "self": 23, "presenc": 23, "mynod": [23, 24, 31, 33], "mynode1": 23, "mynode2": 23, "left": 23, "unreach": 23, "role": [24, 33, 35], "activ": 24, "drain": 24, "docker_swarm": [24, 38, 39, 40], "labels_st": 24, "labels_to_remov": 24, "made": [24, 35], "thierri": [24, 33], "bouvet": [24, 33], "tbouvet": [24, 33], "enable_timeout": 25, "force_remov": 25, "plugin_nam": 25, "plugin_opt": 25, "plugin_on": 25, "weavework": 25, "net": 25, "latest_releas": 25, "ipalloc_rang": 25, "weave_password": 25, "sakar": 25, "mehra": 25, "sakar97": 25, "vladimir": 25, "porshkevich": 25, "builder_cach": 26, "builder": 26, "hour": 26, "ago": 26, "builder_cache_space_reclaim": 26, "reclaim": 26, "containers_space_reclaim": 26, "images_space_reclaim": 26, "volumes_space_reclaim": 26, "secret_id": [27, 35], "secret_nam": [27, 35], "awesome_secret": 27, "docker_stack_task_info": [28, 38, 40], "grafana": 28, "orchestr": [28, 38], "kubernet": [28, 38], "jose": [28, 30], "angel": [28, 30], "munoz": [28, 30], "imjoseangel": [28, 30], "jsondiff": 29, "absent_retri": 29, "larger": 29, "last": 29, "absent_retries_interv": 29, "nest": 29, "deploi": 29, "resolve_imag": [29, 35], "with_registry_auth": 29, "auth": 29, "mystack": 29, "opt": [29, 35], "envvar": 29, "stack_spec_diff": 29, "spec": [29, 32], "test_stack_test_servic": 29, "tasktempl": 29, "containerspec": 29, "dario": [29, 35], "zanzico": [29, 35], "dariko": [29, 35], "requir": [30, 41], "test_stack": 30, "currentst": 30, "desiredst": 30, "7wqv6m02ugkw": 30, "messag": 31, "nodes_filt": 31, "services_filt": 31, "tasks_filt": 31, "unlock_kei": 31, "unlock": [31, 33], "ignore_error": 31, "docker_swarm_act": 31, "docker_swarm_manag": 31, "swarm_fact": [31, 33], "swarm_unlock_kei": 31, "return": [32, 40], "leader": [32, 33], "nonlead": 32, "include_host_uri": 32, "attribut": 32, "ansible_host_uri": 32, "uri": 32, "modif": 32, "include_host_uri_port": 32, "time_out": 32, "enginevers": 32, "x86_64": 32, "arch_x86_64": 32, "exompl": 32, "w": 32, "label_product": 32, "hint": 32, "charact": 32, "safe": 32, "stefan": 32, "heitm\u00fcller": 32, "morph027": 32, "advertise_addr": 33, "reachabl": 33, "advertis": 33, "4567": 33, "eth0": 33, "initialis": 33, "autolock_manag": 33, "lock": 33, "docker_swarm_info": [33, 38, 40], "ca_force_rot": 33, "whose": 33, "purpos": 33, "sign": 33, "data_path_addr": 33, "traffic": 33, "data_path_port": 33, "9789": 33, "40": [33, 35], "default_addr_pool": 33, "pool": 33, "39": 33, "dispatcher_heartbeat_period": 33, "delai": [33, 35], "nanosecond": 33, "heartbeat": 33, "dispatch": 33, "5000000000": [33, 35], "election_tick": 33, "tick": 33, "trigger": [33, 35], "elect": 33, "heartbeat_tick": 33, "join_token": 33, "censor": 33, "keep_old_snapshot": 33, "snapshot": 33, "beyond": 33, "docker_nod": [33, 38, 40], "listen_addr": 33, "inter": 33, "2377": 33, "log_entries_for_slow_follow": 33, "sync": 33, "slow": 33, "node_cert_expiri": 33, "expiri": 33, "90": 33, "dai": 33, "7776000000000000": 33, "node_id": 33, "rotate_manager_token": 33, "rotat": 33, "rotate_worker_token": 33, "signing_ca_cert": 33, "leaf": 33, "signing_ca_kei": 33, "snapshot_interv": 33, "10000": 33, "demot": 33, "subnet_s": 33, "mask": 33, "task_history_retention_limit": 33, "histori": 33, "swmtkn": 33, "xxxxx": 33, "ens10": 33, "jointoken": 33, "value_specified_in_no_log_paramet": 33, "unlockkei": 33, "swmkei": 33, "xxx": 33, "hann": [34, 35], "ljungberg": [34, 35], "hannseman": [34, 35], "41": 35, "filenam": 35, "octal": 35, "0644": 35, "0444": 35, "container_label": 35, "dns_option": 35, "dns_search": 35, "endpoint_mod": 35, "endpoint": 35, "vip": 35, "dnsrr": 35, "signific": 35, "force_upd": 35, "37": 35, "replic": 35, "driver_config": 35, "copi": [35, 38, 40], "readonli": 35, "placement": 35, "constraint": 35, "pref": 35, "replicas_max_per_nod": 35, "protocol": 35, "target_port": 35, "replica": 35, "instanti": 35, "reserv": 35, "restart_config": 35, "max_attempt": 35, "rollback_config": 35, "roll": 35, "rollback": 35, "failure_act": 35, "max_failure_ratio": 35, "fraction": 35, "max": 35, "ratio": 35, "monitor": 35, "parallel": 35, "simultan": 35, "secret": [35, 38, 40], "unspecifi": 35, "stop_grace_period": 35, "grace": 35, "update_config": 35, "invok": 35, "workdir": 35, "3600": 35, "remote_tmp": 35, "webapp": 35, "depart": 35, "financ": 35, "envvar1": 35, "envvar2": 35, "app": [35, 38], "fluentd": 35, "24224": 35, "async": 35, "120": 35, "edg": 35, "spread": 35, "operatingsystem": 35, "myconfig_nam": 35, "mynetwork": 35, "mynetwork_alia": 35, "mysecret_nam": 35, "50": 35, "50m": 35, "alter": 35, "swarm_servic": 35, "ansible_swarm_servic": 35, "ansible_docker_servic": 35, "x": 35, "90000000000": 35, "30000000000": 35, "10000000000": 35, "healthcheck_dis": 35, "b3dbf31b77fd99d9c08f780ce6f5282aba076d70a513a8be859d8d3a4d0c92b8": 35, "limit_cpu": 35, "limit_memori": 35, "52428800": 35, "log_driver_opt": 35, "placement_prefer": 35, "reserve_cpu": 35, "reserve_memori": 35, "20971520": 35, "restart_policy_attempt": 35, "restart_policy_delai": 35, "restart_policy_window": 35, "120000000000": 35, "update_delai": 35, "update_failure_act": 35, "update_max_failure_ratio": 35, "update_monitor": 35, "update_ord": 35, "update_parallel": 35, "jason": 35, "witkowski": 35, "jwitko": 35, "volume_nam": [36, 37], "createdat": 36, "09t17": 36, "43": 36, "44": 36, "mountpoint": 36, "bd3f6172": 36, "_data": 36, "commandlin": 37, "volume_cr": 37, "lost": 37, "volume_on": 37, "volume_two": 37, "btrf": 37, "sda2": 37, "alex": 37, "gr\u00f6nholm": 37, "agronholm": 37, "commun": [38, 39], "collect": [38, 40], "offer": 38, "sever": 38, "python_requirements_info": 38, "note": 38, "inventori": [38, 39], "pypi": 38, "realli": 38, "broken": 38, "doubt": 38, "nor": 38, "wrap": 38, "exec": 38, "posix": 38, "dynam": [38, 40], "individu": 38, "docker_host_info": [38, 40], "docker_login": [38, 40], "docker_prun": [38, 40], "import": 38, "tarbal": 38, "docker_network_info": [38, 40], "docker_volume_info": [38, 40], "docker_volum": [38, 40], "lifecycl": 38, "abil": 38, "docker_container_copy_into": [38, 40], "docker_container_exec": [38, 40], "docker_container_info": [38, 40], "docker_plugin": [38, 40], "docker_compos": [38, 40], "next": 38, "docker_machin": [38, 39, 40], "docker_stack": [38, 40], "docker_stack_info": [38, 40], "docker_node_info": [38, 40], "docker_secret": [38, 40], "docker_swarm_servic": [38, 40], "docker_swarm_service_info": [38, 40], "bender": 38, "openshift": 38, "laptop": 38, "fulli": 38, "scalabl": 38, "cloud": 38, "moment": 38, "declar": 39, "docker": 39, "ansible_nsenter_pid": [39, 41], "nsenter": [39, 40], "fine": [39, 41], "author": 40, "matrix": 40, "room": 40, "im": 40, "question": 40, "irc": 40, "channel": 40, "libera": 40, "mail": 40, "subscrib": 40, "current_container_fact": 40, "multi": 40, "applic": 40, "model": 41, "container": 41, "enter": 41, "systemd": 41, "nsenter_pid": 41, "nsenter_connect": 41, "jeff": 41, "goldschraf": 41, "jgoldschraf": 41}, "objects": {"": [[39, 0, 1, "-", "ANSIBLE_DOCKER_TIMEOUT"], [39, 0, 1, "-", "ANSIBLE_INVENTORY_USE_EXTRA_VARS"], [39, 0, 1, "-", "ANSIBLE_NSENTER_PID"], [38, 0, 1, "-", "DOCKER_API_VERSION"], [38, 0, 1, "-", "DOCKER_CERT_PATH"], [38, 0, 1, "-", "DOCKER_HOST"], [38, 0, 1, "-", "DOCKER_SSL_VERSION"], [38, 0, 1, "-", "DOCKER_TIMEOUT"], [38, 0, 1, "-", "DOCKER_TLS"], [38, 0, 1, "-", "DOCKER_TLS_HOSTNAME"], [38, 0, 1, "-", "DOCKER_TLS_VERIFY"]]}, "objtypes": {"0": "std:envvar"}, "objnames": {"0": ["std", "envvar", "environment variable"]}, "titleterms": {"commun": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41], "docker": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41], "current_container_fact": 0, "modul": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 40], "return": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "fact": [0, 7, 10, 21, 23, 31, 36], "about": [0, 7, 10, 21, 23, 31, 34, 36], "whether": 0, "run": [0, 1, 4, 41], "contain": [0, 1, 2, 4, 5, 6, 7, 8, 9, 38, 41], "synopsi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "attribut": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "exampl": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "author": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41], "collect": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41], "link": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "docker_api": 1, "connect": [1, 4, 38, 40, 41], "task": [1, 4, 30], "requir": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38], "paramet": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41], "note": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 41], "docker_compos": 2, "manag": [2, 3, 8, 14, 22, 23, 24, 25, 27, 33, 34, 37, 38], "multi": 2, "applic": 2, "compos": [2, 38], "valu": [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37], "docker_config": 3, "config": 3, "docker_container_copy_into": 5, "copi": 5, "file": 5, "docker_container_exec": 6, "execut": [6, 41], "command": 6, "docker_container_info": 7, "retriev": [7, 10, 21, 23, 31, 34, 36], "docker_contain": [8, 9], "inventori": [9, 20, 32, 40], "ansibl": [9, 32], "dynam": [9, 32], "plugin": [9, 25, 32, 40], "docker_host_info": 10, "host": [10, 41], "list": 10, "object": [10, 26], "servic": [10, 34, 35, 38], "docker_image_build": 11, "build": 11, "imag": [11, 12, 13, 14, 15, 16, 17, 18, 38], "us": 11, "buildx": 11, "see": [11, 13, 14, 15, 16, 17, 18, 28], "also": [11, 13, 14, 15, 16, 17, 18, 28], "docker_image_info": 12, "inspect": 12, "docker_image_load": 13, "load": 13, "": 13, "from": [13, 15, 23, 34], "archiv": 13, "docker_imag": 14, "docker_image_pul": 15, "pull": 15, "registri": [15, 16, 19], "docker_image_push": 16, "push": 16, "docker_image_remov": 17, "remov": 17, "docker_image_tag": 18, "tag": 18, "new": 18, "name": 18, "docker_login": 19, "log": 19, "docker_machin": 20, "machin": [20, 38], "sourc": 20, "docker_network_info": 21, "network": [21, 22, 38], "docker_network": 22, "docker_node_info": 23, "swarm": [23, 24, 31, 32, 33, 34, 35, 38], "node": [23, 24, 32], "docker_nod": 24, "docker_plugin": 25, "docker_prun": 26, "allow": 26, "prune": 26, "variou": 26, "docker_secret": 27, "secret": 27, "docker_stack_info": 28, "inform": [28, 30, 34], "all": [28, 39], "stack": [28, 29, 30, 38], "docker_stack": 29, "docker_stack_task_info": 30, "docker_swarm_info": 31, "cluster": [31, 33], "docker_swarm": [32, 33], "docker_swarm_service_info": 34, "docker_swarm_servic": 35, "docker_volume_info": 36, "volum": [36, 37, 38], "docker_volum": 37, "guid": [38, 40], "api": 38, "environ": [38, 39], "variabl": [38, 39], "plain": 38, "daemon": 38, "configur": 38, "help": 38, "index": [39, 40], "descript": 40, "scenario": 40, "nsenter": 41, "control": 41}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"community.docker.current_container_facts module \u2013 Return facts about whether the module runs in a container": [[0, "community-docker-current-container-facts-module-return-facts-about-whether-the-module-runs-in-a-container"]], "Synopsis": [[0, "synopsis"], [1, "synopsis"], [2, "synopsis"], [3, "synopsis"], [4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [9, "synopsis"], [10, "synopsis"], [11, "synopsis"], [12, "synopsis"], [13, "synopsis"], [14, "synopsis"], [15, "synopsis"], [16, "synopsis"], [17, "synopsis"], [18, "synopsis"], [19, "synopsis"], [20, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"], [32, "synopsis"], [33, "synopsis"], [34, "synopsis"], [35, "synopsis"], [36, "synopsis"], [37, "synopsis"], [41, "synopsis"]], "Attributes": [[0, "attributes"], [2, "attributes"], [3, "attributes"], [5, "attributes"], [6, "attributes"], [7, "attributes"], [8, "attributes"], [10, "attributes"], [11, "attributes"], [12, "attributes"], [13, "attributes"], [14, "attributes"], [15, "attributes"], [16, "attributes"], [17, "attributes"], [18, "attributes"], [19, "attributes"], [21, "attributes"], [22, "attributes"], [23, "attributes"], [24, "attributes"], [25, "attributes"], [26, "attributes"], [27, "attributes"], [28, "attributes"], [29, "attributes"], [30, "attributes"], [31, "attributes"], [33, "attributes"], [34, "attributes"], [35, "attributes"], [36, "attributes"], [37, "attributes"]], "Examples": [[0, "examples"], [2, "examples"], [3, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [9, "examples"], [10, "examples"], [11, "examples"], [12, "examples"], [13, "examples"], [14, "examples"], [15, "examples"], [16, "examples"], [17, "examples"], [18, "examples"], [19, "examples"], [20, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"], [32, "examples"], [33, "examples"], [34, "examples"], [35, "examples"], [36, "examples"], [37, "examples"]], "Returned Facts": [[0, "returned-facts"]], "Authors": [[0, "authors"], [1, "authors"], [2, "authors"], [3, "authors"], [4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [9, "authors"], [10, "authors"], [11, "authors"], [12, "authors"], [13, "authors"], [14, "authors"], [15, "authors"], [16, "authors"], [17, "authors"], [18, "authors"], [19, "authors"], [20, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"], [32, "authors"], [33, "authors"], [34, "authors"], [35, "authors"], [36, "authors"], [37, "authors"], [41, "authors"]], "Collection links": [[0, "collection-links"], [1, "collection-links"], [2, "collection-links"], [3, "collection-links"], [4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [9, "collection-links"], [10, "collection-links"], [11, "collection-links"], [12, "collection-links"], [13, "collection-links"], [14, "collection-links"], [15, "collection-links"], [16, "collection-links"], [17, "collection-links"], [18, "collection-links"], [19, "collection-links"], [20, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"], [32, "collection-links"], [33, "collection-links"], [34, "collection-links"], [35, "collection-links"], [36, "collection-links"], [37, "collection-links"], [41, "collection-links"]], "community.docker.docker_api connection \u2013 Run tasks in docker containers": [[1, "community-docker-docker-api-connection-run-tasks-in-docker-containers"]], "Requirements": [[1, "requirements"], [2, "requirements"], [3, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [12, "requirements"], [13, "requirements"], [14, "requirements"], [15, "requirements"], [16, "requirements"], [17, "requirements"], [18, "requirements"], [19, "requirements"], [20, "requirements"], [21, "requirements"], [22, "requirements"], [23, "requirements"], [24, "requirements"], [25, "requirements"], [26, "requirements"], [27, "requirements"], [29, "requirements"], [31, "requirements"], [32, "requirements"], [33, "requirements"], [34, "requirements"], [35, "requirements"], [36, "requirements"], [37, "requirements"], [38, "requirements"]], "Parameters": [[1, "parameters"], [2, "parameters"], [3, "parameters"], [4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [8, "parameters"], [9, "parameters"], [10, "parameters"], [11, "parameters"], [12, "parameters"], [13, "parameters"], [14, "parameters"], [15, "parameters"], [16, "parameters"], [17, "parameters"], [18, "parameters"], [19, "parameters"], [20, "parameters"], [21, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [29, "parameters"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [33, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [37, "parameters"], [38, "parameters"], [41, "parameters"]], "Notes": [[1, "notes"], [2, "notes"], [3, "notes"], [5, "notes"], [6, "notes"], [7, "notes"], [8, "notes"], [9, "notes"], [10, "notes"], [11, "notes"], [12, "notes"], [13, "notes"], [14, "notes"], [15, "notes"], [16, "notes"], [17, "notes"], [18, "notes"], [19, "notes"], [21, "notes"], [22, "notes"], [23, "notes"], [24, "notes"], [25, "notes"], [26, "notes"], [27, "notes"], [31, "notes"], [33, "notes"], [34, "notes"], [35, "notes"], [36, "notes"], [37, "notes"], [41, "notes"]], "community.docker.docker_compose module \u2013 Manage multi-container Docker applications with Docker Compose.": [[2, "community-docker-docker-compose-module-manage-multi-container-docker-applications-with-docker-compose"]], "Return Values": [[2, "return-values"], [3, "return-values"], [5, "return-values"], [6, "return-values"], [7, "return-values"], [8, "return-values"], [10, "return-values"], [11, "return-values"], [12, "return-values"], [13, "return-values"], [14, "return-values"], [15, "return-values"], [16, "return-values"], [17, "return-values"], [18, "return-values"], [19, "return-values"], [21, "return-values"], [22, "return-values"], [23, "return-values"], [24, "return-values"], [25, "return-values"], [26, "return-values"], [27, "return-values"], [28, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [33, "return-values"], [34, "return-values"], [35, "return-values"], [36, "return-values"], [37, "return-values"]], "community.docker.docker_config module \u2013 Manage docker configs.": [[3, "community-docker-docker-config-module-manage-docker-configs"]], "community.docker.docker connection \u2013 Run tasks in docker containers": [[4, "community-docker-docker-connection-run-tasks-in-docker-containers"]], "community.docker.docker_container_copy_into module \u2013 Copy a file into a Docker container": [[5, "community-docker-docker-container-copy-into-module-copy-a-file-into-a-docker-container"]], "community.docker.docker_container_exec module \u2013 Execute command in a docker container": [[6, "community-docker-docker-container-exec-module-execute-command-in-a-docker-container"]], "community.docker.docker_container_info module \u2013 Retrieves facts about docker container": [[7, "community-docker-docker-container-info-module-retrieves-facts-about-docker-container"]], "community.docker.docker_container module \u2013 manage Docker containers": [[8, "community-docker-docker-container-module-manage-docker-containers"]], "community.docker.docker_containers inventory \u2013 Ansible dynamic inventory plugin for Docker containers": [[9, "community-docker-docker-containers-inventory-ansible-dynamic-inventory-plugin-for-docker-containers"]], "community.docker.docker_host_info module \u2013 Retrieves facts about docker host and lists of objects of the services.": [[10, "community-docker-docker-host-info-module-retrieves-facts-about-docker-host-and-lists-of-objects-of-the-services"]], "community.docker.docker_image_build module \u2013 Build Docker images using Docker buildx": [[11, "community-docker-docker-image-build-module-build-docker-images-using-docker-buildx"]], "See Also": [[11, "see-also"], [13, "see-also"], [14, "see-also"], [15, "see-also"], [16, "see-also"], [17, "see-also"], [18, "see-also"], [28, "see-also"]], "community.docker.docker_image_info module \u2013 Inspect docker images": [[12, "community-docker-docker-image-info-module-inspect-docker-images"]], "community.docker.docker_image_load module \u2013 Load docker image(s) from archives": [[13, "community-docker-docker-image-load-module-load-docker-image-s-from-archives"]], "community.docker.docker_image module \u2013 Manage docker images": [[14, "community-docker-docker-image-module-manage-docker-images"]], "community.docker.docker_image_pull module \u2013 Pull Docker images from registries": [[15, "community-docker-docker-image-pull-module-pull-docker-images-from-registries"]], "community.docker.docker_image_push module \u2013 Push Docker images to registries": [[16, "community-docker-docker-image-push-module-push-docker-images-to-registries"]], "community.docker.docker_image_remove module \u2013 Remove Docker images": [[17, "community-docker-docker-image-remove-module-remove-docker-images"]], "community.docker.docker_image_tag module \u2013 Tag Docker images with new names and/or tags": [[18, "community-docker-docker-image-tag-module-tag-docker-images-with-new-names-and-or-tags"]], "community.docker.docker_login module \u2013 Log into a Docker registry.": [[19, "community-docker-docker-login-module-log-into-a-docker-registry"]], "community.docker.docker_machine inventory \u2013 Docker Machine inventory source": [[20, "community-docker-docker-machine-inventory-docker-machine-inventory-source"]], "community.docker.docker_network_info module \u2013 Retrieves facts about docker network": [[21, "community-docker-docker-network-info-module-retrieves-facts-about-docker-network"]], "community.docker.docker_network module \u2013 Manage Docker networks": [[22, "community-docker-docker-network-module-manage-docker-networks"]], "community.docker.docker_node_info module \u2013 Retrieves facts about docker swarm node from Swarm Manager": [[23, "community-docker-docker-node-info-module-retrieves-facts-about-docker-swarm-node-from-swarm-manager"]], "community.docker.docker_node module \u2013 Manage Docker Swarm node": [[24, "community-docker-docker-node-module-manage-docker-swarm-node"]], "community.docker.docker_plugin module \u2013 Manage Docker plugins": [[25, "community-docker-docker-plugin-module-manage-docker-plugins"]], "community.docker.docker_prune module \u2013 Allows to prune various docker objects": [[26, "community-docker-docker-prune-module-allows-to-prune-various-docker-objects"]], "community.docker.docker_secret module \u2013 Manage docker secrets.": [[27, "community-docker-docker-secret-module-manage-docker-secrets"]], "community.docker.docker_stack_info module \u2013 Return information on all docker stacks": [[28, "community-docker-docker-stack-info-module-return-information-on-all-docker-stacks"]], "community.docker.docker_stack module \u2013 docker stack module": [[29, "community-docker-docker-stack-module-docker-stack-module"]], "community.docker.docker_stack_task_info module \u2013 Return information of the tasks on a docker stack": [[30, "community-docker-docker-stack-task-info-module-return-information-of-the-tasks-on-a-docker-stack"]], "community.docker.docker_swarm_info module \u2013 Retrieves facts about Docker Swarm cluster.": [[31, "community-docker-docker-swarm-info-module-retrieves-facts-about-docker-swarm-cluster"]], "community.docker.docker_swarm inventory \u2013 Ansible dynamic inventory plugin for Docker swarm nodes.": [[32, "community-docker-docker-swarm-inventory-ansible-dynamic-inventory-plugin-for-docker-swarm-nodes"]], "community.docker.docker_swarm module \u2013 Manage Swarm cluster": [[33, "community-docker-docker-swarm-module-manage-swarm-cluster"]], "community.docker.docker_swarm_service_info module \u2013 Retrieves information about docker services from a Swarm Manager": [[34, "community-docker-docker-swarm-service-info-module-retrieves-information-about-docker-services-from-a-swarm-manager"]], "community.docker.docker_swarm_service module \u2013 docker swarm service": [[35, "community-docker-docker-swarm-service-module-docker-swarm-service"]], "community.docker.docker_volume_info module \u2013 Retrieve facts about Docker volumes": [[36, "community-docker-docker-volume-info-module-retrieve-facts-about-docker-volumes"]], "community.docker.docker_volume module \u2013 Manage Docker volumes": [[37, "community-docker-docker-volume-module-manage-docker-volumes"]], "Docker Guide": [[38, "docker-guide"]], "Connecting to the Docker API": [[38, "connecting-to-the-docker-api"]], "Environment variables": [[38, "environment-variables"]], "Plain Docker daemon: images, networks, volumes, and containers": [[38, "plain-docker-daemon-images-networks-volumes-and-containers"]], "Docker Compose": [[38, "docker-compose"]], "Docker Machine": [[38, "docker-machine"]], "Docker stack": [[38, "docker-stack"]], "Docker Swarm": [[38, "docker-swarm"]], "Swarm management": [[38, "swarm-management"]], "Configuration management": [[38, "configuration-management"]], "Swarm services": [[38, "swarm-services"]], "Helpful links": [[38, "helpful-links"]], "Index of all Collection Environment Variables": [[39, "index-of-all-collection-environment-variables"]], "Community.Docker": [[40, "community-docker"]], "Description": [[40, "description"]], "Communication": [[40, "communication"]], "Scenario Guide": [[40, "scenario-guide"]], "Plugin Index": [[40, "plugin-index"]], "Modules": [[40, "modules"]], "Connection Plugins": [[40, "connection-plugins"]], "Inventory Plugins": [[40, "inventory-plugins"]], "community.docker.nsenter connection \u2013 execute on host running controller container": [[41, "community-docker-nsenter-connection-execute-on-host-running-controller-container"]]}, "indexentries": {"ansible_docker_timeout": [[1, "index-1"], [4, "index-1"], [39, "envvar-ANSIBLE_DOCKER_TIMEOUT"]], "ansible_remote_user": [[1, "index-2"], [4, "index-2"]], "ansible_timeout": [[1, "index-0"], [4, "index-0"]], "environment variable": [[1, "index-0"], [1, "index-1"], [1, "index-2"], [4, "index-0"], [4, "index-1"], [4, "index-2"], [9, "index-0"], [20, "index-0"], [32, "index-0"], [38, "envvar-DOCKER_API_VERSION"], [38, "envvar-DOCKER_CERT_PATH"], [38, "envvar-DOCKER_HOST"], [38, "envvar-DOCKER_SSL_VERSION"], [38, "envvar-DOCKER_TIMEOUT"], [38, "envvar-DOCKER_TLS"], [38, "envvar-DOCKER_TLS_HOSTNAME"], [38, "envvar-DOCKER_TLS_VERIFY"], [39, "envvar-ANSIBLE_DOCKER_TIMEOUT"], [39, "envvar-ANSIBLE_INVENTORY_USE_EXTRA_VARS"], [39, "envvar-ANSIBLE_NSENTER_PID"], [41, "index-0"]], "ansible_inventory_use_extra_vars": [[9, "index-0"], [20, "index-0"], [32, "index-0"], [39, "envvar-ANSIBLE_INVENTORY_USE_EXTRA_VARS"]], "docker_api_version": [[38, "envvar-DOCKER_API_VERSION"]], "docker_cert_path": [[38, "envvar-DOCKER_CERT_PATH"]], "docker_host": [[38, "envvar-DOCKER_HOST"]], "docker_ssl_version": [[38, "envvar-DOCKER_SSL_VERSION"]], "docker_timeout": [[38, "envvar-DOCKER_TIMEOUT"]], "docker_tls": [[38, "envvar-DOCKER_TLS"]], "docker_tls_hostname": [[38, "envvar-DOCKER_TLS_HOSTNAME"]], "docker_tls_verify": [[38, "envvar-DOCKER_TLS_VERIFY"]], "ansible_nsenter_pid": [[39, "envvar-ANSIBLE_NSENTER_PID"], [41, "index-0"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["current_container_facts_module", "docker_api_connection", "docker_compose_module", "docker_compose_v2_module", "docker_config_module", "docker_connection", "docker_container_copy_into_module", "docker_container_exec_module", "docker_container_info_module", "docker_container_module", "docker_containers_inventory", "docker_host_info_module", "docker_image_build_module", "docker_image_info_module", "docker_image_load_module", "docker_image_module", "docker_image_pull_module", "docker_image_push_module", "docker_image_remove_module", "docker_image_tag_module", "docker_login_module", "docker_machine_inventory", "docker_network_info_module", "docker_network_module", "docker_node_info_module", "docker_node_module", "docker_plugin_module", "docker_prune_module", "docker_secret_module", "docker_stack_info_module", "docker_stack_module", "docker_stack_task_info_module", "docker_swarm_info_module", "docker_swarm_inventory", "docker_swarm_module", "docker_swarm_service_info_module", "docker_swarm_service_module", "docker_volume_info_module", "docker_volume_module", "docsite/scenario_guide", "environment_variables", "index", "nsenter_connection"], "filenames": ["current_container_facts_module.rst", "docker_api_connection.rst", "docker_compose_module.rst", "docker_compose_v2_module.rst", "docker_config_module.rst", "docker_connection.rst", "docker_container_copy_into_module.rst", "docker_container_exec_module.rst", "docker_container_info_module.rst", "docker_container_module.rst", "docker_containers_inventory.rst", "docker_host_info_module.rst", "docker_image_build_module.rst", "docker_image_info_module.rst", "docker_image_load_module.rst", "docker_image_module.rst", "docker_image_pull_module.rst", "docker_image_push_module.rst", "docker_image_remove_module.rst", "docker_image_tag_module.rst", "docker_login_module.rst", "docker_machine_inventory.rst", "docker_network_info_module.rst", "docker_network_module.rst", "docker_node_info_module.rst", "docker_node_module.rst", "docker_plugin_module.rst", "docker_prune_module.rst", "docker_secret_module.rst", "docker_stack_info_module.rst", "docker_stack_module.rst", "docker_stack_task_info_module.rst", "docker_swarm_info_module.rst", "docker_swarm_inventory.rst", "docker_swarm_module.rst", "docker_swarm_service_info_module.rst", "docker_swarm_service_module.rst", "docker_volume_info_module.rst", "docker_volume_module.rst", "docsite/scenario_guide.rst", "environment_variables.rst", "index.rst", "nsenter_connection.rst"], "titles": ["community.docker.current_container_facts module \u2013 Return facts about whether the module runs in a container", "community.docker.docker_api connection \u2013 Run tasks in docker containers", "community.docker.docker_compose module \u2013 Manage multi-container Docker applications with Docker Compose V1", "community.docker.docker_compose_v2 module \u2013 Manage multi-container Docker applications with Docker Compose CLI plugin", "community.docker.docker_config module \u2013 Manage docker configs.", "community.docker.docker connection \u2013 Run tasks in docker containers", "community.docker.docker_container_copy_into module \u2013 Copy a file into a Docker container", "community.docker.docker_container_exec module \u2013 Execute command in a docker container", "community.docker.docker_container_info module \u2013 Retrieves facts about docker container", "community.docker.docker_container module \u2013 manage Docker containers", "community.docker.docker_containers inventory \u2013 Ansible dynamic inventory plugin for Docker containers", "community.docker.docker_host_info module \u2013 Retrieves facts about docker host and lists of objects of the services.", "community.docker.docker_image_build module \u2013 Build Docker images using Docker buildx", "community.docker.docker_image_info module \u2013 Inspect docker images", "community.docker.docker_image_load module \u2013 Load docker image(s) from archives", "community.docker.docker_image module \u2013 Manage docker images", "community.docker.docker_image_pull module \u2013 Pull Docker images from registries", "community.docker.docker_image_push module \u2013 Push Docker images to registries", "community.docker.docker_image_remove module \u2013 Remove Docker images", "community.docker.docker_image_tag module \u2013 Tag Docker images with new names and/or tags", "community.docker.docker_login module \u2013 Log into a Docker registry.", "community.docker.docker_machine inventory \u2013 Docker Machine inventory source", "community.docker.docker_network_info module \u2013 Retrieves facts about docker network", "community.docker.docker_network module \u2013 Manage Docker networks", "community.docker.docker_node_info module \u2013 Retrieves facts about docker swarm node from Swarm Manager", "community.docker.docker_node module \u2013 Manage Docker Swarm node", "community.docker.docker_plugin module \u2013 Manage Docker plugins", "community.docker.docker_prune module \u2013 Allows to prune various docker objects", "community.docker.docker_secret module \u2013 Manage docker secrets.", "community.docker.docker_stack_info module \u2013 Return information on all docker stacks", "community.docker.docker_stack module \u2013 docker stack module", "community.docker.docker_stack_task_info module \u2013 Return information of the tasks on a docker stack", "community.docker.docker_swarm_info module \u2013 Retrieves facts about Docker Swarm cluster.", "community.docker.docker_swarm inventory \u2013 Ansible dynamic inventory plugin for Docker swarm nodes.", "community.docker.docker_swarm module \u2013 Manage Swarm cluster", "community.docker.docker_swarm_service_info module \u2013 Retrieves information about docker services from a Swarm Manager", "community.docker.docker_swarm_service module \u2013 docker swarm service", "community.docker.docker_volume_info module \u2013 Retrieve facts about Docker volumes", "community.docker.docker_volume module \u2013 Manage Docker volumes", "Docker Guide", "Index of all Collection Environment Variables", "Community.Docker", "community.docker.nsenter connection \u2013 execute on host running controller container"], "terms": {"thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "part": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 42], "version": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "3": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "6": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "It": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "includ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "ansibl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42], "core": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42], "To": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "check": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "galaxi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 42], "list": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42], "playbook": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "specifi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 42], "new": [0, 1, 2, 3, 4, 6, 7, 9, 10, 12, 14, 15, 16, 17, 18, 21, 23, 25, 26, 28, 30, 34, 36, 38, 41, 42], "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "podman": 0, "attempt": [0, 9, 13, 21], "best": 0, "effort": 0, "detect": [0, 2, 9, 33, 34, 39], "There": 0, "might": [0, 2, 4, 7, 9, 10, 15, 21, 24, 25, 28, 32, 33, 34, 35, 36], "special": [0, 9, 11, 15, 33], "case": [0, 9, 11, 36], "where": [0, 2, 3, 4, 6, 9, 13, 15, 21, 28, 36, 39], "doe": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38], "work": [0, 1, 2, 4, 6, 7, 9, 10, 25, 28, 36, 39, 41], "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42], "encount": [0, 9], "one": [0, 2, 3, 4, 5, 7, 9, 12, 13, 14, 15, 16, 17, 18, 19, 24, 25, 28, 32, 34, 35, 36, 39], "pleas": [0, 2, 4, 7, 9, 23, 24, 25, 28, 32, 34, 35, 36, 38, 39], "file": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41], "an": [0, 1, 2, 4, 5, 6, 8, 9, 10, 12, 13, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 28, 32, 33, 34, 35, 36, 38, 39], "issu": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "support": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41], "descript": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "check_mod": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "full": [0, 2, 3, 4, 6, 8, 9, 11, 12, 13, 16, 18, 19, 20, 22, 23, 24, 25, 26, 28, 29, 31, 32, 34, 35, 36, 37, 38, 39], "action": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 34, 35, 36, 37, 38], "modifi": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39], "state": [0, 2, 3, 4, 8, 9, 11, 13, 15, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40], "chang": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39], "statu": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "predict": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "without": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "target": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "diff_mod": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "n": [0, 8, 11, 13, 22, 24, 29, 30, 31, 32, 35, 37], "A": [0, 2, 3, 4, 8, 9, 10, 11, 13, 15, 19, 21, 22, 24, 27, 28, 29, 31, 32, 33, 35, 36, 37], "Will": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "detail": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "what": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "ha": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39], "possibli": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "need": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "when": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "diff": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "mode": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 42], "ansible_fact": 0, "dictionari": [0, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "updat": [0, 4, 9, 12, 15, 20, 23, 25, 28, 34, 36, 39], "exist": [0, 1, 2, 3, 4, 5, 6, 8, 9, 12, 13, 15, 16, 19, 20, 22, 23, 26, 28, 34, 35, 36, 37, 38, 39], "host": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41], "name": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41], "get": [0, 6, 8, 9, 11, 21, 22, 24, 32, 35, 37], "current": [0, 2, 3, 4, 6, 8, 9, 16, 20, 22, 24, 28, 30, 32, 34, 35, 36], "print": [0, 7, 8, 9, 14, 22, 32, 37], "inform": [0, 1, 2, 6, 7, 8, 9, 10, 11, 14, 22, 24, 25, 27, 32, 34, 37, 39, 41], "builtin": [0, 2, 3, 4, 6, 7, 8, 11, 13, 14, 22, 24, 25, 28, 29, 31, 32, 34, 35, 36, 37], "debug": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 34, 35, 36, 37, 38], "msg": [0, 8, 14, 22, 32, 37], "id": [0, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 18, 19, 22, 23, 24, 25, 27, 28, 31, 34, 36], "ansible_module_container_id": 0, "ansible_module_running_in_contain": 0, "ar": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42], "ad": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "hostvar": 0, "referenc": 0, "just": [0, 39], "like": [0, 7, 9, 23, 34, 36], "ani": [0, 3, 6, 9, 12, 15, 21, 30, 36, 38], "other": [0, 2, 7, 9, 10, 21, 24, 25, 32, 33, 34, 35, 36], "thei": [0, 6, 9, 10, 21, 23, 33, 36, 39], "do": [0, 6, 9, 10, 12, 15, 21], "regist": [0, 2, 3, 7, 8, 11, 13, 14, 22, 24, 25, 29, 31, 32, 35, 36, 37], "order": [0, 1, 2, 5, 7, 9, 10, 21, 33, 36, 39, 42], "them": [0, 2, 9, 20, 21, 23, 24, 25, 32, 34, 35, 39], "kei": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "string": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42], "empti": [0, 2, 7, 9, 10, 13, 18, 21, 23, 24, 25, 33], "wa": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "alwai": [0, 2, 3, 4, 8, 9, 10, 11, 12, 13, 15, 16, 21, 22, 24, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 42], "ansible_module_container_typ": 0, "environ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 42], "non": [0, 6, 8, 9, 12, 15, 22, 23, 27, 40, 42], "identifi": [0, 8, 9, 19, 22, 24], "indic": [0, 6, 21, 32], "ran": [0, 7], "insid": [0, 1, 5, 6, 7, 9, 10, 36], "regular": 0, "azure_pipelin": 0, "azur": 0, "pipelin": 0, "seem": [0, 6], "longer": [0, 2, 4, 9, 24, 25, 28, 32, 34, 35, 36, 39], "report": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "github_act": 0, "github": [0, 1, 3, 7, 9, 10], "sinc": [0, 7, 9, 10, 21, 33, 39], "2": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "4": [0, 2, 4, 6, 9, 11, 23, 24, 25, 28, 32, 33, 34, 35, 36, 39], "onli": [0, 2, 3, 4, 6, 7, 9, 10, 11, 13, 15, 16, 20, 23, 24, 25, 27, 28, 32, 34, 35, 36], "boolean": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38], "abl": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38], "felix": [0, 1, 3, 6, 7, 8, 9, 10, 12, 14, 16, 17, 18, 19, 27, 37], "fontein": [0, 1, 3, 6, 7, 8, 9, 10, 12, 14, 16, 17, 18, 19, 27, 37], "felixfontein": [0, 1, 3, 6, 7, 8, 9, 10, 12, 14, 16, 17, 18, 19, 27, 37], "tracker": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "repositori": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "submit": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "bug": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "request": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "featur": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "plugin": [1, 2, 5, 6, 12, 21, 36, 39, 40, 42], "whether": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "further": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38], "see": [1, 4, 6, 7, 8, 9, 10, 11, 13, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "command": [1, 2, 3, 5, 9, 20, 29, 30, 31, 36, 39, 41], "put": [1, 5], "fetch": [1, 5, 21], "librari": 1, "interact": [1, 9], "directli": [1, 2, 3, 4, 5, 7, 12, 28, 36, 39], "daemon": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "instead": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 42], "cli": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 41], "want": [1, 5, 9, 13, 15, 23], "below": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38], "local": [1, 2, 3, 8, 9, 10, 13, 15, 19, 20, 21, 22, 23, 26, 33, 37, 38, 39], "control": [1, 4, 5, 9, 10, 20, 21, 23, 28, 33, 38, 39, 40, 41], "node": [1, 6, 9, 10, 21, 23, 29, 30, 31, 32, 34, 36, 39, 41, 42], "execut": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "pywin32": [1, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 37, 38], "pipe": [1, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 37, 38], "window": [1, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 36, 37, 38], "32": [1, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 34, 36, 37, 38], "paramiko": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "ssh": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "use_ssh_cli": [1, 2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "fals": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "pyopenssl": [1, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 37, 38], "tl": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "backport": [1, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 37, 38], "ssl_match_hostnam": [1, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 37, 38], "python": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "comment": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 42], "api_vers": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "alias": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "docker_api_vers": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "api": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "default": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42], "latest": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "If": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "valu": [1, 5, 10, 21, 33, 39], "variabl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 42], "set": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40], "auto": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "configur": [1, 2, 3, 4, 5, 6, 9, 10, 15, 20, 21, 24, 25, 28, 32, 33, 34, 35, 36, 40, 42], "ansible_docker_api_vers": 1, "ca_cert": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "tls_ca_cert": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "cacert_path": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "path": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "ca": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "certif": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "perform": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "server": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "verif": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "provid": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 42], "docker_cert_path": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "pem": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "from": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41], "directori": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "ansible_docker_ca_cert": 1, "client_cert": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "tls_client_cert": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "cert_path": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "client": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "cert": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "ansible_docker_client_cert": 1, "client_kei": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "tls_client_kei": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "key_path": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "ansible_docker_client_kei": 1, "container_timeout": [1, 5], "integ": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 42], "how": [1, 5, 6, 9, 10, 21, 23, 36, 39, 40], "long": [1, 2, 5, 8, 9, 22, 40], "we": [1, 5, 9, 10, 15, 21, 23, 33, 40], "wait": [1, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 40], "access": [1, 5, 23, 36, 40, 42], "read": [1, 2, 4, 5, 9, 10, 28, 33, 36, 40], "output": [1, 2, 3, 5, 7, 8, 9, 11, 15, 21, 22, 24, 32, 35, 40], "onc": [1, 5, 36, 40], "start": [1, 2, 3, 5, 9, 10, 21, 33, 36, 39, 40], "10": [1, 2, 4, 5, 9, 26, 28, 32, 33, 34, 36], "ini": [1, 5, 10, 21, 33, 42], "entri": [1, 5, 9, 10, 21, 24, 25, 33, 34, 42], "timeout": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "docker_connect": [1, 5], "ansible_timeout": [1, 5], "ansible_docker_timeout": [1, 5, 40], "argument": [1, 5, 7, 12, 15, 36], "choic": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38], "true": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38], "docker_host": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "docker_url": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "url": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "unix": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "socket": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "remot": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 42], "tcp": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "For": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 42], "exampl": [1, 5, 39, 42], "192": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "23": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "2376": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "encrypt": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "modul": [1, 10, 33, 39], "automat": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "replac": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "http": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "var": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40], "sock": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "ansible_docker_docker_host": 1, "remote_addr": [1, 5, 34], "inventory_hostnam": [1, 5], "ansible_host": [1, 5, 10, 21, 33], "ansible_docker_host": [1, 5], "remote_us": [1, 5], "user": [1, 5, 6, 7, 8, 9, 12, 13, 20, 21, 25, 34, 36, 39, 40, 41, 42], "ansible_remote_us": [1, 5], "ansible_us": [1, 5, 21], "ansible_docker_us": [1, 5], "keyword": [1, 5], "ssl_version": [1, 2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "valid": [1, 2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "ssl": [1, 2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "number": [1, 2, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "determin": [1, 2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "docker_ssl_vers": [1, 2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "ansible_docker_ssl_vers": 1, "maximum": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "amount": [1, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "time": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "second": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "respons": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "docker_timeout": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "60": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "secur": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "verifi": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "authent": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "validate_cert": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "well": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "take": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "preced": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 40], "docker_tl": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "ansible_docker_tl": 1, "tls_hostnam": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "expect": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "docker_tls_hostnam": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "option": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "had": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "localhost": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "older": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "remov": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38, 39, 41], "ansible_docker_tls_hostnam": 1, "5": [1, 2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "transport": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "tool": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "tls_verifi": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "docker_tls_verifi": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "ansible_docker_validate_cert": 1, "caus": [1, 4, 7, 9, 28, 38], "inabl": [1, 7], "send": [1, 7, 9, 30, 34], "close_notifi": [1, 7], "close": [1, 7], "sslsocket": [1, 7], "com": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "605": [1, 7, 10], "more": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "each": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 42], "defin": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "machin": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 41], "script": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39], "ship": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "product": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38], "up": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 42], "doc": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "refer": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38], "env": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38], "sdk": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39], "code": [1, 2, 3, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 36, 37, 38], "deriv": [1, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 33, 37, 38], "type": [1, 5, 7, 9, 10, 11, 21, 23, 32, 33, 36, 38, 42], "have": [1, 3, 5, 9, 10, 21, 23, 24, 30, 33, 34, 36, 39, 42], "low": [1, 5, 10, 21, 33, 42], "high": [1, 5, 9, 10, 21, 33, 42], "prioriti": [1, 5, 10, 21, 33, 42], "lower": [1, 5, 10, 21, 33, 42], "overrid": [1, 2, 5, 9, 10, 21, 30, 33, 36, 42], "higher": [1, 5, 10, 21, 33, 42], "run": [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41], "shutdown": [2, 3], "scale": 2, "servic": [2, 3, 9, 10, 23, 29, 30, 32, 41], "docker_compose_v2": [2, 41], "modern": 2, "yml": [2, 3, 10, 13, 21, 30, 33], "yaml": [2, 3, 7, 9, 10, 21, 30, 33, 36], "inlin": 2, "definit": [2, 3, 30], "call": [2, 3, 9, 12, 13, 36, 39], "docker_servic": 2, "befor": [2, 4, 6, 9, 13, 15, 18, 20, 27, 28, 30, 34, 36, 39], "8": [2, 6, 9, 10, 13, 15, 26, 36], "usag": [2, 9, 11, 13, 15, 36, 41], "did": [2, 9, 13], "25": [2, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "py": [2, 4, 24, 25, 28, 32, 34, 35, 36, 39], "been": [2, 3, 4, 9, 10, 24, 25, 28, 30, 32, 34, 35, 36], "supersed": [2, 4, 24, 25, 28, 32, 34, 35, 36], "here": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "both": [2, 4, 9, 11, 13, 24, 25, 28, 32, 34, 35, 36, 39], "should": [2, 4, 6, 9, 10, 21, 24, 25, 28, 32, 33, 34, 35, 36, 40, 42], "same": [2, 9, 10, 23, 24, 25, 26, 32, 34, 35, 37, 38, 39], "uninstal": [2, 24, 25, 32, 34, 35, 39], "function": [2, 4, 20, 23, 24, 25, 26, 28, 32, 34, 35, 36, 37, 38, 39], "reinstal": [2, 24, 25, 32, 34, 35, 39], "7": [2, 4, 5, 9, 13, 15, 16, 18, 24, 25, 28, 32, 33, 34, 35, 36, 39], "incompat": 2, "pyyaml": [2, 30], "11": [2, 10, 21, 33, 41], "task": [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "build": [2, 10, 11, 15, 21, 33, 39, 41], "present": [2, 3, 4, 6, 9, 11, 15, 19, 20, 23, 26, 28, 30, 34, 36, 38], "imag": [2, 3, 8, 9, 10, 11, 21, 27, 30, 31, 36, 41, 42], "prior": [2, 9, 23, 36], "pull": [2, 9, 12, 13, 15, 17, 18, 19, 39, 41, 42], "rebuilt": [2, 36], "dockerfil": [2, 9, 12, 15, 36, 39], "content": [2, 6, 30, 34], "nocach": [2, 12, 15], "ignor": [2, 3, 9, 10, 16, 17, 21, 24, 25, 33, 42], "cach": [2, 9, 11, 12, 15, 27], "recreat": [2, 3, 4, 9, 23, 28, 36, 38], "unless": [2, 4, 9, 11, 28, 32, 40, 42], "never": [2, 3, 12, 30, 38, 39], "describ": [2, 36], "network": [2, 3, 9, 10, 11, 12, 15, 27, 36, 41], "volum": [2, 3, 8, 9, 11, 13, 27, 32, 36, 41], "mutual": [2, 4, 6, 10, 21, 28, 33], "exclus": [2, 4, 6, 10, 21, 28, 33], "project_src": [2, 3], "depend": [2, 3, 9, 11, 15, 24, 25, 32, 34], "connect": [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 40], "env_fil": [2, 3, 9, 36], "9": [2, 9, 13, 36, 42], "By": [2, 3, 9, 10, 11, 21, 23, 33], "load": [2, 3, 9, 15, 18, 41], "locat": [2, 3], "under": [2, 3, 29, 39], "custom": [2, 3, 9, 20, 23, 36], "rel": [2, 3, 9, 12, 15], "greater": 2, "28": [2, 36], "rather": [2, 9], "than": [2, 9, 19, 21, 24, 25, 27, 30, 36], "element": [2, 3, 7, 9, 10, 11, 12, 13, 14, 15, 18, 19, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 36], "merg": [2, 10, 21, 25, 33, 40], "given": [2, 9, 10, 14, 21, 33, 34], "hostname_check": 2, "hostnam": [2, 8, 9, 12, 13, 15, 23, 24, 25, 36, 39], "against": [2, 10], "dure": [2, 9, 10, 15, 26, 36], "process": [2, 9, 15, 36], "profil": [2, 3], "enabl": [2, 3, 9, 15, 23, 26], "equival": [2, 3, 9], "project_nam": [2, 3], "project": [2, 3, 41], "taken": [2, 3, 9], "basenam": [2, 3], "differ": [2, 3, 6, 9, 11, 23, 30, 32, 34, 38], "leav": [2, 3, 9, 23, 34, 39], "unchang": [2, 3, 25, 36], "forc": [2, 3, 4, 6, 9, 15, 18, 20, 23, 28, 34, 36, 38], "all": [2, 3, 6, 9, 10, 11, 13, 14, 15, 18, 21, 23, 24, 25, 30, 33, 34, 36, 39, 41], "smart": 2, "remove_imag": [2, 3], "absent": [2, 3, 4, 8, 9, 15, 20, 22, 23, 26, 28, 30, 34, 36, 38], "remove_orphan": [2, 3], "remove_volum": [2, 3], "data": [2, 3, 4, 6, 7, 9, 13, 28, 34, 36, 38], "restart": [2, 3, 9, 36], "pair": [2, 9, 12, 15, 36], "count": [2, 3, 9], "resp": [2, 20], "stop": [2, 3, 9, 10, 36, 39], "subset": [2, 11, 23, 32], "which": [2, 4, 7, 9, 10, 11, 15, 17, 20, 21, 28, 32, 33, 34, 36, 39], "oper": [2, 3, 15, 23, 25, 26, 34, 36, 38, 39], "newer": [2, 3, 4, 9, 24, 25, 28, 32, 33, 34, 35, 36, 41], "lead": [2, 4, 10, 21, 24, 25, 28, 32, 33, 34, 35, 36], "error": [2, 4, 7, 10, 11, 21, 24, 25, 28, 31, 32, 33, 34, 35, 36], "desir": [2, 3, 9, 34], "down": [2, 3], "17": 2, "first": [2, 4, 9, 10, 28, 36], "suppos": 2, "creat": [2, 3, 4, 9, 10, 13, 15, 21, 22, 23, 27, 28, 33, 34, 36, 38, 39], "attach": [2, 3, 9, 22, 23, 40, 42], "alreadi": [2, 3, 9, 12, 15, 19, 23, 25, 26, 34, 38], "default_grace_period": 2, "particular": [2, 11], "suddenli": 2, "later": [2, 3, 4, 28, 39], "action_group": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "group": [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 41], "module_default": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38], "none": [2, 3, 4, 7, 8, 9, 12, 14, 15, 17, 20, 22, 25, 27, 28, 30, 34, 35, 36, 37], "addit": [2, 4, 6, 9, 24, 25, 28, 32, 33, 34, 35, 36], "packag": [2, 4, 24, 25, 28, 32, 34, 35, 36, 39], "done": [2, 4, 15, 24, 25, 28, 32, 34, 35, 36], "pip": [2, 4, 24, 25, 28, 32, 34, 35, 36, 39], "allow": [2, 4, 5, 9, 11, 15, 19, 20, 24, 25, 26, 28, 32, 34, 35, 36, 39, 41, 42], "veri": [2, 4, 9, 24, 25, 28, 32, 34, 35, 36], "few": [2, 4, 24, 25, 28, 32, 34, 35, 36, 39], "In": [2, 4, 9, 24, 25, 28, 32, 34, 35, 36], "gener": [2, 4, 9, 10, 21, 24, 25, 28, 32, 33, 34, 35, 36, 39, 41], "home": [2, 4, 6, 12, 15, 24, 25, 28, 32, 34, 35, 36], "config": [2, 8, 9, 13, 15, 20, 22, 23, 24, 25, 28, 32, 34, 35, 36, 39, 41], "json": [2, 4, 9, 15, 20, 21, 24, 25, 28, 32, 34, 35, 36], "docker_config": [2, 24, 25, 28, 32, 34, 35, 36, 39, 41], "otherwis": [2, 4, 6, 9, 10, 21, 24, 25, 28, 32, 33, 34, 35, 36], "django": [2, 3], "follow": [2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42], "flask": [2, 3], "gather_fact": [2, 3], "tear": [2, 3], "show": [2, 3, 11, 29, 31, 32, 36], "result": [2, 3, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 29, 31, 32, 35, 37, 38, 39], "again": [2, 3, 4, 9, 28], "assert": [2, 3, 9, 13, 15, 36], "web": [2, 3, 30, 36], "db": [2, 3, 9], "flask_web_1": [2, 3], "flask_db_1": [2, 3], "two": [2, 4, 9, 19, 28], "instanc": 2, "v2": 2, "postgr": [2, 9], "playbook_dir": 2, "runserv": 2, "8000": [2, 9], "port": [2, 3, 9, 10, 12, 15, 16, 17, 18, 19, 31, 33, 34, 36], "depends_on": 2, "common": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "document": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 40], "field": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "uniqu": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "complex": 2, "service_nam": 2, "short_id": 2, "short": [2, 8, 9, 10, 22], "built_imag": 2, "built": [2, 15], "hash": [2, 4, 9, 12, 15, 16, 17, 18, 19, 28], "pulled_imag": 2, "map": [2, 3, 4, 9, 10, 12, 15, 21, 23, 28, 33, 36], "success": [2, 3, 4, 6, 7, 9, 11, 12, 14, 15, 16, 17, 18, 19, 23, 25, 26, 28, 32, 34, 37, 38], "container_nam": [2, 9], "format": [2, 3, 9, 10, 12, 13, 15, 16, 17, 18, 19, 33, 34, 36], "project_service_": 2, "cmd": [2, 8, 9, 13, 36], "One": [2, 4, 6, 10, 28, 39], "sampl": [2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38], "label": [2, 3, 4, 8, 9, 11, 12, 13, 15, 22, 23, 25, 28, 33, 34, 36, 37, 38], "meta": [2, 4, 28], "assign": [2, 3, 4, 9, 10, 25, 28, 36], "null": [2, 8, 9, 13, 22, 36, 37], "member": 2, "globalipv6": 2, "ipv6": [2, 9, 23], "address": [2, 9, 10, 12, 15, 23, 34, 36], "globalipv6prefixlen": 2, "subnet": [2, 22, 23, 34], "length": [2, 9, 13, 34], "ipaddress": 2, "ip": [2, 9, 10, 12, 15, 23, 36], "172": [2, 9, 23, 33], "ipprefixlen": 2, "bit": 2, "16": [2, 9, 33], "macaddress": 2, "mac": [2, 9, 23], "virtual": 2, "nic": 2, "02": [2, 3], "42": 2, "ac": 2, "00": [2, 22, 37], "regard": 2, "disposit": 2, "chri": [2, 4, 9, 13, 15, 20, 23, 28], "houseknecht": [2, 4, 9, 13, 15, 20, 23, 28], "chouseknecht": [2, 4, 9, 13, 15, 20, 23, 28], "18": [3, 9], "cli_context": [3, 12], "context": [3, 12, 15, 39], "docker_cli": [3, 12], "search": [3, 9, 12, 36], "multipl": [3, 10, 13, 14, 24, 39], "stabl": 3, "10872": 3, "main": 3, "friendli": 3, "tri": [3, 9], "accomod": 3, "variou": [3, 9, 41], "behavior": [3, 9, 12, 19], "adjust": 3, "test": [3, 4, 9, 22, 28, 36, 37], "between": [3, 9, 30, 34, 36, 39], "exact": 3, "over": [3, 23, 39], "releas": [3, 15], "break": 3, "program": [3, 12, 42], "docker_compos": [3, 39, 41], "v1": [3, 8, 9, 15, 20, 41], "appli": [3, 15, 25, 30, 34, 36], "resourc": [3, 9, 30, 36], "happen": [3, 4, 9, 28, 39], "exit": [3, 7, 9, 36], "kill": [3, 9, 36], "kind": 3, "associ": [3, 9, 20, 31], "createdat": [3, 37], "timestamp": 3, "2024": 3, "01": [3, 9, 37], "12": [3, 9, 10, 12, 19, 21, 22, 26, 33, 37], "20": [3, 9, 22], "41": [3, 36], "0100": 3, "cet": 3, "exitcod": 3, "health": [3, 9, 36], "44a7d607219a60b7db0a4817fb3205dce46e91df2cb4b78a6100b6e27b0d3135": 3, "localvolum": 3, "mount": [3, 9, 36], "primari": [3, 10], "publish": [3, 9, 36], "assig": 3, "protocol": [3, 36], "udp": [3, 9, 36], "publishedport": 3, "targetport": 3, "interfac": [3, 9, 10, 34], "bound": [3, 9], "runningfor": 3, "size": [3, 9, 12, 13, 15, 21, 36], "0b": 3, "about": [3, 15, 23, 25, 29, 34, 39, 41], "minut": 3, "containernam": 3, "conain": 3, "sha256": [3, 14, 36], "c8bccc0af9571ec0d006a43acb5a8d08c4ce42b6cc7194dd6eb167976f501ef1": 3, "belong": [3, 9, 10, 15], "byte": [3, 9, 12, 15, 27, 36], "tag": [3, 9, 12, 13, 14, 15, 16, 17, 18, 21, 36, 39, 41], "swarm": [4, 23, 28, 30, 31, 41], "similar": [4, 6, 8, 20, 22, 28, 39], "rm": [4, 15, 28], "add": [4, 7, 9, 10, 12, 15, 20, 21, 23, 25, 28, 30, 33, 34, 36, 39], "metadata": [4, 9, 10, 21, 25, 28, 33, 34], "ansible_kei": [4, 28], "represent": [4, 28], "futur": [4, 15, 20, 28], "30": [4, 9, 34, 36], "data_src": [4, 28], "data_is_b64": [4, 28], "assum": [4, 6, 9, 15, 16, 28], "base64": [4, 6, 28], "encod": [4, 6, 28], "decod": [4, 6, 28], "being": [4, 6, 15, 28, 34], "binari": [4, 6, 28], "better": [4, 6, 28], "keep": [4, 6, 9, 19, 28, 34, 42], "let": [4, 6, 28], "even": [4, 9, 23, 26, 28, 34, 36], "rolling_vers": [4, 28], "increas": [4, 28], "append": [4, 7, 12, 15, 16, 17, 18, 19, 23, 28], "contain": [4, 11, 12, 13, 15, 16, 17, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 36, 40, 41], "ansible_vers": [4, 28], "template_driv": 4, "golang": 4, "go": [4, 39], "templat": [4, 7, 9], "versions_to_keep": [4, 28], "old": [4, 5, 9, 28, 36, 39], "extran": [4, 28], "delet": [4, 18, 23, 26, 27, 28, 30, 38], "after": [4, 9, 10, 15, 21, 25, 28, 30, 33, 34, 36], "everyth": [4, 6, 27, 28], "foo": [4, 7, 9, 10, 28, 36], "becaus": [4, 9, 10, 21, 28, 33, 34], "re": [4, 9, 20, 23, 28], "prevent": [4, 7, 9, 28], "lookup": [4, 9, 28], "b64encod": [4, 28], "goodnight": [4, 28], "everyon": [4, 28], "bar": [4, 9, 28, 36], "baz": [4, 28], "No": [4, 28], "though": [4, 15, 28], "miss": [4, 9, 28], "monkei": [4, 28], "creation": [4, 9, 23, 28, 36], "config_id": [4, 36], "object": [4, 6, 21, 28, 32, 41], "hzehrmyjigmcp2gb6nlhmjqcv": [4, 28], "config_nam": [4, 36], "awesome_config": 4, "john": 4, "hu": 4, "ushuz": 4, "prefer": [5, 9, 15, 16, 36], "docker_api": [5, 10, 39, 40, 41], "docker_extra_arg": 5, "extra": [5, 10, 12, 15, 21, 33, 40], "pass": [5, 7, 9, 10, 34, 36, 39], "line": [5, 7, 9, 39], "extra_cli_arg": 5, "ansible_docker_extra_arg": 5, "too": 5, "itself": [5, 9, 39, 42], "lorin": 5, "hochestein": 5, "leendert": 5, "brouwer": 5, "cp": [6, 39], "must": [6, 7, 9, 15, 16, 17, 24, 25, 32, 34, 35, 36, 39], "owner_id": 6, "group_id": 6, "also": [6, 9, 11, 13, 23, 24, 25, 32, 34, 35, 36, 38, 39], "necessari": 6, "bin": [6, 7, 8, 9, 13], "sh": [6, 13], "shell": [6, 9, 36], "correspond": [6, 9, 11, 15, 34, 36], "container_path": 6, "absolut": 6, "plan": 6, "pre": 6, "content_is_b64": 6, "risk": 6, "interpret": [6, 39], "utf": 6, "corrupt": 6, "flag": [6, 32], "filesystem": [6, 9, 36], "write": [6, 9], "idempot": [6, 9, 34], "destin": [6, 9], "try": [6, 9, 15, 16, 23, 30], "match": [6, 8, 9, 11, 15, 16, 18, 22, 24, 32, 35, 36], "download": [6, 12, 15], "compar": [6, 9, 39], "upload": 6, "disk": [6, 11, 27], "avail": [6, 9, 10, 15, 21, 25, 32, 33, 36, 39, 40], "local_follow": 6, "tree": 6, "system": [6, 9, 11], "owner": [6, 9, 36], "manag": [6, 30, 32, 33, 36, 41], "transfer": 6, "comput": 6, "max_file_size_for_diff": 6, "larg": [6, 23, 26, 37, 38], "mydata": [6, 8, 9, 22, 37], "txt": [6, 36], "input": [6, 10, 21, 33], "runm": 6, "o": [6, 9, 10, 12, 13, 15, 21, 33], "root": [6, 7, 9, 36, 40, 42], "0o755": 6, "readabl": [6, 9], "writabl": 6, "actual": [6, 25, 36], "argv": 7, "quot": [7, 9, 36], "exactli": 7, "chdir": 7, "detach": [7, 9], "synchron": [7, 39], "asynchron": 7, "stdin": [7, 9], "cannot": [7, 9, 11, 12, 21, 23], "stdout": [7, 15], "stderr": 7, "rc": 7, "respect": [7, 20], "pars": [7, 9, 36], "parser": [7, 9, 36], "avoid": [7, 9, 36, 39], "loss": [7, 9, 36], "jinja2": [7, 9, 10, 21, 33], "convert": [7, 9, 10, 12, 15, 33], "back": [7, 9, 36], "correct": [7, 9, 39], "wai": [7, 9, 10, 15, 42], "stdin_add_newlin": 7, "newlin": 7, "strip_empty_end": 7, "strip": 7, "end": [7, 10, 21, 33], "tty": [7, 8, 9, 13, 36], "alloc": [7, 9, 36], "simpl": 7, "bash": 7, "c": [7, 13], "l": [7, 11, 32], "lah": 7, "dev": [7, 9, 12, 15, 38], "stderr_lin": 7, "exec_id": 7, "249d9e3075655baf705ed8f40488c5e9434049cf3431976f1bfdb73741c574c5": 7, "standard": [7, 21], "essenti": [8, 11, 22, 24, 35, 39], "inspect": [8, 9, 10, 12, 14, 15, 16, 17, 18, 19, 22, 23, 24, 26, 35, 37, 38, 39, 41], "docker_contain": [8, 23, 39, 40, 41], "mai": [8, 9, 22, 30, 33, 36], "info": [8, 11, 22, 24, 29, 31, 32, 35, 37], "els": [8, 22, 37], "repres": [8, 9, 11, 22, 24, 32, 35, 36], "apparmorprofil": [8, 9], "arg": [8, 9, 12, 15, 36], "attachstderr": [8, 9, 13], "attachstdin": [8, 9, 13], "attachstdout": [8, 9, 13], "usr": [8, 9, 13], "supervisord": [8, 9], "domainnam": [8, 9, 13], "entrypoint": [8, 9, 13], "sbin": [8, 9, 13], "exposedport": [8, 9, 13], "443": [8, 9], "80": [8, 9], "8e47bf643eb9": [8, 9], "lnmp_nginx": [8, 9], "onbuild": [8, 9, 13], "openstdin": [8, 9, 13], "stdinonc": [8, 9, 13], "tmp": [8, 9, 20, 36], "lnmp": [8, 9], "nginx": [8, 9, 15, 30, 36], "site": [8, 9], "log": [8, 9, 15, 34, 36, 39, 41], "life": 9, "cycl": 9, "view": 9, "auto_remov": 9, "side": [9, 34], "container_default_behavior": 9, "compat": [9, 10, 39], "blkio_weight": 9, "block": [9, 23], "io": [9, 20], "weight": [9, 15], "1000": 9, "cap_drop": [9, 36], "capabl": [9, 36], "drop": [9, 36], "cap": 9, "compos": [9, 10, 21, 30, 33, 41], "cap_add": [9, 36], "cgroup_par": 9, "parent": [9, 10, 13, 18, 21, 33], "cgroup": 9, "cgroupns_mod": 9, "namespac": [9, 29, 42], "simpli": 9, "cgroupn": 9, "privat": [9, 15, 20, 36, 39], "cleanup": 9, "either": [9, 15, 24, 34, 36], "were": [9, 15, 18], "split": 9, "comma": 9, "command_handl": 9, "handl": 9, "consid": [9, 12, 15, 23, 27, 34], "rule": 9, "relat": 9, "until": [9, 11, 27, 30], "kept": [9, 19], "correctli": [9, 23], "comparison": 9, "properti": 9, "decid": 9, "strict": [9, 10, 21, 33], "allow_more_pres": 9, "equal": [9, 36], "dict": [9, 11, 32, 36], "wildcard": 9, "explicitli": 9, "problem": 9, "now": 9, "no_default": 9, "restor": 9, "ensur": [9, 13, 21, 23], "affect": [9, 12, 15, 16, 17, 18, 19, 23, 26, 37, 38], "init": [9, 34, 36, 42], "memori": [9, 15, 36], "paus": [9, 25, 36], "privileg": [9, 42], "read_onli": [9, 36], "cpu_period": 9, "limit": [9, 15, 36], "cpu": [9, 15, 36], "cf": 9, "complet": [9, 25, 30], "fair": 9, "schedul": 9, "period": [9, 36], "easier": 9, "altern": [9, 10, 12, 15], "cpu_quota": 9, "quota": 9, "cpu_shar": 9, "share": [9, 15, 36], "float": [9, 36], "much": 9, "mean": [9, 15, 23], "most": [9, 39], "half": 9, "cpuset_cpu": 9, "cpuset_mem": 9, "mem": 9, "default_host_ip": 9, "ipv4": [9, 23], "With": [9, 21, 23], "bind": [9, 36], "explicit": [9, 10], "70": 9, "bridg": [9, 22, 23], "host_binding_ipv4": 9, "fall": 9, "background": 9, "disabl": [9, 26, 36], "reflect": 9, "fail": [9, 11, 23, 24, 25, 30, 32, 34, 35, 36], "device_read_bp": 9, "devic": [9, 38], "rate": 9, "per": [9, 21, 33, 36], "unit": [9, 12, 15, 36], "posit": [9, 12, 15, 36], "b": [9, 12, 15, 36], "k": [9, 12, 15, 36], "kibibyt": [9, 12, 15, 36], "1024b": [9, 12, 15, 36], "m": [9, 12, 15, 36], "mebibyt": [9, 12, 15, 36], "g": [9, 12, 15, 36], "gibibyt": [9, 12, 15, 36], "t": [9, 12, 15, 36], "tebibyt": [9, 12, 15, 36], "p": [9, 12, 15, 32, 36], "pebibyt": [9, 12, 15, 36], "omit": [9, 10, 12, 15, 21, 33, 34, 36], "device_read_iop": 9, "device_request": 9, "gpu": 9, "top": [9, 10], "level": [9, 10], "combin": [9, 16, 25, 34], "OR": 9, "everi": [9, 39], "AND": 9, "driver": [9, 21, 22, 23, 36, 37, 38], "satisfi": 9, "sub": [9, 36], "nvidia": 9, "found": [9, 15, 18, 20, 39], "runtim": 9, "device_id": 9, "specif": [9, 15, 16, 23, 29, 38, 39], "device_write_bp": 9, "device_write_iop": 9, "express": [9, 10, 21, 33], "path_on_host": 9, "path_in_contain": 9, "cgroup_permiss": 9, "dns_opt": 9, "dn": [9, 36], "dns_search_domain": 9, "domain": [9, 36], "dns_server": 9, "overwrit": [9, 15, 19], "etc_host": [9, 12, 15], "etc": [9, 12, 13, 15, 23, 36], "exposed_port": 9, "expos": [9, 36], "listen": [9, 34], "force_kil": 9, "forcekil": 9, "healthcheck": [9, 36], "healthi": [9, 36], "instruct": [9, 12, 15, 36], "interv": [9, 30, 36], "start_period": [9, 36], "durat": [9, 36], "accept": [9, 21, 36], "look": [9, 36], "5h34m56": [9, 36], "1m30": [9, 36], "so": [9, 10, 23, 36, 39], "u": [9, 30, 36], "h": [9, 36], "retri": [9, 30, 36], "consecut": [9, 30, 36], "failur": [9, 36], "unhealthi": [9, 36], "initi": [9, 36], "countdown": [9, 36], "item": [9, 10, 21, 33, 36], "ignore_imag": 9, "evalu": [9, 36], "registri": [9, 12, 13, 14, 15, 18, 19, 30, 36, 39, 41], "warn": [9, 21], "deprec": [9, 39], "image_comparison": 9, "via": [9, 23, 25, 27, 33, 36], "yet": 9, "image_label_mismatch": 9, "inherit": 9, "while": [9, 36, 42], "introduc": 9, "unexpect": 9, "base": [9, 10, 21, 30, 33], "image_name_mismatch": 9, "still": [9, 10, 21, 30, 33, 36, 39, 42], "reason": 9, "emit": 9, "would": 9, "make": [9, 10, 13, 15, 21, 23, 33, 34, 36, 38, 39], "forward": [9, 36], "signal": [9, 36], "reap": [9, 36], "open": 9, "launch": [9, 39, 42], "ipc_mod": 9, "ipc": 9, "reus": 9, "anoth": [9, 19], "within": 9, "keep_volum": 9, "retain": 9, "anonym": 9, "kernel_memori": 9, "kernel": 9, "minimum": 9, "4m": 9, "kill_sign": 9, "alia": [9, 26], "log_driv": [9, 36], "possibl": [9, 10, 11, 15, 21, 27, 32, 33, 34], "log_opt": 9, "chosen": 9, "engin": [9, 11, 32, 36, 38], "admin": 9, "overview": 9, "effect": [9, 30, 34], "mac_address": 9, "92": 9, "d0": 9, "c6": 9, "0a": 9, "29": [9, 36], "33": 9, "memory_reserv": 9, "soft": 9, "memory_swap": 9, "total": [9, 15], "swap": [9, 15], "unlimit": [9, 15], "memory_swappi": 9, "tune": 9, "swappi": 9, "100": 9, "remain": [9, 25], "power": 9, "consist": 9, "deleg": 9, "no_copi": [9, 36], "popul": 9, "propag": [9, 36], "rprivat": [9, 36], "rshare": [9, 36], "slave": [9, 36], "rslave": [9, 36], "suppli": 9, "tmpfs_mode": [9, 36], "permiss": 9, "tmpf": [9, 36], "tmpfs_size": [9, 36], "npipe": [9, 36], "volume_driv": 9, "volume_opt": 9, "network_mod": 9, "network_nam": [9, 23], "networks_cli_compat": 9, "least": 9, "structur": 9, "enforc": 9, "mention": 9, "These": [9, 10, 41], "reach": 9, "ipv4_address": 9, "ipv6_address": 9, "behav": [9, 21], "afterward": 9, "oom_kil": 9, "oom": 9, "killer": 9, "oom_score_adj": 9, "score": 9, "output_log": 9, "journald": 9, "pid_mod": 9, "pid": [9, 40, 42], "pids_limit": 9, "platform": [9, 12, 15, 16, 30, 33], "arch": [9, 12, 15, 33], "variant": [9, 12, 15], "normal": 9, "similarli": 9, "notic": 9, "accident": 9, "due": 9, "give": 9, "extend": [9, 32], "publish_all_port": 9, "published_port": [9, 36], "intact": 9, "syntax": 9, "9000": 9, "rang": [9, 23], "shorter": 9, "free": 9, "util": [9, 39], "dig": 9, "resolv": [9, 30, 36], "point": 9, "earlier": 9, "purge_network": 9, "sure": [9, 13, 15, 23, 34, 38, 39], "removal_wait_timeout": 9, "usual": [9, 15], "fast": 9, "howev": 9, "mani": 9, "phase": 9, "restart_polici": [9, 36], "polici": [9, 36], "place": 9, "around": [9, 34], "restart_retri": 9, "security_opt": 9, "form": [9, 34], "shm_size": [9, 12, 15], "shm": [9, 12, 15], "entir": [9, 12, 15], "64m": [9, 12, 15], "move": 9, "account": [9, 20, 36], "stop_sign": [9, 36], "stop_timeout": 9, "sigkil": 9, "its": [9, 25, 36], "stoptimeout": 9, "storage_opt": 9, "storag": 9, "sysctl": 9, "pseudo": [9, 36], "ulimit": 9, "nofil": 9, "262144": 9, "usernam": [9, 20, 36], "uid": [9, 36], "groupnam": 9, "gid": [9, 36], "userns_mod": 9, "ut": 9, "style": 9, "separ": [9, 10, 21, 33], "ro": 9, "rw": 9, "nocopi": 9, "selinux": 9, "addition": 9, "z": 9, "volumes_from": 9, "working_dir": [9, 36], "partial": [9, 15, 16], "destroi": [9, 39], "downtim": 9, "except": [9, 23, 33], "therefor": 9, "relev": 9, "busybox": [9, 31], "redi": 9, "myredi": 9, "appendonli": 9, "ye": [9, 10, 21, 33], "6379": 9, "myapplic": 9, "someus": 9, "appimag": 9, "aliasedredi": 9, "sda": 9, "xvda": 9, "rwm": 9, "8080": [9, 15], "9001": 9, "8081": 9, "127": [9, 10, 36], "9002": 9, "random": 9, "9003": 9, "8100": 9, "select": [9, 10, 11, 13, 15, 16, 17, 23, 25, 27, 32], "9010": 9, "9020": 9, "7000": 9, "7010": 9, "secret_kei": 9, "ssssh": 9, "boolean_kei": 9, "mycontain": 9, "ubuntu": [9, 36], "14": [9, 36], "04": [9, 36], "sleep": [9, 36], "infin": 9, "balanc": 9, "anotherappimag": 9, "1d": 9, "with_sequ": 9, "ohno": 9, "syslog": 9, "myservic": [9, 32, 35, 36], "my": [9, 10, 33], "514": 9, "facil": 9, "13": [9, 10, 36], "renam": [9, 36], "db_test": 9, "docker_network_nam": 9, "sleeper": 9, "testingnet": 9, "sleepyzz": 9, "testingnet2": 9, "sleepi": 9, "sleepyz": 9, "zzzz": 9, "agent": [9, 30, 34], "jenkinsci": 9, "jenkin": 9, "sys_tim": 9, "finer": 9, "arg1": 9, "arg2": 9, "whatev": [9, 15, 16], "precis": 9, "ok": 9, "ii": 9, "healthstatu": 9, "proxi": [9, 15], "curl": [9, 36], "ing": [9, 36], "22": [9, 10], "1700": 9, "16g": 9, "20m": [9, 36], "sdb": 9, "300": 9, "some": 9, "3a23c669": 9, "1f69": 9, "c64e": 9, "cf85": 9, "44e9b07e7a2a": 9, "condit": [9, 10, 21, 33, 36], "mb": 9, "backend": 9, "fabianle": 9, "org": 9, "2020": 9, "15": [9, 13], "overlay2": 9, "xf": 9, "rootf": 9, "12m": 9, "fact": [9, 10, 21, 33, 36, 41], "zero": 9, "cove": 9, "schneider": 9, "joshua": 9, "conner": 9, "joshuaconn": 9, "pavel": [9, 15], "antonov": [9, 15], "softzilla": [9, 15], "thoma": 9, "steinbach": 9, "thomassteinbach": 9, "philipp": 9, "jandot": 9, "zfil": 9, "daan": 9, "oosterveld": 9, "dusdanig": 9, "kassian": 9, "sun": 9, "kassiansun": 9, "add_legacy_group": 10, "letter": 10, "image_": 10, "stack_": 10, "stack": [10, 36, 41], "service_": 10, "configure_docker_daemon": 10, "connection_typ": 10, "default_ip": 10, "private_ssh_port": 10, "keyed_group": [10, 21, 33], "default_valu": [10, 21, 33], "trailing_separ": [10, 21, 33], "parent_group": [10, 21, 33], "prefix": [10, 21, 33], "_": [10, 21, 33], "leading_separ": [10, 21, 33], "conjunct": [10, 21, 33], "underscor": [10, 21, 33], "concaten": [10, 21, 33], "recogn": [10, 33], "own": [10, 33], "invalid": [10, 21, 33], "fatal": [10, 21, 33], "skip": [10, 21, 33], "continu": [10, 21, 33, 36], "those": [10, 21, 25, 33], "use_extra_var": [10, 21, 33], "composit": [10, 21, 33, 40], "highest": [10, 21, 33, 40], "inventory_plugin": [10, 21, 33], "ansible_inventory_use_extra_var": [10, 21, 33, 40], "verbose_output": [10, 11, 21, 32, 33], "toggl": [10, 33], "transform": 10, "docker_xxx": 10, "hostconfig": 10, "docker_hostconfig": 10, "minim": [10, 21, 33], "2375": [10, 33], "unverifi": [10, 33], "somewher": [10, 33], "construct": [10, 21, 33], "network_foo": 10, "networkmod": 10, "linux": [10, 13, 33], "os_linux": [10, 33], "docker_platform": 10, "fallback": 10, "export": 10, "ansible_ssh_host": 10, "ansible_ssh_port": 10, "docker_nam": 10, "queri": [11, 24, 30, 39], "contact": 11, "meet": 11, "containers_al": 11, "containers_filt": [11, 27], "filter": [11, 27, 32], "24h": [11, 27], "disk_usag": 11, "summari": 11, "space": [11, 27], "layer": 11, "sum": 11, "images_filt": [11, 27], "dangl": [11, 27], "networks_filt": [11, 27], "verbos": [11, 32], "method": [11, 32], "your": [11, 20, 23, 32, 34, 39], "volumes_filt": [11, 27], "mylabel": [11, 36], "key1": [11, 23, 25], "value1": [11, 23], "key2": [11, 23, 25], "value2": [11, 23], "host_info": 11, "can_talk_to_dock": [11, 32], "talk": [11, 32, 39], "basic": [11, 32], "piotr": [11, 24, 25, 32, 34, 36], "wojciechowski": [11, 24, 25, 32, 34, 36], "wojciechowskipiotr": [11, 24, 25, 32, 34, 36], "allo": 12, "buildkit": [12, 15], "direct": [12, 15], "conveni": [12, 15], "cache_from": [12, 15], "registry_serv": [12, 15, 16, 17, 18, 19], "push": [12, 14, 15, 18, 19, 39, 41], "tag_nam": [12, 15, 16, 17, 18, 19], "digest": [12, 16, 17, 18, 30, 36], "rebuild": 12, "intermedi": [12, 15], "stage": [12, 15], "final": [12, 15], "docker_image_push": [12, 14, 15, 19, 41], "docker_image_tag": [12, 14, 15, 16, 17, 18, 41], "arrai": 13, "appear": 13, "docker_imag": [13, 39, 41], "docker_image_fact": 13, "singl": [13, 23, 39], "pacur": [13, 15, 16, 18], "cento": [13, 15, 16, 18], "sinatra": [13, 15], "architectur": [13, 33], "amd64": [13, 15, 16], "5000": [13, 15, 17, 19, 20], "e5c68db50333": 13, "c72dce2618dc8f7b794d2b2c2b1e64e0205ead5befc294f8111da23bd6a2c799": 13, "lib": [13, 37], "workingdir": 13, "e83a452b8fb89d78a25a6739457050131ca5c863629a47639530d9ad2008d610": 13, "containerconfig": 13, "nop": 13, "2016": 13, "03": 13, "08t21": 13, "08": 13, "399680378z": 13, "dockervers": 13, "graphdriv": 13, "auf": 13, "53773d8552f07b730f3e19979e32499519807d67b344141d965463a950a66e08": 13, "f0b1f729f784b755e7bf9c8c2e65d8a0a35a533769c2588f02895f6781ac0805": 13, "repodigest": 13, "repotag": 13, "virtuals": 13, "165808884": 13, "tar": [14, 15], "docker_image_remov": [14, 15, 16, 17, 19, 41], "image_nam": 14, "join": [14, 34, 39], "hello": 14, "world": 14, "e004c2cc521c95383aebb1fb5893719aa7a8eae2e7a71f316a4410784edb00a9": 14, "archiv": [15, 18, 41], "archive_path": 15, "container_limit": 15, "cpusetcpu": 15, "cpushar": 15, "memswap": 15, "neither": [15, 39], "http_timeout": 15, "use_config_proxi": 15, "force_abs": 15, "un": [15, 18], "force_sourc": 15, "force_tag": 15, "load_path": 15, "ask": [15, 16, 21], "minor": 15, "hub": [15, 39], "retriev": [15, 29, 31, 34, 39, 41], "buildx": [15, 41], "docker_image_build": [15, 41], "docker_image_info": [15, 39, 41], "docker_image_load": [15, 18, 39, 41], "docker_image_pul": [15, 17, 18, 41], "56": 15, "dcoppenhagan": 15, "myimag": 15, "As": 15, "repo": [15, 17], "my_sinatra": 15, "dir": 15, "log_volum": 15, "myapp": 15, "listen_port": 15, "alpin": [15, 36], "sorin": 15, "sbarnea": 15, "ssbarnea": 15, "not_pres": 16, "shown": 16, "unknown": 16, "prune": [18, 30, 39, 41], "untag": 18, "existing_imag": 19, "overwritten": 19, "tagged_imag": 19, "got": 19, "login": [20, 39], "credenti": 20, "store": [20, 21, 34], "config_path": 20, "dockercfg_path": 20, "password": [20, 26], "plaintext": 20, "reauthor": 20, "reauth": 20, "refresh": 20, "registry_url": 20, "index": 20, "out": [20, 36, 39], "logout": [20, 39], "dockerhub": 20, "could": 20, "rekcod": 20, "yourself": 20, "secrets3": 20, "mydockercfg": 20, "login_result": 20, "serveraddress": 20, "testus": 20, "olaf": 20, "kilian": 20, "olsaki": 20, "ansible_port": 21, "ansible_ssh_private_kei": 21, "dm_": 21, "daemon_env": 21, "silent": 21, "successfulli": 21, "token": [21, 32, 34], "running_requir": 21, "region": 21, "docker_machine_node_attribut": 21, "digitalocean": 21, "mymachin": 21, "drivernam": 21, "digit": 21, "dm_tag": 21, "behaviour": 21, "ansible_ssh_common_arg": 21, "stricthostkeycheck": 21, "ximon": 21, "eighteen": 21, "ximon18": 21, "docker_network": [22, 39, 41], "configfrom": 22, "configonli": 22, "2018": [22, 37], "07t01": 22, "47": 22, "51": 22, "250835114": 22, "06": 22, "enableipv6": 22, "ipam": [22, 23], "gatewai": [22, 23], "168": [22, 34], "96": 22, "0856968545f22026c41c2c7c3d448319d3b4a6a03a40b148b3ac4031696d1c0a": 22, "ingress": [22, 36], "intern": [22, 23], "f2700bba": 22, "scope": [22, 23, 37], "dave": [22, 23], "bendit": [22, 23], "dbendit": [22, 23], "subcommand": [23, 26, 37, 38], "increment": 23, "canon": 23, "global": [23, 36, 39], "worker": [23, 25, 33, 34], "care": 23, "reli": [23, 42], "overlai": 23, "3rd": [23, 38], "parti": [23, 38], "driver_opt": [23, 38], "consult": [23, 38], "enable_ipv6": 23, "disconnect": 23, "restrict": 23, "extern": [23, 34, 36], "ipam_config": 23, "iprang": 23, "spell": 23, "notat": 23, "aux_address": 23, "auxiliari": 23, "cidr": [23, 34], "ipam_driv": 23, "ipam_driver_opt": 23, "reconnect": 23, "ones": [23, 25], "fix": 23, "loop": 23, "properli": 23, "network_on": 23, "container_a": 23, "container_b": 23, "container_c": 23, "fulllist": 23, "network_two": 23, "net2": 23, "network_thre": 23, "27": [23, 36], "24": [23, 27], "26": 23, "host1": 23, "host2": 23, "network_four": 23, "network_ipv6_on": 23, "fdd1": 23, "ac8c": 23, "0557": 23, "7ce1": 23, "64": 23, "network_ipv6_two": 23, "7ce2": 23, "ben": 23, "keith": 23, "keitwb": 23, "cluster": [24, 25, 41], "self": 24, "presenc": 24, "mynod": [24, 25, 32, 34], "mynode1": 24, "mynode2": 24, "left": 24, "unreach": 24, "role": [25, 34, 36], "activ": 25, "drain": 25, "docker_swarm": [25, 39, 40, 41], "labels_st": 25, "labels_to_remov": 25, "made": [25, 36], "thierri": [25, 34], "bouvet": [25, 34], "tbouvet": [25, 34], "enable_timeout": 26, "force_remov": 26, "plugin_nam": 26, "plugin_opt": 26, "plugin_on": 26, "weavework": 26, "net": 26, "latest_releas": 26, "ipalloc_rang": 26, "weave_password": 26, "sakar": 26, "mehra": 26, "sakar97": 26, "vladimir": 26, "porshkevich": 26, "builder_cach": 27, "builder": 27, "hour": 27, "ago": 27, "builder_cache_space_reclaim": 27, "reclaim": 27, "containers_space_reclaim": 27, "images_space_reclaim": 27, "volumes_space_reclaim": 27, "secret_id": [28, 36], "secret_nam": [28, 36], "awesome_secret": 28, "docker_stack_task_info": [29, 39, 41], "grafana": 29, "orchestr": [29, 39], "kubernet": [29, 39], "jose": [29, 31], "angel": [29, 31], "munoz": [29, 31], "imjoseangel": [29, 31], "jsondiff": 30, "absent_retri": 30, "larger": 30, "last": 30, "absent_retries_interv": 30, "nest": 30, "deploi": 30, "resolve_imag": [30, 36], "with_registry_auth": 30, "auth": 30, "mystack": 30, "opt": [30, 36], "envvar": 30, "stack_spec_diff": 30, "spec": [30, 33], "test_stack_test_servic": 30, "tasktempl": 30, "containerspec": 30, "dario": [30, 36], "zanzico": [30, 36], "dariko": [30, 36], "requir": [31, 42], "test_stack": 31, "currentst": 31, "desiredst": 31, "7wqv6m02ugkw": 31, "messag": 32, "nodes_filt": 32, "services_filt": 32, "tasks_filt": 32, "unlock_kei": 32, "unlock": [32, 34], "ignore_error": 32, "docker_swarm_act": 32, "docker_swarm_manag": 32, "swarm_fact": [32, 34], "swarm_unlock_kei": 32, "return": [33, 41], "leader": [33, 34], "nonlead": 33, "include_host_uri": 33, "attribut": 33, "ansible_host_uri": 33, "uri": 33, "modif": 33, "include_host_uri_port": 33, "time_out": 33, "enginevers": 33, "x86_64": 33, "arch_x86_64": 33, "exompl": 33, "w": 33, "label_product": 33, "hint": 33, "charact": 33, "safe": 33, "stefan": 33, "heitm\u00fcller": 33, "morph027": 33, "advertise_addr": 34, "reachabl": 34, "advertis": 34, "4567": 34, "eth0": 34, "initialis": 34, "autolock_manag": 34, "lock": 34, "docker_swarm_info": [34, 39, 41], "ca_force_rot": 34, "whose": 34, "purpos": 34, "sign": 34, "data_path_addr": 34, "traffic": 34, "data_path_port": 34, "9789": 34, "40": [34, 36], "default_addr_pool": 34, "pool": 34, "39": 34, "dispatcher_heartbeat_period": 34, "delai": [34, 36], "nanosecond": 34, "heartbeat": 34, "dispatch": 34, "5000000000": [34, 36], "election_tick": 34, "tick": 34, "trigger": [34, 36], "elect": 34, "heartbeat_tick": 34, "join_token": 34, "censor": 34, "keep_old_snapshot": 34, "snapshot": 34, "beyond": 34, "docker_nod": [34, 39, 41], "listen_addr": 34, "inter": 34, "2377": 34, "log_entries_for_slow_follow": 34, "sync": 34, "slow": 34, "node_cert_expiri": 34, "expiri": 34, "90": 34, "dai": 34, "7776000000000000": 34, "node_id": 34, "rotate_manager_token": 34, "rotat": 34, "rotate_worker_token": 34, "signing_ca_cert": 34, "leaf": 34, "signing_ca_kei": 34, "snapshot_interv": 34, "10000": 34, "demot": 34, "subnet_s": 34, "mask": 34, "task_history_retention_limit": 34, "histori": 34, "swmtkn": 34, "xxxxx": 34, "ens10": 34, "jointoken": 34, "value_specified_in_no_log_paramet": 34, "unlockkei": 34, "swmkei": 34, "xxx": 34, "hann": [35, 36], "ljungberg": [35, 36], "hannseman": [35, 36], "filenam": 36, "octal": 36, "0644": 36, "0444": 36, "container_label": 36, "dns_option": 36, "dns_search": 36, "endpoint_mod": 36, "endpoint": 36, "vip": 36, "dnsrr": 36, "signific": 36, "force_upd": 36, "37": 36, "replic": 36, "driver_config": 36, "copi": [36, 39, 41], "readonli": 36, "placement": 36, "constraint": 36, "pref": 36, "replicas_max_per_nod": 36, "target_port": 36, "replica": 36, "instanti": 36, "reserv": 36, "restart_config": 36, "max_attempt": 36, "rollback_config": 36, "roll": 36, "rollback": 36, "failure_act": 36, "max_failure_ratio": 36, "fraction": 36, "max": 36, "ratio": 36, "monitor": 36, "parallel": 36, "simultan": 36, "secret": [36, 39, 41], "unspecifi": 36, "stop_grace_period": 36, "grace": 36, "update_config": 36, "invok": 36, "workdir": 36, "3600": 36, "remote_tmp": 36, "webapp": 36, "depart": 36, "financ": 36, "envvar1": 36, "envvar2": 36, "app": [36, 39], "fluentd": 36, "24224": 36, "async": 36, "120": 36, "edg": 36, "spread": 36, "operatingsystem": 36, "myconfig_nam": 36, "mynetwork": 36, "mynetwork_alia": 36, "mysecret_nam": 36, "50": 36, "50m": 36, "alter": 36, "swarm_servic": 36, "ansible_swarm_servic": 36, "ansible_docker_servic": 36, "x": 36, "90000000000": 36, "30000000000": 36, "10000000000": 36, "healthcheck_dis": 36, "b3dbf31b77fd99d9c08f780ce6f5282aba076d70a513a8be859d8d3a4d0c92b8": 36, "limit_cpu": 36, "limit_memori": 36, "52428800": 36, "log_driver_opt": 36, "placement_prefer": 36, "reserve_cpu": 36, "reserve_memori": 36, "20971520": 36, "restart_policy_attempt": 36, "restart_policy_delai": 36, "restart_policy_window": 36, "120000000000": 36, "update_delai": 36, "update_failure_act": 36, "update_max_failure_ratio": 36, "update_monitor": 36, "update_ord": 36, "update_parallel": 36, "jason": 36, "witkowski": 36, "jwitko": 36, "volume_nam": [37, 38], "09t17": 37, "43": 37, "44": 37, "mountpoint": 37, "bd3f6172": 37, "_data": 37, "commandlin": 38, "volume_cr": 38, "lost": 38, "volume_on": 38, "volume_two": 38, "btrf": 38, "sda2": 38, "alex": 38, "gr\u00f6nholm": 38, "agronholm": 38, "commun": [39, 40], "collect": [39, 41], "offer": 39, "sever": 39, "python_requirements_info": 39, "note": 39, "inventori": [39, 40], "pypi": 39, "realli": 39, "broken": 39, "doubt": 39, "nor": 39, "wrap": 39, "exec": 39, "posix": 39, "dynam": [39, 41], "individu": 39, "docker_host_info": [39, 41], "docker_login": [39, 41], "docker_prun": [39, 41], "import": 39, "tarbal": 39, "docker_network_info": [39, 41], "docker_volume_info": [39, 41], "docker_volum": [39, 41], "lifecycl": 39, "abil": 39, "docker_container_copy_into": [39, 41], "docker_container_exec": [39, 41], "docker_container_info": [39, 41], "docker_plugin": [39, 41], "next": 39, "docker_machin": [39, 40, 41], "docker_stack": [39, 41], "docker_stack_info": [39, 41], "docker_node_info": [39, 41], "docker_secret": [39, 41], "docker_swarm_servic": [39, 41], "docker_swarm_service_info": [39, 41], "bender": 39, "openshift": 39, "laptop": 39, "fulli": 39, "scalabl": 39, "cloud": 39, "moment": 39, "declar": 40, "docker": 40, "ansible_nsenter_pid": [40, 42], "nsenter": [40, 41], "fine": [40, 42], "author": 41, "matrix": 41, "room": 41, "im": 41, "question": 41, "irc": 41, "channel": 41, "libera": 41, "mail": 41, "subscrib": 41, "current_container_fact": 41, "multi": 41, "applic": 41, "model": 42, "container": 42, "enter": 42, "systemd": 42, "nsenter_pid": 42, "nsenter_connect": 42, "jeff": 42, "goldschraf": 42, "jgoldschraf": 42}, "objects": {"": [[40, 0, 1, "-", "ANSIBLE_DOCKER_TIMEOUT"], [40, 0, 1, "-", "ANSIBLE_INVENTORY_USE_EXTRA_VARS"], [40, 0, 1, "-", "ANSIBLE_NSENTER_PID"], [39, 0, 1, "-", "DOCKER_API_VERSION"], [39, 0, 1, "-", "DOCKER_CERT_PATH"], [39, 0, 1, "-", "DOCKER_HOST"], [39, 0, 1, "-", "DOCKER_SSL_VERSION"], [39, 0, 1, "-", "DOCKER_TIMEOUT"], [39, 0, 1, "-", "DOCKER_TLS"], [39, 0, 1, "-", "DOCKER_TLS_HOSTNAME"], [39, 0, 1, "-", "DOCKER_TLS_VERIFY"]]}, "objtypes": {"0": "std:envvar"}, "objnames": {"0": ["std", "envvar", "environment variable"]}, "titleterms": {"commun": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42], "docker": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42], "current_container_fact": 0, "modul": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 41], "return": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "fact": [0, 8, 11, 22, 24, 32, 37], "about": [0, 8, 11, 22, 24, 32, 35, 37], "whether": 0, "run": [0, 1, 5, 42], "contain": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 39, 42], "synopsi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 42], "attribut": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "exampl": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "author": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 42], "collect": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42], "link": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "docker_api": 1, "connect": [1, 5, 39, 41, 42], "task": [1, 5, 31], "requir": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39], "paramet": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42], "note": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 42], "docker_compos": 2, "manag": [2, 3, 4, 9, 15, 23, 24, 25, 26, 28, 34, 35, 38, 39], "multi": [2, 3], "applic": [2, 3], "compos": [2, 3, 39], "v1": 2, "see": [2, 3, 12, 14, 15, 16, 17, 18, 19, 29], "also": [2, 3, 12, 14, 15, 16, 17, 18, 19, 29], "valu": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38], "docker_compose_v2": 3, "cli": 3, "plugin": [3, 10, 26, 33, 41], "docker_config": 4, "config": 4, "docker_container_copy_into": 6, "copi": 6, "file": 6, "docker_container_exec": 7, "execut": [7, 42], "command": 7, "docker_container_info": 8, "retriev": [8, 11, 22, 24, 32, 35, 37], "docker_contain": [9, 10], "inventori": [10, 21, 33, 41], "ansibl": [10, 33], "dynam": [10, 33], "docker_host_info": 11, "host": [11, 42], "list": 11, "object": [11, 27], "servic": [11, 35, 36, 39], "docker_image_build": 12, "build": 12, "imag": [12, 13, 14, 15, 16, 17, 18, 19, 39], "us": 12, "buildx": 12, "docker_image_info": 13, "inspect": 13, "docker_image_load": 14, "load": 14, "": 14, "from": [14, 16, 24, 35], "archiv": 14, "docker_imag": 15, "docker_image_pul": 16, "pull": 16, "registri": [16, 17, 20], "docker_image_push": 17, "push": 17, "docker_image_remov": 18, "remov": 18, "docker_image_tag": 19, "tag": 19, "new": 19, "name": 19, "docker_login": 20, "log": 20, "docker_machin": 21, "machin": [21, 39], "sourc": 21, "docker_network_info": 22, "network": [22, 23, 39], "docker_network": 23, "docker_node_info": 24, "swarm": [24, 25, 32, 33, 34, 35, 36, 39], "node": [24, 25, 33], "docker_nod": 25, "docker_plugin": 26, "docker_prun": 27, "allow": 27, "prune": 27, "variou": 27, "docker_secret": 28, "secret": 28, "docker_stack_info": 29, "inform": [29, 31, 35], "all": [29, 40], "stack": [29, 30, 31, 39], "docker_stack": 30, "docker_stack_task_info": 31, "docker_swarm_info": 32, "cluster": [32, 34], "docker_swarm": [33, 34], "docker_swarm_service_info": 35, "docker_swarm_servic": 36, "docker_volume_info": 37, "volum": [37, 38, 39], "docker_volum": 38, "guid": [39, 41], "api": 39, "environ": [39, 40], "variabl": [39, 40], "plain": 39, "daemon": 39, "configur": 39, "help": 39, "index": [40, 41], "descript": 41, "scenario": 41, "nsenter": 42, "control": 42}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"community.docker.current_container_facts module \u2013 Return facts about whether the module runs in a container": [[0, "community-docker-current-container-facts-module-return-facts-about-whether-the-module-runs-in-a-container"]], "Synopsis": [[0, "synopsis"], [1, "synopsis"], [2, "synopsis"], [3, "synopsis"], [4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [9, "synopsis"], [10, "synopsis"], [11, "synopsis"], [12, "synopsis"], [13, "synopsis"], [14, "synopsis"], [15, "synopsis"], [16, "synopsis"], [17, "synopsis"], [18, "synopsis"], [19, "synopsis"], [20, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"], [32, "synopsis"], [33, "synopsis"], [34, "synopsis"], [35, "synopsis"], [36, "synopsis"], [37, "synopsis"], [38, "synopsis"], [42, "synopsis"]], "Attributes": [[0, "attributes"], [2, "attributes"], [3, "attributes"], [4, "attributes"], [6, "attributes"], [7, "attributes"], [8, "attributes"], [9, "attributes"], [11, "attributes"], [12, "attributes"], [13, "attributes"], [14, "attributes"], [15, "attributes"], [16, "attributes"], [17, "attributes"], [18, "attributes"], [19, "attributes"], [20, "attributes"], [22, "attributes"], [23, "attributes"], [24, "attributes"], [25, "attributes"], [26, "attributes"], [27, "attributes"], [28, "attributes"], [29, "attributes"], [30, "attributes"], [31, "attributes"], [32, "attributes"], [34, "attributes"], [35, "attributes"], [36, "attributes"], [37, "attributes"], [38, "attributes"]], "Examples": [[0, "examples"], [2, "examples"], [3, "examples"], [4, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [9, "examples"], [10, "examples"], [11, "examples"], [12, "examples"], [13, "examples"], [14, "examples"], [15, "examples"], [16, "examples"], [17, "examples"], [18, "examples"], [19, "examples"], [20, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"], [32, "examples"], [33, "examples"], [34, "examples"], [35, "examples"], [36, "examples"], [37, "examples"], [38, "examples"]], "Returned Facts": [[0, "returned-facts"]], "Authors": [[0, "authors"], [1, "authors"], [2, "authors"], [3, "authors"], [4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [9, "authors"], [10, "authors"], [11, "authors"], [12, "authors"], [13, "authors"], [14, "authors"], [15, "authors"], [16, "authors"], [17, "authors"], [18, "authors"], [19, "authors"], [20, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"], [32, "authors"], [33, "authors"], [34, "authors"], [35, "authors"], [36, "authors"], [37, "authors"], [38, "authors"], [42, "authors"]], "Collection links": [[0, "collection-links"], [1, "collection-links"], [2, "collection-links"], [3, "collection-links"], [4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [9, "collection-links"], [10, "collection-links"], [11, "collection-links"], [12, "collection-links"], [13, "collection-links"], [14, "collection-links"], [15, "collection-links"], [16, "collection-links"], [17, "collection-links"], [18, "collection-links"], [19, "collection-links"], [20, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"], [32, "collection-links"], [33, "collection-links"], [34, "collection-links"], [35, "collection-links"], [36, "collection-links"], [37, "collection-links"], [38, "collection-links"], [42, "collection-links"]], "community.docker.docker_api connection \u2013 Run tasks in docker containers": [[1, "community-docker-docker-api-connection-run-tasks-in-docker-containers"]], "Requirements": [[1, "requirements"], [2, "requirements"], [3, "requirements"], [4, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [12, "requirements"], [13, "requirements"], [14, "requirements"], [15, "requirements"], [16, "requirements"], [17, "requirements"], [18, "requirements"], [19, "requirements"], [20, "requirements"], [21, "requirements"], [22, "requirements"], [23, "requirements"], [24, "requirements"], [25, "requirements"], [26, "requirements"], [27, "requirements"], [28, "requirements"], [30, "requirements"], [32, "requirements"], [33, "requirements"], [34, "requirements"], [35, "requirements"], [36, "requirements"], [37, "requirements"], [38, "requirements"], [39, "requirements"]], "Parameters": [[1, "parameters"], [2, "parameters"], [3, "parameters"], [4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [8, "parameters"], [9, "parameters"], [10, "parameters"], [11, "parameters"], [12, "parameters"], [13, "parameters"], [14, "parameters"], [15, "parameters"], [16, "parameters"], [17, "parameters"], [18, "parameters"], [19, "parameters"], [20, "parameters"], [21, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [28, "parameters"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [33, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [37, "parameters"], [38, "parameters"], [39, "parameters"], [42, "parameters"]], "Notes": [[1, "notes"], [2, "notes"], [3, "notes"], [4, "notes"], [6, "notes"], [7, "notes"], [8, "notes"], [9, "notes"], [10, "notes"], [11, "notes"], [12, "notes"], [13, "notes"], [14, "notes"], [15, "notes"], [16, "notes"], [17, "notes"], [18, "notes"], [19, "notes"], [20, "notes"], [22, "notes"], [23, "notes"], [24, "notes"], [25, "notes"], [26, "notes"], [27, "notes"], [28, "notes"], [32, "notes"], [34, "notes"], [35, "notes"], [36, "notes"], [37, "notes"], [38, "notes"], [42, "notes"]], "community.docker.docker_compose module \u2013 Manage multi-container Docker applications with Docker Compose V1": [[2, "community-docker-docker-compose-module-manage-multi-container-docker-applications-with-docker-compose-v1"]], "See Also": [[2, "see-also"], [3, "see-also"], [12, "see-also"], [14, "see-also"], [15, "see-also"], [16, "see-also"], [17, "see-also"], [18, "see-also"], [19, "see-also"], [29, "see-also"]], "Return Values": [[2, "return-values"], [3, "return-values"], [4, "return-values"], [6, "return-values"], [7, "return-values"], [8, "return-values"], [9, "return-values"], [11, "return-values"], [12, "return-values"], [13, "return-values"], [14, "return-values"], [15, "return-values"], [16, "return-values"], [17, "return-values"], [18, "return-values"], [19, "return-values"], [20, "return-values"], [22, "return-values"], [23, "return-values"], [24, "return-values"], [25, "return-values"], [26, "return-values"], [27, "return-values"], [28, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [32, "return-values"], [34, "return-values"], [35, "return-values"], [36, "return-values"], [37, "return-values"], [38, "return-values"]], "community.docker.docker_compose_v2 module \u2013 Manage multi-container Docker applications with Docker Compose CLI plugin": [[3, "community-docker-docker-compose-v2-module-manage-multi-container-docker-applications-with-docker-compose-cli-plugin"]], "community.docker.docker_config module \u2013 Manage docker configs.": [[4, "community-docker-docker-config-module-manage-docker-configs"]], "community.docker.docker connection \u2013 Run tasks in docker containers": [[5, "community-docker-docker-connection-run-tasks-in-docker-containers"]], "community.docker.docker_container_copy_into module \u2013 Copy a file into a Docker container": [[6, "community-docker-docker-container-copy-into-module-copy-a-file-into-a-docker-container"]], "community.docker.docker_container_exec module \u2013 Execute command in a docker container": [[7, "community-docker-docker-container-exec-module-execute-command-in-a-docker-container"]], "community.docker.docker_container_info module \u2013 Retrieves facts about docker container": [[8, "community-docker-docker-container-info-module-retrieves-facts-about-docker-container"]], "community.docker.docker_container module \u2013 manage Docker containers": [[9, "community-docker-docker-container-module-manage-docker-containers"]], "community.docker.docker_containers inventory \u2013 Ansible dynamic inventory plugin for Docker containers": [[10, "community-docker-docker-containers-inventory-ansible-dynamic-inventory-plugin-for-docker-containers"]], "community.docker.docker_host_info module \u2013 Retrieves facts about docker host and lists of objects of the services.": [[11, "community-docker-docker-host-info-module-retrieves-facts-about-docker-host-and-lists-of-objects-of-the-services"]], "community.docker.docker_image_build module \u2013 Build Docker images using Docker buildx": [[12, "community-docker-docker-image-build-module-build-docker-images-using-docker-buildx"]], "community.docker.docker_image_info module \u2013 Inspect docker images": [[13, "community-docker-docker-image-info-module-inspect-docker-images"]], "community.docker.docker_image_load module \u2013 Load docker image(s) from archives": [[14, "community-docker-docker-image-load-module-load-docker-image-s-from-archives"]], "community.docker.docker_image module \u2013 Manage docker images": [[15, "community-docker-docker-image-module-manage-docker-images"]], "community.docker.docker_image_pull module \u2013 Pull Docker images from registries": [[16, "community-docker-docker-image-pull-module-pull-docker-images-from-registries"]], "community.docker.docker_image_push module \u2013 Push Docker images to registries": [[17, "community-docker-docker-image-push-module-push-docker-images-to-registries"]], "community.docker.docker_image_remove module \u2013 Remove Docker images": [[18, "community-docker-docker-image-remove-module-remove-docker-images"]], "community.docker.docker_image_tag module \u2013 Tag Docker images with new names and/or tags": [[19, "community-docker-docker-image-tag-module-tag-docker-images-with-new-names-and-or-tags"]], "community.docker.docker_login module \u2013 Log into a Docker registry.": [[20, "community-docker-docker-login-module-log-into-a-docker-registry"]], "community.docker.docker_machine inventory \u2013 Docker Machine inventory source": [[21, "community-docker-docker-machine-inventory-docker-machine-inventory-source"]], "community.docker.docker_network_info module \u2013 Retrieves facts about docker network": [[22, "community-docker-docker-network-info-module-retrieves-facts-about-docker-network"]], "community.docker.docker_network module \u2013 Manage Docker networks": [[23, "community-docker-docker-network-module-manage-docker-networks"]], "community.docker.docker_node_info module \u2013 Retrieves facts about docker swarm node from Swarm Manager": [[24, "community-docker-docker-node-info-module-retrieves-facts-about-docker-swarm-node-from-swarm-manager"]], "community.docker.docker_node module \u2013 Manage Docker Swarm node": [[25, "community-docker-docker-node-module-manage-docker-swarm-node"]], "community.docker.docker_plugin module \u2013 Manage Docker plugins": [[26, "community-docker-docker-plugin-module-manage-docker-plugins"]], "community.docker.docker_prune module \u2013 Allows to prune various docker objects": [[27, "community-docker-docker-prune-module-allows-to-prune-various-docker-objects"]], "community.docker.docker_secret module \u2013 Manage docker secrets.": [[28, "community-docker-docker-secret-module-manage-docker-secrets"]], "community.docker.docker_stack_info module \u2013 Return information on all docker stacks": [[29, "community-docker-docker-stack-info-module-return-information-on-all-docker-stacks"]], "community.docker.docker_stack module \u2013 docker stack module": [[30, "community-docker-docker-stack-module-docker-stack-module"]], "community.docker.docker_stack_task_info module \u2013 Return information of the tasks on a docker stack": [[31, "community-docker-docker-stack-task-info-module-return-information-of-the-tasks-on-a-docker-stack"]], "community.docker.docker_swarm_info module \u2013 Retrieves facts about Docker Swarm cluster.": [[32, "community-docker-docker-swarm-info-module-retrieves-facts-about-docker-swarm-cluster"]], "community.docker.docker_swarm inventory \u2013 Ansible dynamic inventory plugin for Docker swarm nodes.": [[33, "community-docker-docker-swarm-inventory-ansible-dynamic-inventory-plugin-for-docker-swarm-nodes"]], "community.docker.docker_swarm module \u2013 Manage Swarm cluster": [[34, "community-docker-docker-swarm-module-manage-swarm-cluster"]], "community.docker.docker_swarm_service_info module \u2013 Retrieves information about docker services from a Swarm Manager": [[35, "community-docker-docker-swarm-service-info-module-retrieves-information-about-docker-services-from-a-swarm-manager"]], "community.docker.docker_swarm_service module \u2013 docker swarm service": [[36, "community-docker-docker-swarm-service-module-docker-swarm-service"]], "community.docker.docker_volume_info module \u2013 Retrieve facts about Docker volumes": [[37, "community-docker-docker-volume-info-module-retrieve-facts-about-docker-volumes"]], "community.docker.docker_volume module \u2013 Manage Docker volumes": [[38, "community-docker-docker-volume-module-manage-docker-volumes"]], "Docker Guide": [[39, "docker-guide"]], "Connecting to the Docker API": [[39, "connecting-to-the-docker-api"]], "Environment variables": [[39, "environment-variables"]], "Plain Docker daemon: images, networks, volumes, and containers": [[39, "plain-docker-daemon-images-networks-volumes-and-containers"]], "Docker Compose": [[39, "docker-compose"]], "Docker Machine": [[39, "docker-machine"]], "Docker stack": [[39, "docker-stack"]], "Docker Swarm": [[39, "docker-swarm"]], "Swarm management": [[39, "swarm-management"]], "Configuration management": [[39, "configuration-management"]], "Swarm services": [[39, "swarm-services"]], "Helpful links": [[39, "helpful-links"]], "Index of all Collection Environment Variables": [[40, "index-of-all-collection-environment-variables"]], "Community.Docker": [[41, "community-docker"]], "Description": [[41, "description"]], "Communication": [[41, "communication"]], "Scenario Guide": [[41, "scenario-guide"]], "Plugin Index": [[41, "plugin-index"]], "Modules": [[41, "modules"]], "Connection Plugins": [[41, "connection-plugins"]], "Inventory Plugins": [[41, "inventory-plugins"]], "community.docker.nsenter connection \u2013 execute on host running controller container": [[42, "community-docker-nsenter-connection-execute-on-host-running-controller-container"]]}, "indexentries": {"ansible_docker_timeout": [[1, "index-1"], [5, "index-1"], [40, "envvar-ANSIBLE_DOCKER_TIMEOUT"]], "ansible_remote_user": [[1, "index-2"], [5, "index-2"]], "ansible_timeout": [[1, "index-0"], [5, "index-0"]], "environment variable": [[1, "index-0"], [1, "index-1"], [1, "index-2"], [5, "index-0"], [5, "index-1"], [5, "index-2"], [10, "index-0"], [21, "index-0"], [33, "index-0"], [39, "envvar-DOCKER_API_VERSION"], [39, "envvar-DOCKER_CERT_PATH"], [39, "envvar-DOCKER_HOST"], [39, "envvar-DOCKER_SSL_VERSION"], [39, "envvar-DOCKER_TIMEOUT"], [39, "envvar-DOCKER_TLS"], [39, "envvar-DOCKER_TLS_HOSTNAME"], [39, "envvar-DOCKER_TLS_VERIFY"], [40, "envvar-ANSIBLE_DOCKER_TIMEOUT"], [40, "envvar-ANSIBLE_INVENTORY_USE_EXTRA_VARS"], [40, "envvar-ANSIBLE_NSENTER_PID"], [42, "index-0"]], "ansible_inventory_use_extra_vars": [[10, "index-0"], [21, "index-0"], [33, "index-0"], [40, "envvar-ANSIBLE_INVENTORY_USE_EXTRA_VARS"]], "docker_api_version": [[39, "envvar-DOCKER_API_VERSION"]], "docker_cert_path": [[39, "envvar-DOCKER_CERT_PATH"]], "docker_host": [[39, "envvar-DOCKER_HOST"]], "docker_ssl_version": [[39, "envvar-DOCKER_SSL_VERSION"]], "docker_timeout": [[39, "envvar-DOCKER_TIMEOUT"]], "docker_tls": [[39, "envvar-DOCKER_TLS"]], "docker_tls_hostname": [[39, "envvar-DOCKER_TLS_HOSTNAME"]], "docker_tls_verify": [[39, "envvar-DOCKER_TLS_VERIFY"]], "ansible_nsenter_pid": [[40, "envvar-ANSIBLE_NSENTER_PID"], [42, "index-0"]]}}) \ No newline at end of file
Modules
+