diff --git a/branch/stable-3/_static/basic.css b/branch/stable-3/_static/basic.css index 7ebbd6d0..4738b2ed 100644 --- a/branch/stable-3/_static/basic.css +++ b/branch/stable-3/_static/basic.css @@ -741,14 +741,6 @@ abbr, acronym { cursor: help; } -.translated { - background-color: rgba(207, 255, 207, 0.2) -} - -.untranslated { - background-color: rgba(255, 207, 207, 0.2) -} - /* -- code displays --------------------------------------------------------- */ pre { diff --git a/branch/stable-3/_static/searchtools.js b/branch/stable-3/_static/searchtools.js index 2c774d17..91f4be57 100644 --- a/branch/stable-3/_static/searchtools.js +++ b/branch/stable-3/_static/searchtools.js @@ -513,9 +513,11 @@ const Search = { // perform the search on the required terms searchTerms.forEach((word) => { const files = []; + // find documents, if any, containing the query word in their text/title term indices + // use Object.hasOwnProperty to avoid mismatching against prototype properties const arr = [ - { files: terms[word], score: Scorer.term }, - { files: titleTerms[word], score: Scorer.title }, + { files: terms.hasOwnProperty(word) ? terms[word] : undefined, score: Scorer.term }, + { files: titleTerms.hasOwnProperty(word) ? titleTerms[word] : undefined, score: Scorer.title }, ]; // add support for partial matches if (word.length > 2) { @@ -547,8 +549,9 @@ const Search = { // set score for the word in each file recordFiles.forEach((file) => { - if (!scoreMap.has(file)) scoreMap.set(file, {}); - scoreMap.get(file)[word] = record.score; + if (!scoreMap.has(file)) scoreMap.set(file, new Map()); + const fileScores = scoreMap.get(file); + fileScores.set(word, record.score); }); }); @@ -587,7 +590,7 @@ const Search = { break; // select one (max) score for the file. - const score = Math.max(...wordList.map((w) => scoreMap.get(file)[w])); + const score = Math.max(...wordList.map((w) => scoreMap.get(file).get(w))); // add result to the result list results.push([ docNames[file], diff --git a/branch/stable-3/searchindex.js b/branch/stable-3/searchindex.js index 4ecf09fc..560baa48 100644 --- a/branch/stable-3/searchindex.js +++ b/branch/stable-3/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"Attributes": [[1, "attributes"], [3, "attributes"], [4, "attributes"], [5, "attributes"], [6, "attributes"], [7, "attributes"], [8, "attributes"], [10, "attributes"], [11, "attributes"], [12, "attributes"], [13, "attributes"], [15, "attributes"], [16, "attributes"], [17, "attributes"], [18, "attributes"], [19, "attributes"], [20, "attributes"], [21, "attributes"], [22, "attributes"], [23, "attributes"], [24, "attributes"], [25, "attributes"], [27, "attributes"], [28, "attributes"], [29, "attributes"], [30, "attributes"], [31, "attributes"], [32, "attributes"], [33, "attributes"], [34, "attributes"], [35, "attributes"], [36, "attributes"], [37, "attributes"], [39, "attributes"], [40, "attributes"], [41, "attributes"], [42, "attributes"], [43, "attributes"]], "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"], [39, "authors"], [40, "authors"], [41, "authors"], [42, "authors"], [43, "authors"], [47, "authors"]], "Breaking Changes / Porting Guide": [[0, "breaking-changes-porting-guide"], [0, "id135"], [0, "id163"]], "Bugfixes": [[0, "bugfixes"], [0, "id2"], [0, "id4"], [0, "id6"], [0, "id8"], [0, "id10"], [0, "id13"], [0, "id16"], [0, "id19"], [0, "id21"], [0, "id23"], [0, "id25"], [0, "id27"], [0, "id34"], [0, "id36"], [0, "id39"], [0, "id42"], [0, "id46"], [0, "id51"], [0, "id53"], [0, "id55"], [0, "id57"], [0, "id61"], [0, "id63"], [0, "id66"], [0, "id72"], [0, "id74"], [0, "id77"], [0, "id80"], [0, "id82"], [0, "id85"], [0, "id87"], [0, "id95"], [0, "id97"], [0, "id102"], [0, "id106"], [0, "id110"], [0, "id112"], [0, "id117"], [0, "id120"], [0, "id122"], [0, "id125"], [0, "id127"], [0, "id130"], [0, "id132"], [0, "id141"], [0, "id145"], [0, "id148"], [0, "id152"], [0, "id156"], [0, "id159"], [0, "id165"], [0, "id168"], [0, "id173"], [0, "id176"], [0, "id180"], [0, "id185"], [0, "id191"]], "Changelog": [[46, "changelog"]], "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"], [39, "collection-links"], [40, "collection-links"], [41, "collection-links"], [42, "collection-links"], [43, "collection-links"], [47, "collection-links"]], "Communication": [[46, "communication"]], "Community.Docker": [[46, null]], "Community.Docker Release Notes": [[0, null]], "Configuration management": [[44, "configuration-management"]], "Connecting to the Docker API": [[44, "connecting-to-the-docker-api"]], "Connection": [[0, "connection"], [0, "id182"]], "Connection Plugins": [[46, "connection-plugins"]], "DEPRECATED": [[3, "deprecated"]], "Deprecated Features": [[0, "deprecated-features"], [0, "id31"], [0, "id50"], [0, "id91"], [0, "id105"], [0, "id109"], [0, "id136"], [0, "id144"], [0, "id155"], [0, "id179"]], "Description": [[46, "description"]], "Docker Compose": [[44, "docker-compose"]], "Docker Compose v1": [[44, "docker-compose-v1"]], "Docker Compose v2": [[44, "docker-compose-v2"]], "Docker Guide": [[44, null]], "Docker Machine": [[44, "docker-machine"]], "Docker Swarm": [[44, "docker-swarm"]], "Docker Swarm stack": [[44, "docker-swarm-stack"]], "Environment variables": [[44, "environment-variables"]], "Examples": [[1, "examples"], [3, "examples"], [4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "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"], [39, "examples"], [40, "examples"], [41, "examples"], [42, "examples"], [43, "examples"]], "Index of all Collection Environment Variables": [[45, null]], "Inventory": [[0, "inventory"]], "Inventory Plugins": [[46, "inventory-plugins"]], "Known Issues": [[0, "known-issues"], [0, "id17"], [0, "id28"], [0, "id59"], [0, "id64"], [0, "id69"]], "Major Changes": [[0, "major-changes"], [0, "id99"]], "Minor Changes": [[0, "minor-changes"], [0, "id18"], [0, "id30"], [0, "id33"], [0, "id38"], [0, "id41"], [0, "id45"], [0, "id49"], [0, "id68"], [0, "id76"], [0, "id84"], [0, "id90"], [0, "id93"], [0, "id100"], [0, "id104"], [0, "id108"], [0, "id114"], [0, "id116"], [0, "id119"], [0, "id124"], [0, "id129"], [0, "id139"], [0, "id143"], [0, "id147"], [0, "id150"], [0, "id154"], [0, "id158"], [0, "id162"], [0, "id167"], [0, "id175"], [0, "id178"], [0, "id187"], [0, "id189"]], "Module default group": [[44, "module-default-group"]], "Modules": [[46, "modules"]], "New Modules": [[0, "new-modules"], [0, "id43"], [0, "id47"], [0, "id78"], [0, "id160"], [0, "id169"], [0, "id183"]], "New Plugins": [[0, "new-plugins"], [0, "id181"]], "Notes": [[2, "notes"], [3, "notes"], [4, "notes"], [5, "notes"], [6, "notes"], [7, "notes"], [8, "notes"], [10, "notes"], [11, "notes"], [12, "notes"], [13, "notes"], [14, "notes"], [15, "notes"], [16, "notes"], [17, "notes"], [18, "notes"], [19, "notes"], [20, "notes"], [21, "notes"], [22, "notes"], [23, "notes"], [24, "notes"], [25, "notes"], [26, "notes"], [27, "notes"], [28, "notes"], [29, "notes"], [30, "notes"], [31, "notes"], [32, "notes"], [33, "notes"], [34, "notes"], [35, "notes"], [36, "notes"], [37, "notes"], [38, "notes"], [39, "notes"], [40, "notes"], [41, "notes"], [42, "notes"], [43, "notes"], [47, "notes"]], "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"], [29, "parameters"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [33, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [37, "parameters"], [38, "parameters"], [39, "parameters"], [40, "parameters"], [41, "parameters"], [42, "parameters"], [43, "parameters"], [44, "parameters"], [47, "parameters"]], "Plain Docker daemon: images, networks, volumes, and containers": [[44, "plain-docker-daemon-images-networks-volumes-and-containers"]], "Plugin Index": [[46, "plugin-index"]], "Release Summary": [[0, "release-summary"], [0, "id1"], [0, "id3"], [0, "id5"], [0, "id7"], [0, "id9"], [0, "id11"], [0, "id12"], [0, "id14"], [0, "id15"], [0, "id20"], [0, "id22"], [0, "id24"], [0, "id26"], [0, "id29"], [0, "id32"], [0, "id35"], [0, "id37"], [0, "id40"], [0, "id44"], [0, "id48"], [0, "id52"], [0, "id54"], [0, "id56"], [0, "id58"], [0, "id60"], [0, "id62"], [0, "id65"], [0, "id67"], [0, "id70"], [0, "id71"], [0, "id73"], [0, "id75"], [0, "id79"], [0, "id81"], [0, "id83"], [0, "id86"], [0, "id88"], [0, "id89"], [0, "id92"], [0, "id94"], [0, "id96"], [0, "id98"], [0, "id103"], [0, "id107"], [0, "id111"], [0, "id113"], [0, "id115"], [0, "id118"], [0, "id121"], [0, "id123"], [0, "id126"], [0, "id128"], [0, "id131"], [0, "id133"], [0, "id134"], [0, "id138"], [0, "id140"], [0, "id142"], [0, "id146"], [0, "id149"], [0, "id151"], [0, "id153"], [0, "id157"], [0, "id161"], [0, "id166"], [0, "id170"], [0, "id172"], [0, "id174"], [0, "id177"], [0, "id184"], [0, "id186"], [0, "id188"]], "Removed Features (previously deprecated)": [[0, "removed-features-previously-deprecated"], [0, "id137"], [0, "id190"]], "Requirements": [[2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "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"], [29, "requirements"], [30, "requirements"], [31, "requirements"], [32, "requirements"], [33, "requirements"], [34, "requirements"], [35, "requirements"], [36, "requirements"], [37, "requirements"], [38, "requirements"], [39, "requirements"], [40, "requirements"], [41, "requirements"], [42, "requirements"], [43, "requirements"], [44, "requirements"]], "Return Values": [[3, "return-values"], [4, "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"], [15, "return-values"], [16, "return-values"], [17, "return-values"], [18, "return-values"], [19, "return-values"], [20, "return-values"], [21, "return-values"], [22, "return-values"], [23, "return-values"], [24, "return-values"], [25, "return-values"], [27, "return-values"], [28, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [32, "return-values"], [33, "return-values"], [34, "return-values"], [35, "return-values"], [36, "return-values"], [37, "return-values"], [39, "return-values"], [40, "return-values"], [41, "return-values"], [42, "return-values"], [43, "return-values"]], "Returned Facts": [[1, "returned-facts"]], "Scenario Guide": [[46, "scenario-guide"]], "Security Fixes": [[0, "security-fixes"], [0, "id101"], [0, "id164"], [0, "id171"]], "See Also": [[3, "see-also"], [4, "see-also"], [5, "see-also"], [6, "see-also"], [7, "see-also"], [16, "see-also"], [17, "see-also"], [19, "see-also"], [20, "see-also"], [21, "see-also"], [22, "see-also"], [23, "see-also"], [24, "see-also"], [34, "see-also"]], "Status": [[3, "status"]], "Swarm management": [[44, "swarm-management"]], "Swarm services": [[44, "swarm-services"]], "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"], [39, "synopsis"], [40, "synopsis"], [41, "synopsis"], [42, "synopsis"], [43, "synopsis"], [47, "synopsis"]], "Topics": [[0, "topics"]], "community.docker.current_container_facts module \u2013 Return facts about whether the module runs in a container": [[1, null]], "community.docker.docker connection \u2013 Run tasks in docker containers": [[9, null]], "community.docker.docker_api connection \u2013 Run tasks in docker containers": [[2, null]], "community.docker.docker_compose module \u2013 Manage multi-container Docker applications with Docker Compose V1": [[3, null]], "community.docker.docker_compose_v2 module \u2013 Manage multi-container Docker applications with Docker Compose CLI plugin": [[5, null]], "community.docker.docker_compose_v2_exec module \u2013 Run command in a container of a Compose service": [[4, null]], "community.docker.docker_compose_v2_pull module \u2013 Pull a Docker compose project": [[6, null]], "community.docker.docker_compose_v2_run module \u2013 Run command in a new container of a Compose service": [[7, null]], "community.docker.docker_config module \u2013 Manage docker configs.": [[8, null]], "community.docker.docker_container module \u2013 manage Docker containers": [[13, null]], "community.docker.docker_container_copy_into module \u2013 Copy a file into a Docker container": [[10, null]], "community.docker.docker_container_exec module \u2013 Execute command in a docker container": [[11, null]], "community.docker.docker_container_info module \u2013 Retrieves facts about docker container": [[12, null]], "community.docker.docker_containers inventory \u2013 Ansible dynamic inventory plugin for Docker containers": [[14, null]], "community.docker.docker_host_info module \u2013 Retrieves facts about docker host and lists of objects of the services.": [[15, null]], "community.docker.docker_image module \u2013 Manage docker images": [[20, null]], "community.docker.docker_image_build module \u2013 Build Docker images using Docker buildx": [[16, null]], "community.docker.docker_image_export module \u2013 Export (archive) Docker images": [[17, null]], "community.docker.docker_image_info module \u2013 Inspect docker images": [[18, null]], "community.docker.docker_image_load module \u2013 Load docker image(s) from archives": [[19, null]], "community.docker.docker_image_pull module \u2013 Pull Docker images from registries": [[21, null]], "community.docker.docker_image_push module \u2013 Push Docker images to registries": [[22, null]], "community.docker.docker_image_remove module \u2013 Remove Docker images": [[23, null]], "community.docker.docker_image_tag module \u2013 Tag Docker images with new names and/or tags": [[24, null]], "community.docker.docker_login module \u2013 Log into a Docker registry.": [[25, null]], "community.docker.docker_machine inventory \u2013 Docker Machine inventory source": [[26, null]], "community.docker.docker_network module \u2013 Manage Docker networks": [[28, null]], "community.docker.docker_network_info module \u2013 Retrieves facts about docker network": [[27, null]], "community.docker.docker_node module \u2013 Manage Docker Swarm node": [[30, null]], "community.docker.docker_node_info module \u2013 Retrieves facts about docker swarm node from Swarm Manager": [[29, null]], "community.docker.docker_plugin module \u2013 Manage Docker plugins": [[31, null]], "community.docker.docker_prune module \u2013 Allows to prune various docker objects": [[32, null]], "community.docker.docker_secret module \u2013 Manage docker secrets.": [[33, null]], "community.docker.docker_stack module \u2013 docker stack module": [[35, null]], "community.docker.docker_stack_info module \u2013 Return information on all docker stacks": [[34, null]], "community.docker.docker_stack_task_info module \u2013 Return information of the tasks on a docker stack": [[36, null]], "community.docker.docker_swarm inventory \u2013 Ansible dynamic inventory plugin for Docker swarm nodes.": [[38, null]], "community.docker.docker_swarm module \u2013 Manage Swarm cluster": [[39, null]], "community.docker.docker_swarm_info module \u2013 Retrieves facts about Docker Swarm cluster.": [[37, null]], "community.docker.docker_swarm_service module \u2013 docker swarm service": [[41, null]], "community.docker.docker_swarm_service_info module \u2013 Retrieves information about docker services from a Swarm Manager": [[40, null]], "community.docker.docker_volume module \u2013 Manage Docker volumes": [[43, null]], "community.docker.docker_volume_info module \u2013 Retrieve facts about Docker volumes": [[42, null]], "community.docker.nsenter connection \u2013 execute on host running controller container": [[47, null]], "v0.1.0": [[0, "v0-1-0"]], "v1.0.0": [[0, "v1-0-0"]], "v1.0.1": [[0, "v1-0-1"]], "v1.1.0": [[0, "v1-1-0"]], "v1.10.0": [[0, "v1-10-0"]], "v1.2.0": [[0, "v1-2-0"]], "v1.2.1": [[0, "v1-2-1"]], "v1.2.2": [[0, "v1-2-2"]], "v1.3.0": [[0, "v1-3-0"]], "v1.4.0": [[0, "v1-4-0"]], "v1.5.0": [[0, "v1-5-0"]], "v1.6.0": [[0, "v1-6-0"]], "v1.6.1": [[0, "v1-6-1"]], "v1.7.0": [[0, "v1-7-0"]], "v1.8.0": [[0, "v1-8-0"]], "v1.9.0": [[0, "v1-9-0"]], "v1.9.1": [[0, "v1-9-1"]], "v2.0.0": [[0, "v2-0-0"]], "v2.0.1": [[0, "v2-0-1"]], "v2.0.2": [[0, "v2-0-2"]], "v2.1.0": [[0, "v2-1-0"]], "v2.1.1": [[0, "v2-1-1"]], "v2.2.0": [[0, "v2-2-0"]], "v2.2.1": [[0, "v2-2-1"]], "v2.3.0": [[0, "v2-3-0"]], "v2.4.0": [[0, "v2-4-0"]], "v2.5.0": [[0, "v2-5-0"]], "v2.5.1": [[0, "v2-5-1"]], "v2.6.0": [[0, "v2-6-0"]], "v2.7.0": [[0, "v2-7-0"]], "v3.0.0": [[0, "v3-0-0"]], "v3.0.1": [[0, "v3-0-1"]], "v3.0.2": [[0, "v3-0-2"]], "v3.1.0": [[0, "v3-1-0"]], "v3.10.0": [[0, "v3-10-0"]], "v3.10.1": [[0, "v3-10-1"]], "v3.10.2": [[0, "v3-10-2"]], "v3.10.3": [[0, "v3-10-3"]], "v3.10.4": [[0, "v3-10-4"]], "v3.11.0": [[0, "v3-11-0"]], "v3.12.0": [[0, "v3-12-0"]], "v3.12.1": [[0, "v3-12-1"]], "v3.12.2": [[0, "v3-12-2"]], "v3.13.0": [[0, "v3-13-0"]], "v3.13.1": [[0, "v3-13-1"]], "v3.13.2": [[0, "v3-13-2"]], "v3.13.3": [[0, "v3-13-3"]], "v3.13.4": [[0, "v3-13-4"]], "v3.13.5": [[0, "v3-13-5"]], "v3.13.6": [[0, "v3-13-6"]], "v3.2.0": [[0, "v3-2-0"]], "v3.2.1": [[0, "v3-2-1"]], "v3.2.2": [[0, "v3-2-2"]], "v3.3.0": [[0, "v3-3-0"]], "v3.3.1": [[0, "v3-3-1"]], "v3.3.2": [[0, "v3-3-2"]], "v3.4.0": [[0, "v3-4-0"]], "v3.4.1": [[0, "v3-4-1"]], "v3.4.10": [[0, "v3-4-10"]], "v3.4.11": [[0, "v3-4-11"]], "v3.4.2": [[0, "v3-4-2"]], "v3.4.3": [[0, "v3-4-3"]], "v3.4.4": [[0, "v3-4-4"]], "v3.4.5": [[0, "v3-4-5"]], "v3.4.6": [[0, "v3-4-6"]], "v3.4.7": [[0, "v3-4-7"]], "v3.4.8": [[0, "v3-4-8"]], "v3.4.9": [[0, "v3-4-9"]], "v3.5.0": [[0, "v3-5-0"]], "v3.6.0": [[0, "v3-6-0"]], "v3.7.0": [[0, "v3-7-0"]], "v3.8.0": [[0, "v3-8-0"]], "v3.8.1": [[0, "v3-8-1"]], "v3.9.0": [[0, "v3-9-0"]]}, "docnames": ["changelog", "current_container_facts_module", "docker_api_connection", "docker_compose_module", "docker_compose_v2_exec_module", "docker_compose_v2_module", "docker_compose_v2_pull_module", "docker_compose_v2_run_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_export_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"], "envversion": {"sphinx": 64, "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}, "filenames": ["changelog.rst", "current_container_facts_module.rst", "docker_api_connection.rst", "docker_compose_module.rst", "docker_compose_v2_exec_module.rst", "docker_compose_v2_module.rst", "docker_compose_v2_pull_module.rst", "docker_compose_v2_run_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_export_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"], "indexentries": {"ansible_docker_privileged": [[2, "index-2", false], [9, "index-2", false], [45, "envvar-ANSIBLE_DOCKER_PRIVILEGED", false]], "ansible_docker_timeout": [[2, "index-1", false], [9, "index-1", false], [45, "envvar-ANSIBLE_DOCKER_TIMEOUT", false]], "ansible_docker_working_dir": [[2, "index-4", false], [9, "index-4", false], [45, "envvar-ANSIBLE_DOCKER_WORKING_DIR", false]], "ansible_inventory_use_extra_vars": [[14, "index-0", false], [26, "index-0", false], [38, "index-0", false], [45, "envvar-ANSIBLE_INVENTORY_USE_EXTRA_VARS", false]], "ansible_nsenter_pid": [[45, "envvar-ANSIBLE_NSENTER_PID", false], [47, "index-0", false]], "ansible_remote_user": [[2, "index-3", false], [9, "index-3", false]], "ansible_timeout": [[2, "index-0", false], [9, "index-0", false]], "docker_api_version": [[44, "envvar-DOCKER_API_VERSION", false]], "docker_cert_path": [[44, "envvar-DOCKER_CERT_PATH", false]], "docker_host": [[44, "envvar-DOCKER_HOST", false]], "docker_ssl_version": [[44, "envvar-DOCKER_SSL_VERSION", false]], "docker_timeout": [[44, "envvar-DOCKER_TIMEOUT", false]], "docker_tls": [[44, "envvar-DOCKER_TLS", false]], "docker_tls_hostname": [[44, "envvar-DOCKER_TLS_HOSTNAME", false]], "docker_tls_verify": [[44, "envvar-DOCKER_TLS_VERIFY", false]], "environment variable": [[2, "index-0", false], [2, "index-1", false], [2, "index-2", false], [2, "index-3", false], [2, "index-4", false], [9, "index-0", false], [9, "index-1", false], [9, "index-2", false], [9, "index-3", false], [9, "index-4", false], [14, "index-0", false], [26, "index-0", false], [38, "index-0", false], [44, "envvar-DOCKER_API_VERSION", false], [44, "envvar-DOCKER_CERT_PATH", false], [44, "envvar-DOCKER_HOST", false], [44, "envvar-DOCKER_SSL_VERSION", false], [44, "envvar-DOCKER_TIMEOUT", false], [44, "envvar-DOCKER_TLS", false], [44, "envvar-DOCKER_TLS_HOSTNAME", false], [44, "envvar-DOCKER_TLS_VERIFY", false], [45, "envvar-ANSIBLE_DOCKER_PRIVILEGED", false], [45, "envvar-ANSIBLE_DOCKER_TIMEOUT", false], [45, "envvar-ANSIBLE_DOCKER_WORKING_DIR", false], [45, "envvar-ANSIBLE_INVENTORY_USE_EXTRA_VARS", false], [45, "envvar-ANSIBLE_NSENTER_PID", false], [47, "index-0", false]]}, "objects": {"": [[45, 0, 1, "-", "ANSIBLE_DOCKER_PRIVILEGED"], [45, 0, 1, "-", "ANSIBLE_DOCKER_TIMEOUT"], [45, 0, 1, "-", "ANSIBLE_DOCKER_WORKING_DIR"], [45, 0, 1, "-", "ANSIBLE_INVENTORY_USE_EXTRA_VARS"], [45, 0, 1, "-", "ANSIBLE_NSENTER_PID"], [44, 0, 1, "-", "DOCKER_API_VERSION"], [44, 0, 1, "-", "DOCKER_CERT_PATH"], [44, 0, 1, "-", "DOCKER_HOST"], [44, 0, 1, "-", "DOCKER_SSL_VERSION"], [44, 0, 1, "-", "DOCKER_TIMEOUT"], [44, 0, 1, "-", "DOCKER_TLS"], [44, 0, 1, "-", "DOCKER_TLS_HOSTNAME"], [44, 0, 1, "-", "DOCKER_TLS_VERIFY"]]}, "objnames": {"0": ["std", "envvar", "environment variable"]}, "objtypes": {"0": "std:envvar"}, "terms": {"": [0, 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, 40, 41, 42, 43, 44, 46, 47], "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, 40, 41, 42, 43, 44, 46, 47], "00": [3, 27, 42], "01": [5, 13, 42], "0100": 5, "02": [3, 5], "03": [0, 18], "04": [13, 41], "0444": 41, "0557": 28, "06": [9, 27], "0644": 41, "0755": 10, "07t01": 27, "08": 18, "0856968545f22026c41c2c7c3d448319d3b4a6a03a40b148b3ac4031696d1c0a": 27, "08t21": 18, "09": 0, "09t17": 42, "0a": 13, "0b": 5, "1": [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, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47], "10": [2, 3, 8, 9, 13, 16, 28, 31, 32, 33, 37, 38, 39, 41], "100": [0, 13], "1000": 13, "10000": 39, "10000000000": 41, "1001": 0, "1003": 0, "1005": 0, "1007": 0, "1011": 0, "1012": 0, "1024b": [13, 16, 20, 32, 41], "1028": 0, "1029": 0, "103": 0, "1033": 0, "1034": 0, "107": 0, "108": 0, "10872": [4, 5, 6, 7], "109": 0, "10m": 32, "11": [3, 13, 14, 26, 38, 46], "1117": 0, "1119": 0, "114": 0, "118": 0, "119": 0, "12": [2, 5, 6, 9, 13, 14, 16, 24, 26, 27, 31, 38, 42, 44], "120": [41, 44], "120000000000": 41, "121": 0, "123": 0, "125": 0, "127": [13, 14, 41], "12m": 13, "13": [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, 40, 41, 42, 43, 46, 47], "134": 0, "135": 0, "136": 0, "138": 0, "14": [0, 13, 41], "142": 0, "143": 0, "149": 0, "15": [0, 13, 18], "157": 0, "159": 0, "16": [3, 13, 38], "160": 0, "161": 0, "162": 0, "163": 0, "164": 0, "165808884": 18, "167": 0, "168": [27, 39], "16g": 13, "17": [0, 3], "1700": 13, "172": [3, 13, 28, 38], "174": 0, "178": 0, "18": [0, 4, 5, 6, 7, 9, 13], "180": 0, "181": 0, "183": 0, "186": 0, "188": 0, "190": 0, "192": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "1d": 13, "1f69": 13, "1m30": [13, 41], "2": [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, 40, 41, 42, 43, 44, 46, 47], "20": [0, 5, 13, 27], "2001": 0, "2016": 18, "2017": 0, "2018": [27, 42], "20191": 0, "2020": 13, "2021": 0, "2022": 3, "2024": [0, 5], "203": 0, "209": 0, "20971520": 41, "20m": [13, 41], "21": 0, "210": 0, "22": [0, 6, 13, 14], "23": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "2375": [14, 38], "2376": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "2377": 39, "24": [0, 28, 32], "242": 0, "24224": 41, "243": 0, "248": 0, "249": 0, "249d9e3075655baf705ed8f40488c5e9434049cf3431976f1bfdb73741c574c5": 11, "24h": [15, 32], "25": [0, 3, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 39, 40, 41, 42, 43], "250": 0, "250835114": 27, "253": 0, "254": 0, "255": 0, "257": 0, "258": 0, "26": [0, 28], "262144": 13, "267": 0, "269": 0, "27": [28, 41], "271": 0, "28": [0, 3, 41], "29": [0, 13, 41], "292": 0, "293": 0, "294": 0, "295": 0, "296": 0, "297": 0, "3": [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, 40, 41, 42, 43, 44, 46, 47], "30": [0, 8, 13, 39, 41], "300": 13, "30000000000": 41, "3045": 0, "305": 0, "307": 0, "308": 0, "31": 0, "311": 0, "312": 0, "314": 0, "32": [0, 2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 39, 41, 42, 43], "325": 0, "3256": 0, "327": 0, "33": 13, "332": 0, "336": 0, "337": 0, "338": 0, "339": 0, "345": 0, "35": [0, 2], "354": 0, "3600": 41, "361": 0, "362": 0, "363": 0, "365": 0, "367": 0, "37": 41, "370": 0, "373": 0, "388": 0, "389": 0, "39": [32, 39], "390": 0, "395": 0, "396": 0, "398": 0, "399": 0, "399680378z": 18, "3a23c669": 13, "3rd": [28, 43], "4": [1, 2, 3, 8, 10, 13, 14, 15, 16, 28, 29, 30, 33, 37, 38, 39, 40, 41, 44, 46], "40": [0, 39, 41], "400": 0, "4007": 0, "401": 0, "402": 0, "403": 0, "404": 0, "405": 0, "406": 0, "407": 0, "408": 0, "409": 0, "41": [0, 5, 41], "410": 0, "411": 0, "412": 0, "413": 0, "414": 0, "415": 0, "42": [0, 3], "421": 0, "422": 0, "426": 0, "427": 0, "428": 0, "429": 0, "43": [0, 42], "430": 0, "432": 0, "434": 0, "438": 0, "44": [0, 13, 42], "443": [12, 13], "446": 0, "447": 0, "448": 0, "44a7d607219a60b7db0a4817fb3205dce46e91df2cb4b78a6100b6e27b0d3135": 5, "44e9b07e7a2a": 13, "451": 0, "452": 0, "455": 0, "456": 0, "4567": 39, "46": 0, "462": 0, "47": 27, "485": 0, "487": 0, "488": 0, "4m": 13, "5": [2, 3, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "50": 41, "500": 0, "5000": [18, 20, 22, 24, 25], "5000000000": [39, 41], "505": 0, "506": 0, "50m": 41, "51": 27, "510": 0, "513": 0, "514": 13, "517": 0, "518": 0, "52": 0, "522": 0, "52428800": 41, "526": 0, "527": 0, "53": 0, "535": 0, "53773d8552f07b730f3e19979e32499519807d67b344141d965463a950a66e08": 18, "538": 0, "54": 0, "545": 0, "546": 0, "55": 0, "551": 0, "552": 0, "553": 0, "554": 0, "56": 20, "574": 0, "58": 0, "580": 0, "582": 0, "59": 0, "593": 0, "5h34m56": [13, 41], "6": [2, 3, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "60": [0, 2, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "605": [0, 2, 11, 14], "610": 0, "611": 0, "612": 0, "613": 0, "619": 0, "620": 0, "621": 0, "636": 0, "637": 0, "6379": 13, "64": [0, 28], "64m": [13, 16, 20], "654": 0, "65748": 0, "66": 0, "6707": 0, "694": 0, "695": 0, "696": 0, "698": 0, "7": [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, 40, 41, 42, 43, 44, 46, 47], "70": [0, 13], "7000": 13, "7010": 13, "702": 0, "703": 0, "705": 0, "71": 0, "713": 0, "715": 0, "72": 0, "721": 0, "722": 0, "726": 0, "727": 0, "73": 0, "736": 0, "744": 0, "745": 0, "76": 0, "763": 0, "765": 0, "772": 0, "773": 0, "775": 0, "776": 0, "7776000000000000": 39, "778": 0, "779": 0, "783": 0, "785": 0, "786": 0, "787": 0, "79": 0, "792": 0, "794": 0, "796": 0, "797": 0, "7ce1": 28, "7ce2": 28, "7wqv6m02ugkw": 36, "8": [3, 5, 10, 13, 14, 18, 20, 31, 41], "80": [0, 12, 13], "8000": [3, 13], "802": 0, "803": 0, "804": 0, "805": 0, "807": 0, "8080": [13, 20], "8081": 13, "810": 0, "8100": 13, "811": 0, "813": 0, "814": 0, "815": 0, "823": 0, "825": 0, "826": 0, "827": 0, "828": 0, "829": 0, "832": 0, "833": 0, "834": 0, "835": 0, "838": 0, "839": 0, "844": 0, "845": 0, "847": 0, "848": 0, "85": 0, "852": 0, "853": 0, "86": 0, "860": 0, "861": 0, "864": 0, "87": 0, "870": 0, "871": 0, "881": 0, "885": 0, "886": 0, "89": 0, "890": 0, "891": 0, "892": 0, "895": 0, "8e47bf643eb9": [12, 13], "9": [3, 4, 5, 6, 7, 13, 18, 41, 47], "90": 39, "9000": 13, "90000000000": 41, "9001": 13, "9002": 13, "9003": 13, "9010": 13, "902": 0, "9020": 13, "91": 0, "910": 0, "911": 0, "916": 0, "92": [0, 13], "921": 0, "922": 0, "93": 0, "931": 0, "933": 0, "934": 0, "935": 0, "936": 0, "937": 0, "940": 0, "941": 0, "942": 0, "943": 0, "946": 0, "947": 0, "948": 0, "949": 0, "96": 27, "961": 0, "966": 0, "975": 0, "976": 0, "9789": 39, "985": 0, "99": 0, "992": 0, "993": 0, "995": 0, "A": [0, 1, 3, 5, 6, 8, 12, 13, 14, 15, 18, 20, 24, 26, 27, 29, 32, 33, 34, 36, 37, 38, 40, 41, 42], "AND": 13, "As": 20, "By": [3, 4, 5, 6, 7, 13, 14, 15, 26, 28, 38], "For": [0, 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, 40, 41, 42, 43, 44, 47], "IN": 46, "If": [0, 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, 40, 41, 42, 43, 44], "In": [0, 3, 5, 8, 13, 14, 26, 29, 30, 33, 37, 38, 39, 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, 39, 40, 41, 42, 43, 44, 47], "No": [8, 33, 44], "Not": 0, "OR": 13, "On": 16, "One": [3, 4, 5, 6, 7, 8, 10, 14, 17, 33, 44], "That": 0, "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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47], "There": [0, 1, 44], "These": [0, 13, 14, 44, 46], "To": [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, 40, 41, 42, 43, 44, 47], "Will": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "With": [13, 26, 28], "_": [14, 26, 38], "__init__": 0, "_connect": 0, "_data": 42, "_version": 0, "abil": 44, "abl": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "abort": 0, "about": [0, 5, 20, 28, 30, 34, 39, 44, 46], "abov": 14, "absent": [3, 5, 8, 12, 13, 20, 25, 27, 28, 31, 33, 35, 39, 41, 43], "absent_retri": 35, "absent_retries_interv": 35, "absolut": [0, 10], "ac": 3, "ac8c": 28, "accept": [0, 13, 14, 26, 38, 41], "access": [0, 2, 9, 28, 41, 44, 45, 47], "accident": [0, 13], "accomod": [4, 5, 6, 7], "accord": 0, "account": [13, 25, 41], "act": 13, "action": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "action_group": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "activ": 30, "actual": [0, 10, 13, 30, 41], "actual_us": 0, "ad": [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, 40, 41, 42, 43], "add": [0, 4, 7, 8, 11, 13, 14, 16, 20, 25, 26, 28, 30, 33, 35, 38, 39, 41, 44], "add_legacy_group": 14, "addit": [0, 3, 8, 10, 13, 29, 30, 33, 37, 38, 39, 40, 41, 44], "addition": 13, "address": [0, 3, 13, 14, 16, 20, 28, 39, 41], "adjust": [0, 4, 5, 6, 7, 13], "admin": 13, "advertis": 39, "advertise_addr": 39, "affect": [0, 13, 16, 17, 20, 21, 22, 23, 24, 28, 31, 42, 43], "after": [0, 8, 13, 14, 20, 26, 30, 33, 35, 38, 39, 41], "afterward": [0, 4, 5, 6, 7, 13], "again": [0, 3, 5, 8, 13, 33], "against": [3, 14], "agent": [13, 35, 39], "ago": [2, 14, 32, 38], "agronholm": 43, "alert": 0, "alex": 43, "alia": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43], "alias": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "aliasedredi": 13, "align": 0, "all": [0, 3, 5, 7, 10, 13, 14, 15, 16, 18, 19, 20, 23, 26, 28, 29, 30, 31, 32, 35, 38, 39, 41, 44, 46], "alloc": [4, 7, 11, 13, 41], "allow": [0, 2, 3, 8, 9, 13, 14, 15, 16, 20, 24, 25, 26, 29, 30, 31, 33, 37, 38, 39, 40, 41, 44, 45, 46, 47], "allow_more_pres": 13, "almost": 0, "alpin": [0, 20, 41], "alreadi": [0, 3, 5, 6, 13, 16, 17, 20, 24, 28, 30, 31, 39, 43], "also": [0, 10, 13, 15, 18, 28, 29, 30, 37, 39, 40, 41, 43, 44], "alter": 41, "altern": [0, 2, 3, 13, 14, 16, 20, 38], "alwai": [0, 1, 3, 5, 6, 8, 12, 13, 14, 15, 16, 18, 20, 21, 26, 27, 29, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 47], "amd64": [16, 18, 20, 21], "amend": 0, "amount": [2, 5, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "an": [0, 1, 2, 3, 4, 5, 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, 37, 38, 39, 40, 41, 42, 43, 44], "angel": [34, 36], "ani": [0, 1, 4, 5, 6, 7, 10, 13, 14, 16, 20, 26, 35, 41, 43], "anonym": [0, 13], "anoth": [0, 13, 16, 17, 24], "anotherappimag": 13, "ansibl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 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, 42, 43, 44, 45, 46, 47], "ansible_docker_api_vers": 2, "ansible_docker_ca_cert": 2, "ansible_docker_ca_path": 2, "ansible_docker_client_cert": 2, "ansible_docker_client_kei": 2, "ansible_docker_docker_host": 2, "ansible_docker_extra_arg": 9, "ansible_docker_extra_env": [2, 9], "ansible_docker_host": [2, 9], "ansible_docker_privileg": [2, 9, 45], "ansible_docker_servic": 41, "ansible_docker_ssl_vers": 2, "ansible_docker_timeout": [0, 2, 9, 45], "ansible_docker_tl": 2, "ansible_docker_tls_hostnam": 2, "ansible_docker_us": [2, 9], "ansible_docker_validate_cert": 2, "ansible_docker_working_dir": [2, 9, 45], "ansible_fact": [0, 1], "ansible_host": [2, 9, 14, 26, 38], "ansible_host_uri": 38, "ansible_inventory_use_extra_var": [14, 26, 38, 45], "ansible_kei": [0, 8, 33], "ansible_module_container_id": 1, "ansible_module_container_typ": 1, "ansible_module_running_in_contain": 1, "ansible_nsenter_pid": [45, 47], "ansible_port": 26, "ansible_remote_us": [2, 9], "ansible_ssh_common_arg": 26, "ansible_ssh_host": 14, "ansible_ssh_port": 14, "ansible_ssh_private_kei": 26, "ansible_swarm_servic": 41, "ansible_timeout": [2, 9], "ansible_us": [2, 9, 26], "ansible_vers": [8, 33], "antonov": [13, 20], "anymor": 0, "anyth": 0, "api": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "api_vers": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "apivers": 0, "app": 41, "apparmorprofil": [12, 13], "appear": [0, 16, 18], "append": [0, 4, 7, 8, 11, 16, 17, 20, 21, 22, 23, 24, 28, 33], "appendonli": 13, "appimag": 13, "appli": [0, 5, 6, 13, 20, 30, 35, 39, 41], "applic": [0, 4, 6, 7, 46], "ar": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "arch": [13, 16, 20, 38], "arch_x86_64": 38, "architectur": [18, 38], "archiv": [0, 20, 23, 44, 46], "archive_path": [0, 20], "arg": [12, 13, 16, 20, 41], "arg1": 13, "arg2": 13, "argument": [0, 2, 4, 7, 9, 11, 16, 20, 41], "argv": [4, 7, 11], "arm64": 16, "around": [0, 13, 16, 39], "arrai": 18, "ask": [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, 40, 41, 42, 43, 46, 47], "assembl": 0, "assert": [3, 5, 13, 18, 20, 41], "assig": 5, "assign": [0, 3, 5, 7, 8, 13, 14, 30, 33, 41], "associ": [5, 13, 25, 36], "assum": [0, 8, 10, 13, 20, 21, 33], "async": 41, "asynchron": [4, 7, 11], "attach": [0, 3, 5, 7, 13, 27, 28, 45, 47], "attachstderr": [12, 13, 18], "attachstdin": [12, 13, 18], "attachstdout": [12, 13, 18], "attempt": [1, 13, 18, 26], "attribut": 38, "attributeerror": 0, "auf": 18, "auth": 35, "authent": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "author": 46, "auto": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "auto_remov": 13, "autolock_manag": 39, "automat": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "aux_address": 28, "auxiliari": 28, "avail": [0, 4, 5, 6, 7, 10, 13, 14, 16, 20, 26, 30, 37, 38, 41, 44, 45], "avoid": [0, 4, 7, 11, 13, 32, 41, 44], "awesome_config": 8, "awesome_secret": 33, "awx": 0, "azur": 1, "azure_pipelin": 1, "b": [13, 16, 20, 32, 41], "b3dbf31b77fd99d9c08f780ce6f5282aba076d70a513a8be859d8d3a4d0c92b8": 41, "b64encod": [8, 33], "back": [4, 7, 11, 13, 41], "backend": 13, "background": 13, "backport": [2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 42, 43], "backward": 16, "bad": 0, "balanc": 13, "bam": 32, "bar": [8, 13, 32, 33, 41], "base": [0, 13, 14, 26, 35, 38, 44], "base64": [8, 10, 33], "basenam": [3, 4, 5, 6, 7], "bash": [4, 7, 11], "basic": [15, 16, 37], "baz": [8, 32, 33], "bd3f6172": 42, "becaus": [0, 8, 13, 14, 26, 33, 38, 39], "becom": [0, 13], "been": [0, 2, 3, 5, 6, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 43], "befor": [0, 3, 5, 6, 7, 8, 10, 13, 18, 20, 23, 25, 32, 33, 35, 39, 41, 44], "behav": [13, 26], "behavior": [0, 4, 5, 6, 7, 13, 16, 24], "behaviour": 26, "being": [0, 8, 10, 20, 33, 39], "belong": [5, 13, 14, 20], "below": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "ben": 28, "bendit": [27, 28], "best": 1, "better": [0, 8, 10, 13, 33], "between": [0, 4, 5, 6, 7, 13, 35, 39, 41, 44], "beyond": 39, "bin": [4, 7, 10, 11, 12, 13, 18], "binari": [8, 10, 33], "bind": [0, 7, 13, 41], "bit": 3, "blindli": 0, "blkio_weight": 13, "block": [0, 13, 28], "boolean": [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, 40, 41, 42, 43], "boolean_kei": 13, "both": [0, 3, 8, 13, 15, 18, 29, 30, 33, 37, 39, 40, 41, 44], "bound": [0, 5, 13], "bouvet": [30, 39], "break": [2, 4, 5, 6, 7, 9, 45], "breakag": 0, "bridg": [13, 27, 28], "bring": 0, "broken": [0, 44], "brouwer": 9, "btrf": 43, "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, 39, 40, 41, 42, 43, 46, 47], "build": [0, 3, 5, 7, 14, 15, 20, 26, 32, 38, 44, 46], "buildarg": 0, "builder": [0, 32], "builder_cach": 32, "builder_cache_al": [0, 32], "builder_cache_caches_delet": [0, 32], "builder_cache_filt": [0, 32], "builder_cache_keep_storag": [0, 32], "builder_cache_space_reclaim": 32, "buildkit": [16, 20], "buildx": [0, 20, 44, 46], "built": [0, 3, 6, 16, 20], "built_imag": 3, "builtin": [1, 3, 4, 5, 7, 8, 10, 11, 12, 15, 18, 19, 27, 29, 30, 33, 34, 36, 37, 39, 40, 41, 42, 44], "bunch": 0, "busybox": [0, 13, 36], "byte": [0, 5, 13, 16, 20, 32, 41], "c": [4, 7, 11, 18], "c6": 13, "c64e": 13, "c72dce2618dc8f7b794d2b2c2b1e64e0205ead5befc294f8111da23bd6a2c799": 18, "c8bccc0af9571ec0d006a43acb5a8d08c4ce42b6cc7194dd6eb167976f501ef1": 5, "ca": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "ca_cert": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "ca_force_rot": 39, "ca_path": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "cacert": 44, "cacert_path": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "cach": [0, 3, 13, 15, 16, 20, 32], "cache_from": [16, 20], "call": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "can": [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, 40, 41, 42, 43, 44, 45], "can_talk_to_dock": [0, 15, 37], "cannot": [0, 4, 7, 11, 13, 15, 16, 26], "canon": 28, "cap": 13, "cap_add": [0, 7, 13, 41], "cap_drop": [0, 7, 13, 41], "capabl": [0, 7, 13, 41], "care": [2, 9, 28, 45], "case": [0, 1, 13, 14, 15, 26, 38, 41], "caus": [0, 2, 8, 11, 13, 16, 33, 43], "censor": 39, "cento": [17, 18, 20, 21, 23], "cert": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "cert_path": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "certain": 0, "certif": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "cet": 5, "cf": 13, "cf85": 13, "cfg": 0, "cgroup": [0, 13], "cgroup_par": [0, 13], "cgroup_permiss": 13, "cgroupn": 13, "cgroupns_mod": [0, 13], "chang": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "changelog": 0, "channel": 46, "charact": 38, "chdir": [0, 4, 7, 11], "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, 40, 41, 42, 43, 47], "check_files_exist": [0, 4, 5, 6, 7], "check_mod": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "cherri": 0, "choic": [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, 40, 41, 42, 43], "chosen": 13, "chouseknecht": [3, 8, 13, 18, 20, 25, 28, 33], "chri": [3, 8, 13, 18, 20, 25, 28, 33], "cidr": [28, 39], "claim": 0, "classic": [13, 16], "cleanup": [7, 13, 44], "clear": 0, "cli": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46], "cli_context": [0, 4, 5, 6, 7, 16, 34, 35, 36], "client": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "client_cert": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "client_kei": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "clone": 0, "close": [0, 2, 11], "close_notifi": [0, 2, 11], "cluster": [29, 30, 46], "cmd": [3, 12, 13, 18, 41], "code": [0, 2, 3, 4, 5, 7, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 41, 42, 43], "collect": [0, 44, 46], "colon": 0, "com": [0, 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, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "combin": [0, 13, 21, 30, 39], "comma": 13, "command": [0, 2, 3, 5, 9, 13, 25, 34, 35, 36, 41, 44, 45, 46], "command_handl": [0, 13], "commandlin": 43, "comment": [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, 40, 41, 42, 43, 47], "common": [0, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "commun": [44, 45], "compar": [0, 10, 13, 32, 44], "comparison": [0, 13], "compat": [0, 13, 14, 16, 44], "complet": [0, 13, 30, 35], "complex": [0, 3], "compos": [0, 1, 2, 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, 43, 46, 47], "compose_fil": [0, 4, 5, 6, 7], "composit": [0, 14, 26, 38, 45], "comput": [0, 10], "conain": 5, "concaten": [14, 26, 38], "condit": [0, 13, 14, 26, 38, 41], "config": [0, 3, 12, 13, 18, 20, 25, 27, 28, 29, 30, 33, 37, 39, 40, 41, 44, 46], "config_from": [0, 28], "config_id": [8, 41], "config_nam": [8, 41], "config_onli": [0, 28], "config_path": 25, "configfrom": 27, "configonli": 27, "configur": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 20, 25, 26, 29, 30, 33, 37, 38, 39, 40, 41, 45, 47], "configure_docker_daemon": [0, 14], "conflict": 0, "conform": 0, "conjunct": [14, 26, 38], "connect": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45], "connection_typ": [0, 14], "conner": 13, "consecut": [13, 35, 41], "consid": [0, 13, 14, 16, 20, 28, 32, 39], "consist": 13, "constraint": [0, 41], "construct": [14, 26, 38], "consult": [28, 43], "contact": 15, "contain": [0, 6, 8, 15, 16, 17, 18, 20, 21, 22, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 41, 45, 46], "container": 47, "container_a": 28, "container_b": 28, "container_c": 28, "container_default_behavior": [0, 13], "container_id": 7, "container_label": [0, 41], "container_limit": [0, 20], "container_nam": [3, 13], "container_path": 10, "container_timeout": [2, 9], "containerconfig": 18, "containernam": 5, "containers_al": [0, 15], "containers_filt": [0, 15, 32], "containers_space_reclaim": 32, "containerspec": 35, "content": [0, 3, 10, 35, 39], "content_is_b64": 10, "context": [0, 4, 5, 6, 7, 16, 20, 34, 35, 36, 44], "continu": [0, 14, 26, 38, 41], "control": [0, 2, 8, 9, 13, 14, 25, 26, 28, 33, 38, 43, 44, 45, 46], "conveni": [16, 20], "convert": [0, 4, 7, 11, 13, 14, 16, 20, 38], "copi": [0, 17, 41, 44, 46], "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, 39, 40, 41, 42, 43, 45, 46, 47], "correct": [0, 4, 7, 11, 13, 44], "correctli": [0, 13, 28], "correspond": [0, 7, 10, 13, 15, 20, 39, 41], "corrupt": 10, "could": [0, 25], "count": [3, 5, 13], "countdown": [13, 41], "cove": 13, "cp": [10, 44], "cpu": [13, 20, 41], "cpu_period": 13, "cpu_quota": 13, "cpu_shar": 13, "cpuset_cpu": 13, "cpuset_mem": 13, "cpusetcpu": 20, "cpushar": 20, "crash": 0, "creat": [0, 3, 4, 5, 6, 7, 8, 13, 14, 16, 17, 18, 20, 26, 27, 28, 32, 33, 38, 39, 41, 43, 44], "createdat": [5, 42], "creation": [0, 8, 13, 28, 33, 41], "credenti": [0, 25], "curl": [13, 41], "current": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 21, 25, 27, 29, 33, 35, 37, 39, 40, 41], "current_container_fact": [0, 46], "currentst": 36, "custom": [0, 3, 4, 5, 6, 7, 13, 25, 28, 41], "cve": 0, "cycl": 13, "d0": 13, "daan": 13, "daemon": [0, 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, 42, 43], "daemon_env": 26, "dai": 39, "dangl": [15, 32], "dariko": [35, 41], "dario": [35, 41], "data": [0, 3, 4, 5, 7, 8, 10, 11, 13, 18, 33, 39, 41, 43], "data_is_b64": [8, 33], "data_path_addr": [0, 39], "data_path_port": [0, 39], "data_src": [0, 8, 33], "date": 44, "dave": [27, 28], "db": [3, 5, 13], "db_contain": 5, "db_test": 13, "dbendit": [27, 28], "dcoppenhagan": 20, "dead": 0, "deamon": 0, "debug": [1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44], "decid": 13, "deciph": 0, "declar": [0, 6, 45], "decod": [8, 10, 33], "default": [0, 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, 40, 41, 42, 43, 45, 47], "default_addr_pool": 39, "default_grace_period": 3, "default_host_ip": [0, 13], "default_ip": 14, "default_valu": [14, 26, 38], "defin": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "definit": [0, 3, 4, 5, 6, 7, 35], "delai": [39, 41], "deleg": 13, "delet": [4, 5, 6, 7, 8, 23, 28, 31, 32, 33, 35, 43], "demot": 39, "depart": 41, "depend": [0, 3, 4, 5, 6, 7, 13, 15, 16, 20, 29, 30, 37, 39], "depends_on": 3, "deploi": 35, "deprec": [13, 44, 46], "deriv": [2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 38, 42, 43], "describ": [3, 4, 5, 6, 7, 41], "descript": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "deselect": [14, 26, 38], "desir": [3, 5, 13, 39], "desiredst": 36, "dest": 16, "destin": [10, 13, 16], "destroi": [13, 44], "detach": [0, 4, 7, 11, 13, 28, 44], "detail": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "detect": [0, 1, 3, 13, 38, 39, 44], "determin": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "dev": [0, 4, 7, 11, 13, 16, 20, 43], "devel": 0, "develop": 0, "devic": [13, 43], "device_cgroup_rul": [0, 13], "device_id": 13, "device_read_bp": 13, "device_read_iop": 13, "device_request": [0, 13], "device_write_bp": 13, "device_write_iop": 13, "dict": [13, 15, 37, 41], "dictionari": [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, 39, 40, 41, 42, 43], "did": [0, 3, 13, 14, 18], "die": 0, "diff": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "diff_mod": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "differ": [0, 3, 4, 5, 6, 7, 10, 13, 15, 28, 35, 37, 39, 43], "dig": 13, "digest": [16, 21, 22, 23, 35, 41], "digit": 26, "digitalocean": 26, "dir": 20, "direct": [16, 20], "directli": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 16, 33, 34, 35, 36, 41, 44], "directori": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "disabl": [0, 13, 16, 31, 41], "disallow": 0, "disclosur": 0, "disconnect": 28, "discuss": 46, "disk": [10, 15, 32], "disk_usag": 15, "dispatch": 39, "dispatcher_heartbeat_period": 39, "disposit": 3, "distutil": 0, "django": [3, 5], "dm_": 26, "dm_tag": 26, "dn": [13, 41], "dns_opt": 13, "dns_option": 41, "dns_search": 41, "dns_search_domain": 13, "dns_server": 13, "dnsrr": 41, "do": [0, 1, 5, 7, 10, 13, 14, 16, 20, 26], "doc": [0, 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, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "docker": 45, "docker_": 0, "docker_api": [0, 9, 14, 44, 45, 46], "docker_api_vers": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "docker_cert_path": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "docker_cli": [4, 5, 6, 7, 16, 34, 35, 36], "docker_compos": [0, 5, 44, 46], "docker_compose_v2": [0, 3, 4, 6, 7, 44, 46], "docker_compose_v2_exec": [0, 46], "docker_compose_v2_pul": [0, 5, 44, 46], "docker_compose_v2_run": [0, 46], "docker_config": [0, 3, 14, 29, 30, 33, 37, 39, 40, 41, 44, 46], "docker_connect": [0, 2, 9], "docker_contain": [0, 12, 28, 44, 45, 46], "docker_container_copy_into": [0, 44, 46], "docker_container_exec": [0, 44, 46], "docker_container_info": [0, 44, 46], "docker_extra_arg": [0, 9], "docker_host": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "docker_host_info": [0, 44, 46], "docker_hostconfig": 14, "docker_imag": [0, 17, 18, 44, 46], "docker_image_": 0, "docker_image_build": [0, 20, 44, 46], "docker_image_export": [0, 19, 20, 44, 46], "docker_image_fact": [0, 18], "docker_image_info": [0, 17, 20, 44, 46], "docker_image_load": [0, 17, 20, 23, 44, 46], "docker_image_pul": [0, 20, 22, 23, 44, 46], "docker_image_push": [0, 16, 19, 20, 24, 44, 46], "docker_image_remov": [0, 19, 20, 21, 22, 24, 44, 46], "docker_image_tag": [0, 16, 19, 20, 21, 22, 23, 44, 46], "docker_login": [0, 44, 46], "docker_machin": [0, 44, 45, 46], "docker_machine_node_attribut": 26, "docker_nam": 14, "docker_network": [0, 27, 44, 46], "docker_network_info": [0, 44, 46], "docker_network_nam": 13, "docker_nod": [0, 39, 44, 46], "docker_node_info": [0, 44, 46], "docker_platform": 14, "docker_plugin": [0, 44, 46], "docker_prun": [0, 44, 46], "docker_secret": [0, 44, 46], "docker_servic": [0, 3], "docker_ssl_vers": [2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 39, 40, 41, 42, 43, 44], "docker_stack": [0, 44, 46], "docker_stack_info": [0, 44, 46], "docker_stack_task_info": [0, 34, 44, 46], "docker_swarm": [0, 30, 44, 45, 46], "docker_swarm_act": 37, "docker_swarm_info": [0, 39, 44, 46], "docker_swarm_manag": 37, "docker_swarm_servic": [0, 44, 46], "docker_swarm_service_info": [0, 44, 46], "docker_timeout": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "docker_tl": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "docker_tls_hostnam": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "docker_tls_verifi": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "docker_url": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "docker_volum": [0, 44, 46], "docker_volume_info": [0, 44, 46], "docker_xxx": 14, "dockercfg_path": 25, "dockerfil": [0, 3, 13, 16, 20, 41], "dockerhub": 25, "dockerignor": 0, "dockervers": 18, "docsit": 0, "document": [0, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45], "doe": [0, 1, 2, 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, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "domain": [13, 41], "domainnam": [12, 13, 18], "done": [3, 8, 20, 29, 30, 33, 37, 39, 40, 41], "doubt": 44, "down": [3, 5], "download": [10, 16, 20], "downtim": 13, "drain": 30, "driver": [0, 13, 16, 26, 27, 28, 41, 42, 43], "driver_config": 41, "driver_opt": [28, 43], "drivernam": 26, "drop": [7, 13, 41], "dry": 0, "due": [0, 2, 9, 13], "durat": [13, 41], "dure": [0, 3, 13, 14, 20, 31, 41], "dusdanig": 13, "dynam": [0, 44, 46], "e004c2cc521c95383aebb1fb5893719aa7a8eae2e7a71f316a4410784edb00a9": 19, "e5c68db50333": 18, "e83a452b8fb89d78a25a6739457050131ca5c863629a47639530d9ad2008d610": 18, "each": [0, 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, 40, 41, 42, 43, 44, 47], "earlier": [0, 13], "easier": [0, 13], "echo": [4, 7, 11], "econtain": 7, "edg": 41, "ee": 0, "effect": [0, 13, 35, 39], "effici": 0, "effort": 1, "eighteen": 26, "either": [0, 13, 20, 29, 39, 41], "elect": 39, "election_tick": 39, "element": [3, 4, 5, 6, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 26, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 41], "els": [12, 27, 42], "email": 0, "emerg": 0, "emit": [0, 13], "empti": [0, 1, 3, 4, 7, 11, 13, 14, 16, 18, 23, 26, 28, 29, 30, 38], "emul": 0, "enabl": [0, 3, 4, 5, 6, 7, 13, 20, 28, 31], "enable_ipv6": 28, "enable_timeout": 31, "enableipv6": 27, "encapsul": [4, 7], "encod": [8, 10, 33], "encount": [0, 1, 13], "encrypt": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "end": [0, 3, 4, 7, 11, 14, 26, 38, 44], "endpoint": [0, 13, 41], "endpoint_mod": 41, "enforc": 13, "engin": [13, 15, 37, 41, 43], "enginevers": 38, "enough": 16, "ens10": 39, "ensur": [0, 5, 6, 13, 18, 26, 28], "enter": 47, "entir": [13, 16, 20], "entri": [0, 2, 9, 13, 14, 16, 26, 29, 30, 38, 39, 47], "entrypoint": [7, 12, 13, 18], "env": [0, 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, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "env_fil": [0, 3, 4, 5, 6, 7, 13, 41], "env_vari": [4, 7, 11], "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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 47], "envvar": 35, "envvar1": 41, "envvar2": 41, "equal": [0, 13, 41], "equalto": 5, "equival": [0, 3, 4, 5, 6, 7, 13, 16], "err": 0, "erron": 0, "error": [0, 3, 4, 7, 8, 11, 14, 15, 26, 29, 30, 33, 36, 37, 38, 39, 40, 41], "essenti": [12, 15, 27, 29, 40, 44], "etc": [13, 16, 18, 20, 28, 41], "etc_host": [13, 16, 20], "eth0": 39, "evalu": [0, 4, 7, 11, 13, 41], "even": [0, 5, 6, 7, 8, 13, 17, 28, 31, 33, 39, 41], "event": 0, "everi": [0, 13, 16, 44], "everyon": [8, 33], "everyth": [8, 10, 32, 33], "exact": [4, 5, 6, 7], "exactli": [4, 11, 14, 26, 38], "exampl": [0, 2, 9, 44, 47], "except": [0, 13, 28, 38], "exclud": [0, 14, 26, 38], "exclus": [3, 4, 5, 6, 7, 8, 10, 14, 16, 26, 33, 34, 35, 36, 38], "exec": [4, 44], "exec_id": 11, "execut": [0, 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, 42, 43, 44, 45, 46], "exist": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 17, 18, 20, 21, 24, 25, 27, 28, 31, 33, 39, 40, 41, 42, 43, 44], "existing_imag": 24, "existing_volum": 0, "exit": [4, 5, 7, 11, 13, 41], "exitcod": 5, "exompl": 38, "expect": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "experi": 0, "expiri": 39, "explicit": [13, 14], "explicitli": [0, 13], "export": [0, 14, 16, 19, 20, 44, 46], "expos": [0, 13, 16, 41], "exposed_port": [0, 13], "exposedport": [12, 13, 18], "express": [13, 14, 26, 38], "extend": [0, 2, 4, 9, 13, 37, 45], "extern": [28, 39, 41], "extra": [0, 2, 9, 14, 16, 20, 26, 38, 45], "extra_cli_arg": 9, "extra_env": [0, 2, 9], "extract": 0, "extran": [8, 33], "f0b1f729f784b755e7bf9c8c2e65d8a0a35a533769c2588f02895f6781ac0805": 18, "f2700bba": 27, "fabianle": 13, "facil": 13, "fact": [0, 13, 14, 26, 38, 41, 46], "fail": [0, 5, 13, 15, 28, 29, 30, 35, 37, 39, 40, 41], "failur": [0, 13, 41], "failure_act": 41, "fair": 13, "fall": 13, "fallback": [0, 14], "fals": [0, 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, 40, 41, 42, 43, 44], "far": 0, "fast": 13, "fatal": [0, 14, 26, 38], "favor": 0, "fdd1": 28, "featur": [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, 40, 41, 42, 43, 46, 47], "felix": [1, 2, 4, 5, 6, 7, 10, 11, 12, 13, 14, 16, 17, 19, 21, 22, 23, 24, 32, 42], "felixfontein": [1, 2, 4, 5, 6, 7, 10, 11, 12, 13, 14, 16, 17, 19, 21, 22, 23, 24, 32, 42], "fetch": [2, 9, 26], "few": [3, 8, 29, 30, 33, 37, 39, 40, 41], "field": [0, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "figur": 5, "file": [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, 39, 40, 41, 42, 43, 44, 46], "filenam": [0, 4, 5, 6, 7, 14, 26, 38, 41], "filesystem": [10, 13, 41], "filter": [0, 14, 15, 26, 32, 37, 38], "final": [16, 20], "financ": 41, "find": 0, "find_execut": 0, "fine": [45, 47], "finer": 13, "first": [0, 3, 5, 8, 13, 14, 26, 33, 38, 41], "fix": 28, "flag": [0, 10, 31, 37], "flask": [3, 5, 6], "flask_db_1": 3, "flask_web_1": 3, "float": [13, 41], "fluentd": 41, "follow": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47], "fontein": [1, 2, 4, 5, 6, 7, 10, 11, 12, 13, 14, 16, 17, 19, 21, 22, 23, 24, 32, 42], "foo": [4, 7, 8, 11, 13, 14, 32, 33, 41], "forbidden": 0, "forc": [0, 3, 5, 8, 10, 13, 17, 20, 23, 25, 28, 33, 39, 41, 43], "force_": 0, "force_abs": 20, "force_kil": 13, "force_remov": 31, "force_sourc": 20, "force_tag": 20, "force_upd": 41, "forcekil": 13, "form": [0, 13, 39], "format": [0, 3, 4, 5, 6, 7, 13, 14, 16, 17, 18, 20, 21, 22, 23, 24, 32, 38, 39, 41], "forum": 46, "forward": [0, 13, 41], "found": [0, 13, 14, 20, 23, 25, 26, 38, 44], "fraction": 41, "fragment": 0, "free": 13, "friendli": [4, 5, 6, 7], "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46], "full": [1, 3, 5, 6, 8, 10, 12, 13, 15, 16, 17, 18, 21, 23, 24, 25, 27, 28, 29, 30, 31, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44], "fulli": 0, "fulllist": 28, "function": [0, 3, 8, 13, 25, 28, 29, 30, 31, 33, 37, 39, 40, 41, 42, 43, 44], "further": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "futur": [8, 20, 25, 33], "g": [13, 16, 20, 32, 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, 38, 39, 40, 41, 42, 43, 47], "gatewai": [13, 16, 20, 27, 28], "gather_fact": [3, 5, 44], "gener": [0, 3, 8, 13, 14, 26, 29, 30, 33, 37, 38, 39, 40, 41, 44, 46], "get": [1, 10, 12, 13, 15, 26, 27, 29, 37, 40, 42], "get_bin_path": 0, "gibibyt": [13, 16, 20, 32, 41], "gid": [13, 41], "git": 0, "github": [0, 1, 2, 4, 5, 6, 7, 11, 13, 14], "github_act": 1, "give": [4, 6, 13], "given": [3, 4, 5, 6, 7, 13, 14, 16, 19, 26, 38, 39], "global": [0, 13, 28, 41, 44], "globalipv6": 3, "globalipv6prefixlen": 3, "go": 8, "golang": [0, 8], "goldschraf": 47, "goodnight": [8, 33], "got": [2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43], "gpu": [0, 13], "grace": 41, "grafana": 34, "grant": 31, "graphdriv": 18, "greater": 3, "group": [0, 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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 46], "group_id": 10, "groupnam": 13, "gr\u00f6nholm": 43, "h": [13, 41], "ha": [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, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "had": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 39, 40, 41, 42, 43], "half": 13, "handl": [0, 2, 13, 14, 38], "hann": [40, 41], "hannseman": [40, 41], "happen": [0, 5, 6, 8, 13, 33, 44], "has_different_config": 0, "hash": [0, 3, 8, 13, 16, 17, 20, 21, 22, 23, 24, 33], "have": [0, 2, 5, 6, 9, 13, 14, 16, 26, 28, 29, 32, 35, 38, 39, 41, 44, 47], "health": [0, 5, 13, 41], "healthcheck": [0, 13, 41], "healthcheck_dis": 41, "healthi": [0, 5, 13, 41], "healthstatu": 13, "healthy_wait_timeout": [0, 13], "heartbeat": 39, "heartbeat_tick": 39, "heitm\u00fcller": 38, "hello": [17, 19], "help": [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, 40, 41, 42, 43, 46, 47], "helper": 0, "henc": 0, "here": [0, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "high": [0, 2, 9, 13, 14, 26, 38, 47], "higher": [2, 9, 14, 26, 38, 47], "highest": [14, 26, 38, 45], "hint": 38, "histori": 39, "hochestein": 9, "home": [3, 8, 10, 16, 20, 29, 30, 33, 37, 39, 40, 41], "hood": 0, "host": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 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, 43, 44, 46], "host1": 28, "host2": 28, "host_binding_ipv4": 13, "host_info": 15, "hostconfig": 14, "hostnam": [3, 12, 13, 16, 18, 20, 28, 29, 30, 41, 44], "hostname_check": 3, "hostvar": 1, "hotfix": 0, "hour": 32, "houseknecht": [3, 8, 13, 18, 20, 25, 28, 33], "how": [0, 2, 5, 9, 10, 13, 14, 16, 26, 28, 41, 44, 45], "howev": 13, "html": 0, "http": [0, 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, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "http_timeout": [0, 20], "hu": 8, "hub": [20, 44], "hzehrmyjigmcp2gb6nlhmjqcv": [8, 33], "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, 40, 41, 42, 43, 44, 45, 47], "id": [0, 1, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 23, 24, 27, 28, 29, 30, 32, 33, 36, 39, 41], "idempot": [0, 10, 13, 16, 39], "ident": 0, "identifi": [0, 1, 12, 13, 16, 24, 27, 29], "ignor": [0, 3, 5, 13, 14, 21, 22, 26, 29, 30, 38, 47], "ignore_build": [0, 6], "ignore_error": 37, "ignore_imag": [0, 13], "ii": 13, "im": 46, "imag": [0, 3, 5, 6, 7, 12, 13, 14, 15, 26, 32, 35, 36, 41, 46, 47], "image_": 14, "image_comparison": [0, 13], "image_label_mismatch": [0, 13], "image_nam": 19, "image_name_mismatch": [0, 13], "image_not_pres": 13, "images_filt": [0, 15, 32], "images_space_reclaim": 32, "imjoseangel": [34, 36], "implement": 0, "import": [0, 16, 44], "importerror": 0, "improv": 0, "inabl": [0, 2, 11], "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, 40, 41, 42, 43, 44, 47], "include_dep": [0, 6], "include_host_uri": 38, "include_host_uri_port": 38, "inclus": 0, "incompat": [0, 3], "incorrect": 0, "increas": [8, 33, 44], "increment": 28, "indefinit": [0, 13], "index": [4, 25], "indic": [1, 6, 10, 26, 37], "individu": 44, "infin": 13, "infinit": 0, "info": [0, 12, 15, 27, 29, 34, 36, 37, 40, 42], "inform": [0, 1, 2, 3, 6, 7, 10, 11, 12, 13, 14, 15, 19, 27, 29, 30, 32, 37, 39, 42, 44, 46], "ing": [13, 41], "ingress": [27, 41], "inherit": 13, "ini": [2, 9, 14, 26, 38, 47], "init": [0, 13, 39, 41, 47], "initi": [0, 13, 41], "initialis": 39, "inlin": [0, 3], "input": [10, 14, 26, 38], "insert": 7, "insid": [1, 2, 4, 7, 9, 10, 11, 13, 14, 41], "inspect": [0, 12, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 27, 28, 29, 31, 40, 42, 43, 44, 46], "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, 40, 41, 42, 43, 44, 47], "instanc": 3, "instanti": 41, "instead": [0, 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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47], "instruct": [13, 16, 20, 41], "intact": 13, "integ": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 43, 47], "intend": 0, "inter": 39, "interact": [2, 7, 13], "interfac": [0, 5, 13, 14, 39], "intermedi": [16, 20], "intern": [0, 27, 28], "interpret": [0, 10, 44], "interv": [0, 13, 35, 41], "introduc": [0, 13], "invalid": [0, 14, 26, 38], "inventori": [44, 45], "inventory_hostnam": [2, 9, 14], "inventory_plugin": [14, 26, 38], "invoc": 0, "invok": [0, 41], "io": [13, 25], "ip": [0, 3, 13, 14, 16, 20, 28, 41], "ipaddress": 3, "ipalloc_rang": 31, "ipam": [27, 28], "ipam_config": [0, 28], "ipam_driv": 28, "ipam_driver_opt": 28, "ipam_opt": 0, "ipc": 13, "ipc_mod": 13, "ipprefixlen": 3, "iprang": 28, "ipv4": [13, 28], "ipv4_address": 13, "ipv6": [0, 3, 13, 28], "ipv6_address": 13, "irc": 46, "isn": 0, "issu": [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, 40, 41, 42, 43, 46, 47], "item": [13, 14, 26, 38, 41], "its": [0, 13, 14, 30, 38, 41, 44], "itself": [0, 9, 13, 44, 47], "jandot": 13, "januari": 0, "jason": 41, "jeff": 47, "jenkin": 13, "jenkinsci": 13, "jgoldschraf": 47, "jinja2": [0, 4, 7, 11, 13, 14, 26, 38], "job": 0, "john": 8, "join": [0, 19, 39, 44], "join_token": [0, 39], "jointoken": 39, "jose": [34, 36], "joshua": 13, "joshuaconn": 13, "journald": 13, "json": [0, 3, 8, 13, 20, 25, 26, 29, 30, 33, 37, 39, 40, 41], "jsondiff": 35, "juli": 3, "just": [1, 16], "jwitko": 41, "k": [13, 16, 20, 32, 41], "kassian": 13, "kassiansun": 13, "keep": [0, 7, 8, 10, 13, 24, 32, 33, 39, 47], "keep_old_snapshot": 39, "keep_volum": 13, "kei": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "keith": 28, "keitwb": 28, "kept": [13, 24], "kernel": 13, "kernel_memori": 13, "key1": [15, 28, 30], "key2": [15, 28, 30], "key_path": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "keyed_group": [14, 26, 38], "keyerror": 0, "keyword": [2, 9], "kibibyt": [13, 16, 20, 32, 41], "kilian": 25, "kill": [5, 13, 41], "kill_sign": [0, 13], "killer": 13, "kind": [5, 6], "kubernet": 34, "l": [4, 7, 11, 15, 37], "label": [0, 3, 5, 7, 8, 12, 13, 14, 15, 16, 18, 20, 27, 28, 30, 32, 33, 38, 39, 41, 42, 43], "label_product": 38, "labels_st": 30, "labels_to_remov": 30, "lah": [4, 7, 11], "larg": [10, 28, 31, 42, 43], "larger": 35, "last": 35, "later": [0, 2, 3, 4, 5, 6, 7, 8, 9, 13, 32, 33, 44], "latest": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "latest_releas": 31, "launch": [13, 47], "layer": 15, "layout": 16, "lead": [0, 3, 8, 14, 26, 29, 30, 33, 37, 38, 39, 40, 41], "leader": [38, 39], "leading_separ": [14, 26, 38], "leaf": 39, "leak": 0, "least": [0, 13], "leav": [3, 5, 13, 28, 39, 44], "leendert": 9, "left": 29, "legaci": [0, 44], "length": [3, 13, 18, 39], "let": [8, 10, 33], "letter": 14, "level": [0, 13, 14], "lib": [18, 42], "libera": 46, "librari": [0, 2], "library_inventory_filtering_v1": 0, "licens": 0, "life": [0, 3, 13, 44], "lifecycl": 44, "lift": 0, "like": [0, 1, 4, 7, 11, 13, 28, 39, 41], "limit": [0, 2, 9, 13, 20, 41], "limit_cpu": [0, 41], "limit_memori": [0, 41], "line": [0, 4, 7, 9, 11, 13, 44], "linux": [7, 14, 16, 18, 38], "list": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 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, 43, 44, 46, 47], "listen": [13, 39], "listen_addr": 39, "listen_port": 20, "ljungberg": [40, 41], "lnmp": [12, 13], "lnmp_nginx": [12, 13], "load": [0, 3, 4, 5, 6, 7, 13, 16, 17, 20, 23, 46], "load_path": 20, "local": [0, 2, 3, 5, 12, 13, 14, 16, 18, 20, 24, 25, 26, 27, 28, 31, 38, 42, 43, 44], "local_follow": 10, "localhost": [0, 2, 3, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 39, 40, 41, 42, 43, 44], "localvolum": 5, "locat": [3, 4, 5, 6, 7], "lock": 39, "log": [0, 12, 13, 20, 39, 41, 44, 46], "log_driv": [0, 13, 41], "log_driver_opt": [0, 41], "log_entries_for_slow_follow": 39, "log_opt": [0, 13], "log_volum": 20, "logfmt": 0, "login": [25, 44], "login_result": 25, "logout": [25, 44], "long": [2, 3, 9, 12, 13, 14, 27, 38, 45], "longer": [0, 1, 2, 3, 8, 13, 14, 29, 30, 33, 37, 38, 39, 40, 41, 44], "look": [0, 4, 5, 6, 7, 13, 41], "lookup": [8, 13, 33], "loop": [0, 28], "loosevers": 0, "lorin": 9, "loss": [4, 7, 11, 13, 41], "lost": 43, "low": [2, 9, 14, 26, 38, 47], "lower": [2, 9, 14, 26, 38, 47], "m": [13, 16, 20, 32, 41], "mac": [0, 3, 13, 28], "mac_address": [0, 13], "macaddress": 3, "machin": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 46], "made": [16, 30, 41], "mai": [12, 13, 27, 35, 38, 41], "main": [0, 4, 5, 6, 7], "mainli": 44, "mainten": 0, "make": [0, 6, 13, 14, 18, 20, 26, 28, 38, 39, 41, 43, 44], "manag": [0, 2, 4, 6, 7, 9, 10, 17, 35, 37, 38, 41, 46], "mandatori": 0, "mani": [0, 13], "manifest": 16, "manual": 0, "map": [0, 3, 5, 7, 8, 13, 14, 16, 20, 26, 28, 33, 38, 41], "mark": 0, "markup": 0, "mask": 39, "match": [0, 10, 12, 13, 14, 15, 20, 21, 23, 26, 27, 29, 37, 38, 40, 41], "matrix": [0, 46], "max": 41, "max_attempt": 41, "max_failure_ratio": 41, "max_file_size_for_diff": 10, "maximum": [0, 2, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "mb": 13, "mean": [0, 13, 16, 20, 28], "meaning": 0, "mebibyt": [13, 16, 20, 32, 41], "meet": 15, "mehra": 31, "mem": 13, "member": 3, "memori": [0, 13, 20, 41], "memory_reserv": 13, "memory_swap": [0, 13], "memory_swappi": 13, "memswap": 20, "mention": 13, "merg": [3, 4, 5, 6, 7, 14, 26, 30, 38, 45], "messag": [0, 37], "met": 0, "meta": [3, 8, 33], "metadata": [8, 13, 14, 26, 30, 33, 38, 39], "method": [15, 37], "might": [0, 1, 3, 4, 7, 8, 11, 13, 14, 16, 20, 26, 29, 30, 33, 37, 38, 39, 40, 41], "migrat": [0, 3], "minim": [0, 14, 26, 38], "minimum": 13, "minor": 20, "minut": [0, 5, 13], "miss": [0, 5, 6, 8, 13, 33], "missing_imag": 0, "mode": [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, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 47], "model": 47, "modern": 3, "modif": 38, "modifi": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "modul": [2, 14, 38], "module_default": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "module_util": 0, "monitor": 41, "monkei": [8, 33], "more": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "moreov": 0, "morph027": 38, "most": [0, 5, 13, 44], "mostli": 0, "mount": [0, 5, 7, 13, 41], "mountpoint": 42, "move": [0, 13], "msg": [1, 12, 19, 27, 37, 42, 44], "much": 13, "multi": [0, 4, 6, 7, 16, 46], "multipl": [0, 4, 5, 6, 7, 14, 17, 18, 19, 29, 32, 44], "munoz": [34, 36], "must": [4, 5, 6, 7, 10, 11, 13, 14, 16, 20, 21, 22, 26, 29, 30, 37, 38, 39, 40, 41, 44], "mutual": [3, 4, 5, 6, 7, 8, 10, 14, 16, 26, 33, 34, 35, 36, 38], "my": [13, 14, 38, 44], "my_sinatra": 20, "myapp": 20, "myapplic": 13, "myconfig_nam": 41, "mycontain": 13, "mydata": [10, 12, 13, 27, 42], "mydockercfg": 25, "myimag": 20, "mylabel": [15, 41], "mymachin": 26, "mynetwork": 41, "mynetwork_alia": 41, "mynod": [29, 30, 37, 39], "mynode1": 29, "mynode2": 29, "myredi": 13, "mysecret_nam": 41, "myservic": [13, 37, 40, 41], "mystack": 35, "n": [1, 12, 15, 18, 27, 29, 34, 35, 36, 37, 40, 42], "name": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46], "namespac": [0, 13, 34, 47], "nanosecond": 39, "necessari": [0, 2, 10, 14, 38], "need": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "neg": 13, "neither": [4, 5, 6, 7, 16, 20, 34, 35, 36, 44], "nest": 35, "net": [0, 31], "net2": 28, "network": [0, 3, 4, 5, 6, 7, 13, 14, 15, 16, 20, 32, 41, 46], "network_foo": 14, "network_four": 28, "network_ipv6_on": 28, "network_ipv6_two": 28, "network_mod": [0, 13], "network_nam": [13, 28], "network_on": 28, "network_thre": 28, "network_two": 28, "networkmod": [0, 14], "networks_cli_compat": [0, 13], "networks_filt": [0, 15, 32], "never": [0, 3, 5, 13, 16, 35, 43, 44], "new": [1, 2, 3, 4, 5, 6, 8, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 26, 28, 30, 31, 33, 35, 39, 41, 43, 46, 47], "newer": [0, 3, 4, 5, 6, 7, 8, 13, 16, 29, 30, 33, 37, 38, 39, 40, 41, 46], "newlin": [4, 7, 11], "next": [0, 14, 44], "nginx": [12, 13, 20, 35, 41], "nic": 3, "nice": 0, "nicer": 0, "no_copi": [13, 41], "no_default": [0, 13], "no_dep": 7, "no_log": 0, "nocach": [0, 3, 16, 20], "nocopi": 13, "node": [0, 2, 10, 13, 14, 26, 28, 34, 35, 36, 37, 39, 41, 44, 46, 47], "node_cert_expiri": 39, "node_id": 39, "nodes_filt": 37, "nofil": 13, "non": [0, 1, 10, 12, 13, 16, 20, 27, 28, 32, 45, 47], "none": [0, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 19, 20, 22, 25, 27, 30, 32, 33, 35, 38, 39, 40, 41, 42], "nonlead": 38, "nop": 18, "nor": [4, 5, 6, 7, 16, 34, 35, 36, 44], "normal": [0, 13], "not_pres": 21, "notat": 28, "note": [9, 44, 45, 46], "noth": 0, "notic": [0, 13], "now": [0, 13], "nowadai": [2, 14, 38], "npipe": [13, 41], "nsenter": [0, 45, 46], "nsenter_connect": 47, "nsenter_pid": [0, 47], "null": [3, 12, 13, 18, 27, 41, 42], "number": [0, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "nvidia": 13, "o": [10, 13, 14, 16, 18, 20, 26, 38], "object": [8, 10, 26, 33, 37, 46], "obtain": 0, "occur": 0, "oci": [0, 16], "octal": 41, "off": 4, "offer": [16, 44], "ohno": 13, "ok": 13, "olaf": 25, "old": [0, 2, 3, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "older": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 39, 40, 41, 42, 43], "olsaki": 25, "omit": [0, 13, 14, 16, 20, 26, 32, 38, 39, 41], "onbuild": [12, 13, 18], "onc": [0, 2, 9, 41, 45], "one": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 29, 30, 32, 33, 37, 38, 39, 40, 41, 44], "ones": [13, 28, 30], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 25, 28, 29, 30, 32, 33, 37, 39, 40, 41, 44], "oom": 13, "oom_kil": 13, "oom_score_adj": 13, "oosterveld": 13, "open": [7, 13], "openstdin": [12, 13, 18], "oper": [0, 3, 4, 5, 6, 7, 20, 28, 30, 31, 39, 41, 43], "operatingsystem": 41, "opt": [35, 41], "optim": 0, "option": [0, 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, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45], "orchestr": [34, 44], "order": [0, 1, 2, 3, 4, 5, 6, 7, 9, 11, 13, 14, 26, 38, 41, 44, 47], "org": 13, "os_linux": [14, 38], "other": [0, 1, 3, 4, 7, 11, 13, 14, 26, 29, 30, 37, 38, 39, 40, 41, 44], "otherwis": [3, 8, 10, 14, 26, 29, 30, 33, 37, 38, 39, 40, 41], "out": [0, 2, 5, 9, 25, 41, 44, 45], "output": [0, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 15, 16, 20, 26, 27, 29, 37, 40, 44, 45], "output_log": [13, 44], "over": [4, 5, 6, 7, 28, 44], "overlai": 28, "overlay2": 13, "overrid": [2, 3, 7, 9, 13, 14, 26, 35, 38, 41, 47], "overview": 13, "overwrit": [0, 13, 16, 20, 24], "overwritten": [0, 24], "own": [14, 16, 38], "owner": [10, 13, 41], "owner_id": 10, "p": [13, 16, 20, 32, 37, 41], "packag": [0, 3, 8, 29, 30, 33, 37, 39, 40, 41, 44], "pacur": [17, 18, 20, 21, 23], "pair": [3, 5, 13, 16, 20, 32, 41], "parallel": 41, "paramet": 0, "paramiko": [2, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43], "parent": [13, 14, 18, 23, 26, 38], "parent_group": [14, 26, 38], "pars": [0, 4, 7, 11, 13, 41], "parser": [4, 7, 11, 13, 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, 38, 39, 40, 41, 42, 43, 47], "parti": [28, 43], "partial": [13, 20, 21], "particular": [3, 15], "pass": [0, 4, 5, 7, 9, 11, 13, 14, 16, 39, 41, 44], "password": [25, 31], "past": 0, "path": [0, 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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "path_in_contain": 13, "path_on_host": 13, "paus": [13, 30, 41], "pavel": [13, 20], "pebibyt": [13, 16, 20, 32, 41], "peculiar": 0, "pem": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "per": [0, 13, 26, 38, 41], "perform": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "period": [13, 41], "permiss": [13, 31], "phase": 13, "philipp": 13, "pick": 0, "pid": [13, 45, 47], "pid_mod": 13, "pids_limit": 13, "piotr": [15, 29, 30, 37, 39, 41], "pip": [3, 8, 29, 30, 33, 37, 39, 40, 41, 44], "pipe": [0, 2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 42, 43], "pipelin": 1, "place": [0, 13, 16], "placement": [0, 41], "placement_prefer": 41, "plaintext": 25, "plan": [0, 10], "platform": [0, 13, 16, 20, 21, 35, 38], "playbook": [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, 40, 41, 42, 43, 44, 47], "playbook_dir": 3, "pleas": [0, 1, 3, 4, 7, 8, 11, 13, 16, 28, 29, 30, 33, 37, 39, 40, 41, 43, 44], "plugin": [2, 3, 4, 6, 7, 9, 10, 16, 26, 41, 44, 45, 47], "plugin_nam": 31, "plugin_on": 31, "plugin_opt": 31, "podman": [0, 1], "point": [0, 13], "polici": [0, 5, 6, 13, 41], "poll": 0, "pool": 39, "popul": 13, "porshkevich": 31, "port": [3, 5, 7, 13, 14, 16, 17, 20, 21, 22, 23, 24, 36, 38, 39, 41], "posit": [13, 16, 20, 32, 41], "posix": 44, "possibl": [0, 13, 14, 15, 20, 26, 32, 37, 38, 39], "possibli": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "postgr": [3, 13], "potenti": [0, 2, 9, 45], "power": 13, "pre": [0, 10], "preced": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "precis": 13, "predict": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "pref": 41, "prefer": [9, 13, 20, 21, 41], "prefix": [14, 26, 38], "prepar": 0, "prereleas": 0, "presenc": 29, "present": [0, 3, 5, 6, 8, 10, 13, 15, 20, 24, 25, 28, 31, 33, 35, 39, 41, 43], "prevent": [0, 4, 7, 8, 11, 13, 33], "previou": 0, "primari": [5, 14], "print": [0, 1, 4, 7, 11, 12, 13, 19, 27, 37, 42], "prior": [3, 13, 41], "prioriti": [2, 9, 14, 26, 38, 47], "privat": [13, 20, 25, 41, 44], "private_ssh_port": 14, "privileg": [0, 2, 4, 9, 13, 45, 47], "problem": [0, 2, 13, 14, 38], "process": [3, 4, 13, 14, 20, 26, 38, 41], "product": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "profil": [0, 3, 4, 5, 6, 7], "program": [4, 5, 6, 7, 16, 34, 35, 36, 47], "progress": [0, 7], "project": [0, 3, 4, 5, 7, 44, 46], "project_nam": [3, 4, 5, 6, 7], "project_service_": 3, "project_src": [0, 3, 4, 5, 6, 7], "propag": [13, 41], "proper": 0, "properli": [0, 28], "properti": 13, "protocol": [5, 41], "provid": [0, 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, 40, 41, 42, 43, 44, 47], "proxi": [13, 20], "proxycommand": 0, "prune": [0, 23, 35, 44, 46], "pseudo": [13, 41], "psf": 0, "public": 0, "publish": [0, 5, 7, 13, 41], "publish_all_port": [0, 13], "published_port": [0, 13, 41], "publishedport": 5, "pull": [0, 3, 5, 7, 13, 16, 17, 18, 20, 22, 23, 24, 44, 46, 47], "pull_check_mode_behavior": [0, 13], "pull_platform": 0, "pull_polici": 5, "pulled_imag": 3, "purge_network": [0, 13], "purpos": 39, "push": [0, 16, 17, 19, 20, 23, 24, 44, 46], "put": [2, 9, 16], "py": [0, 3, 8, 29, 30, 33, 37, 39, 40, 41, 44], "pyopenssl": [2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 42, 43], "pypi": 44, "python": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "python_requirements_info": 44, "pywin32": [2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 42, 43], "pyyaml": [0, 3, 4, 5, 6, 7, 35], "queri": [0, 15, 29, 35, 44], "question": 46, "quiet_pul": 7, "quot": [0, 4, 7, 11, 13, 41], "quota": 13, "rais": 0, "ran": [1, 4, 6, 7, 11], "random": [0, 13], "rang": [13, 28], "rate": 13, "rather": [0, 3, 13], "ratio": 41, "raw": 0, "rc": [4, 7, 11], "re": [0, 8, 13, 25, 28, 33], "reach": 13, "reachabl": 39, "read": [0, 2, 3, 8, 9, 13, 14, 16, 33, 38, 41, 45], "read_onli": [13, 41], "readabl": [10, 13], "readonli": 41, "realli": 44, "reap": [13, 41], "reason": [0, 13, 16], "reauth": 25, "reauthor": 25, "rebuild": [0, 16], "rebuilt": [3, 41], "receiv": 0, "reclaim": 32, "recogn": [14, 38], "reconnect": 28, "recreat": [0, 3, 5, 8, 13, 28, 33, 41, 43], "redi": [0, 13], "reduc": 0, "refactor": 0, "refer": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "referenc": 1, "reflect": 13, "refresh": 25, "regard": [0, 3], "region": 26, "regist": [1, 3, 4, 5, 7, 11, 12, 15, 18, 19, 27, 29, 30, 34, 36, 37, 40, 41, 42], "registri": [0, 13, 16, 18, 19, 20, 23, 24, 35, 41, 44, 46], "registry_serv": [16, 17, 20, 21, 22, 23, 24], "registry_url": 25, "regular": [0, 1], "reinstal": [3, 29, 30, 37, 39, 40, 44], "reject": 0, "rekcod": 25, "rel": [0, 3, 4, 5, 6, 7, 13, 16, 20], "relat": 13, "releas": [4, 5, 6, 7, 20, 46], "relev": 13, "reli": [0, 28, 47], "remain": [13, 30], "remot": [0, 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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47], "remote_addr": [2, 9, 39], "remote_tmp": 41, "remote_us": [2, 9], "remov": [2, 3, 5, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 43, 44, 46], "removal_wait_timeout": [0, 13], "remove_imag": [3, 5], "remove_orphan": [3, 5, 7], "remove_volum": [3, 5], "renam": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43], "render": 0, "replac": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "replic": [0, 41], "replica": [4, 41], "replicas_max_per_nod": [0, 41], "repo": [20, 22], "repodigest": 18, "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, 39, 40, 41, 42, 43, 46, 47], "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, 39, 40, 41, 42, 43, 46, 47], "repotag": 18, "repres": [12, 13, 15, 27, 29, 37, 40, 41], "represent": [8, 33], "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, 39, 40, 41, 42, 43, 46, 47], "requir": [0, 9, 47], "reserv": [0, 41], "reserve_cpu": [0, 41], "reserve_memori": [0, 41], "reset": 0, "resolv": [13, 16, 20, 35, 41], "resolve_imag": [35, 41], "resourc": [0, 5, 6, 13, 35, 41], "resp": [3, 25], "respect": [0, 4, 7, 11, 13, 25], "respons": [2, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "restart": [0, 3, 5, 13, 41], "restart_config": [0, 41], "restart_polici": [0, 13, 41], "restart_policy_attempt": [0, 41], "restart_policy_delai": [0, 41], "restart_policy_window": [0, 41], "restart_retri": [0, 13], "restor": [0, 13], "restrict": [0, 28], "result": [0, 3, 4, 5, 7, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 31, 34, 36, 37, 40, 42, 43, 44], "retain": 13, "retri": [13, 35, 41], "retriev": [0, 20, 34, 36, 39, 44, 46], "return": [0, 38, 46], "reus": [0, 13], "revert": 0, "rewrit": 0, "rewritten": 0, "rfc": 0, "right": [0, 17], "risk": 10, "rm": [0, 7, 8, 20, 33], "ro": 13, "role": [30, 39, 41], "roll": [0, 41], "rollback": 41, "rollback_config": 41, "rolling_vers": [0, 8, 33], "room": 46, "root": [0, 4, 7, 10, 11, 13, 41, 45, 47], "rootf": 13, "rotat": 39, "rotate_manager_token": 39, "rotate_worker_token": 39, "rprivat": [13, 41], "rshare": [13, 41], "rslave": [13, 41], "rule": 13, "run": [0, 3, 5, 6, 8, 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, 43, 44, 45, 46], "runm": 10, "running_requir": 26, "runningfor": 5, "runserv": 3, "runtim": 13, "rw": 13, "rwm": 13, "safe": [16, 38], "sakar": 31, "sakar97": 31, "same": [0, 3, 13, 14, 28, 29, 30, 31, 37, 39, 40, 42, 43, 44], "sampl": [3, 4, 5, 6, 7, 8, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 33, 34, 35, 36, 39, 40, 41, 42, 43], "sanit": 0, "satisfi": 13, "sbarnea": 20, "sbin": [12, 13, 18], "scale": [0, 3, 5], "schedul": [0, 13], "scheme": 0, "schneider": 13, "scope": [27, 28, 42], "score": 13, "scratch": 0, "script": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "sda": 13, "sda2": 43, "sdb": 13, "sdk": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "search": [4, 5, 6, 7, 13, 16, 34, 35, 36, 41], "second": [2, 3, 5, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 43, 44], "secret": [0, 16, 41, 44, 46], "secret_id": [33, 41], "secret_kei": 13, "secret_nam": [33, 41], "secrets3": 25, "section": 0, "secur": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "security_opt": 13, "see": [0, 2, 8, 10, 11, 12, 13, 14, 15, 18, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "seem": [1, 10, 13, 17], "select": [0, 13, 14, 15, 18, 20, 21, 22, 26, 28, 30, 32, 37, 38, 44], "selectattr": 5, "selector": 0, "self": [0, 29], "selinux": 13, "semant": 0, "send": [0, 2, 11, 13, 35, 39], "sens": [6, 16], "separ": [0, 13, 14, 26, 38], "sequenti": [14, 26, 38], "server": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "serveraddress": 25, "servic": [0, 3, 5, 6, 13, 14, 16, 20, 28, 34, 35, 37, 46], "service_": 14, "service_nam": 3, "service_port": 7, "services_filt": 37, "set": [0, 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, 40, 41, 42, 43, 44, 45], "sever": 44, "sh": [4, 7, 10, 11, 18], "sha256": [5, 19, 41], "share": [13, 20, 41], "shell": [0, 4, 7, 10, 11, 13, 41], "ship": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "shm": [0, 13, 16, 20], "shm_size": [13, 16, 20], "short": [0, 3, 12, 13, 14, 27, 44], "short_id": 3, "shorter": 13, "should": [0, 2, 3, 8, 9, 10, 13, 14, 17, 26, 29, 30, 33, 37, 38, 39, 40, 41, 44, 45, 47], "show": [0, 3, 5, 15, 34, 36, 37, 41, 44], "shown": [0, 21], "shutdown": [3, 5], "side": [0, 13, 39], "sigkil": 13, "sign": 39, "signal": [13, 41], "signific": 41, "signing_ca_cert": 39, "signing_ca_kei": [0, 39], "silent": 26, "similar": [0, 8, 10, 12, 25, 27, 33, 44], "similarli": 13, "simpl": [4, 7, 11], "simpli": 13, "simplifi": 0, "simultan": 41, "sinatra": [18, 20], "sinc": [0, 1, 3, 4, 6, 7, 11, 13, 14, 16, 26, 38, 44], "singl": [0, 16, 18, 28, 44], "site": [12, 13], "situat": 0, "size": [0, 5, 13, 16, 18, 20, 26, 41], "skip": [0, 14, 26, 38], "slave": [13, 41], "sleep": [13, 41], "sleeper": 13, "sleepi": 13, "sleepyz": 13, "sleepyzz": 13, "slow": 39, "small": 0, "smart": 3, "snapshot": 39, "snapshot_interv": 39, "so": [0, 13, 14, 28, 41, 44], "sock": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "socker_handl": 0, "socket": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "socket_handl": 0, "socket_help": 0, "soft": 13, "softwar": 0, "softzilla": [13, 20], "some": [0, 13, 16], "someus": 13, "somewher": [14, 38], "sorin": 20, "sourc": [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, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47], "space": [15, 32], "spam": 0, "spawn": 0, "spdx": 0, "spec": [0, 35, 38], "special": [0, 1, 13, 15, 16, 20, 38], "specif": [0, 13, 16, 20, 21, 28, 34, 43, 44], "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, 39, 40, 41, 42, 43, 44, 47], "spell": 28, "split": 13, "spread": 41, "src": 16, "ssbarnea": 20, "ssh": [0, 2, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43], "ssl": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "ssl_match_hostnam": [2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 42, 43], "ssl_version": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "sslsocket": [0, 2, 11], "ssssh": 13, "stabl": [4, 5, 6, 7], "stack": [14, 41, 46], "stack_": 14, "stack_spec_diff": 35, "stage": [16, 20], "standard": [0, 4, 7, 11, 26], "start": [0, 2, 3, 4, 5, 6, 7, 9, 13, 14, 26, 38, 41, 44, 45], "start_interv": [0, 13], "start_period": [13, 41], "startswith": 14, "startup": 0, "state": [0, 1, 3, 5, 8, 12, 13, 15, 18, 20, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "statu": [0, 1, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "stderr": [0, 4, 7, 11], "stderr_lin": [4, 7, 11], "stdin": [0, 4, 7, 11, 13], "stdin_add_newlin": [4, 7, 11], "stdinonc": [12, 13, 18], "stdout": [0, 4, 7, 11, 20], "stefan": 38, "steinbach": 13, "step": 0, "still": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 43, 44, 47], "stop": [0, 3, 5, 13, 14, 41, 44], "stop_grace_period": [0, 41], "stop_sign": [13, 41], "stop_timeout": [0, 13], "stoptimeout": 13, "storag": [0, 13], "storage_opt": [0, 13], "store": [16, 25, 26, 39], "stream": 0, "strict": [0, 13, 14, 26, 38], "stricthostkeycheck": 26, "strictvers": 0, "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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "strip": [4, 7, 11], "strip_empty_end": [4, 7, 11], "structur": 13, "style": 13, "sub": [13, 41], "subcommand": [28, 31, 42, 43], "subdirectori": 16, "submit": [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, 40, 41, 42, 43, 46, 47], "subnet": [3, 27, 28, 39], "subnet_s": 39, "subopt": 0, "subset": [3, 5, 6, 15, 28, 37], "subshel": 0, "success": [3, 4, 5, 6, 7, 8, 10, 11, 13, 15, 16, 17, 19, 20, 21, 22, 23, 24, 28, 30, 31, 33, 37, 39, 42, 43], "successfulli": [0, 26], "suddenli": 3, "sum": 15, "summari": 15, "sun": 13, "supersed": [3, 8, 29, 30, 33, 37, 39, 40, 41], "supervisord": [12, 13], "suppli": 13, "support": [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, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46], "suppos": [0, 3], "sure": [0, 13, 18, 20, 28, 39, 43, 44], "swap": [0, 13, 20], "swappi": 13, "swarm": [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, 42, 43, 46, 47], "swarm_fact": [37, 39], "swarm_servic": 41, "swarm_unlock_kei": 37, "switch": 0, "swmkei": 39, "swmtkn": 39, "sync": 39, "synchron": [4, 7, 11, 44], "syntax": 13, "sys_tim": 13, "sysctl": [0, 13, 41], "syslog": 13, "system": [10, 13, 15, 44], "systemd": 47, "t": [0, 13, 16, 20, 32, 41], "tag": [0, 5, 13, 16, 17, 18, 19, 20, 21, 22, 23, 26, 41, 44, 46], "tag_nam": [16, 17, 20, 21, 22, 23, 24], "tagged_imag": 24, "take": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "taken": [3, 4, 5, 6, 7, 13], "talk": [0, 15, 37, 44], "tar": [0, 16, 17, 19, 20], "tarbal": [16, 17, 44], "target": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "target_port": 41, "targetport": 5, "task": [0, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47], "task_history_retention_limit": 39, "tasks_filt": 37, "tasktempl": 35, "tbouvet": [30, 39], "tcp": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "tear": [3, 5], "tebibyt": [13, 16, 20, 32, 41], "templat": [0, 4, 7, 8, 11, 13], "template_driv": [0, 8], "temporari": [4, 5, 6, 7], "termin": 13, "test": [0, 4, 5, 6, 7, 8, 13, 27, 33, 41, 42], "test_cli_compat": [0, 13], "test_stack": 36, "test_stack_test_servic": 35, "testingnet": 13, "testingnet2": 13, "testus": 25, "text": 0, "th": 7, "than": [0, 3, 13, 24, 26, 29, 30, 32, 35, 41], "thei": [0, 1, 5, 6, 10, 13, 14, 26, 28, 38, 41, 44], "them": [0, 1, 3, 5, 6, 13, 25, 26, 28, 29, 30, 37, 39, 40, 44], "therefor": 13, "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, 40, 41, 42, 43, 44, 45, 47], "thierri": [30, 39], "thoma": 13, "thomassteinbach": 13, "those": [0, 14, 26, 30, 38], "though": [0, 8, 20, 33], "three": 0, "through": [0, 4, 7, 11], "thu": [0, 44], "tick": 39, "time": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 43, 44], "time_out": 38, "timeout": [0, 2, 3, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "timestamp": 5, "tl": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "tls_ca_cert": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "tls_client_cert": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "tls_client_kei": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "tls_hostnam": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "tls_verifi": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "tmfs_size": 0, "tmp": [12, 13, 17, 25, 41], "tmpf": [13, 41], "tmpfs_mode": [0, 13, 41], "tmpfs_size": [13, 41], "to_n": 0, "toggl": [14, 38], "token": [0, 26, 37, 39], "told": 0, "too": 9, "tool": [0, 2, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "top": [13, 14], "total": [13, 20], "traceback": 0, "tracker": [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, 40, 41, 42, 43, 46, 47], "traffic": 39, "trail": 0, "trailing_separ": [14, 26, 38], "transfer": 10, "transform": 14, "transport": [2, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43], "treat": 0, "tree": 10, "tri": [0, 4, 5, 6, 7, 13], "trigger": [39, 41], "trim": 0, "troubl": 0, "true": [0, 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, 40, 41, 42, 43, 44], "trust_image_cont": 0, "try": [0, 5, 10, 13, 20, 21, 28, 35], "tty": [4, 7, 11, 12, 13, 18, 41], "tune": 13, "two": [0, 3, 8, 13, 24, 33, 44], "txt": [0, 10, 41], "type": [0, 2, 4, 7, 9, 11, 13, 14, 15, 16, 26, 28, 32, 37, 38, 41, 43, 47], "u": [13, 35, 41], "ubuntu": [13, 41], "udp": [5, 13, 41], "uid": [13, 41], "ulimit": 13, "un": [20, 23], "unblock": 0, "unchang": [3, 5, 30, 41], "under": [0, 3, 4, 5, 6, 7, 16, 34, 44], "underscor": [14, 26, 38], "unexpect": 13, "unhealthi": [13, 41], "uninstal": [3, 29, 30, 37, 39, 40, 44], "unintend": 0, "uniqu": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "unit": [0, 13, 16, 20, 32, 41], "unix": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "unknown": [0, 5, 6, 21], "unless": [0, 3, 8, 13, 15, 33, 37, 45, 47], "unlimit": [0, 13, 20], "unlock": [37, 39], "unlock_kei": 37, "unlockkei": 39, "unmaintain": 0, "unnecessari": 0, "unreach": 29, "unsaf": 0, "unspecifi": 41, "unstructur": 0, "untag": [23, 44], "until": [0, 13, 14, 15, 26, 32, 35, 38], "unus": 0, "unverifi": [14, 38], "up": [0, 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, 40, 41, 42, 43, 47], "updat": [0, 1, 6, 8, 13, 16, 20, 25, 28, 30, 33, 39, 41, 44], "update_config": [0, 41], "update_delai": [0, 41], "update_failure_act": [0, 41], "update_max_failure_ratio": [0, 41], "update_monitor": [0, 41], "update_ord": [0, 41], "update_parallel": [0, 41], "upgrad": [0, 16], "upload": 10, "uri": 38, "url": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "urllib3": 0, "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 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, 43, 44, 45, 46, 47], "usag": [0, 3, 13, 15, 18, 20, 41, 46], "use_alias": 7, "use_config_proxi": 20, "use_extra_var": [14, 26, 38], "use_ssh_cli": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43], "use_tl": 0, "usealias": 7, "user": [0, 2, 4, 7, 9, 10, 11, 12, 13, 16, 18, 25, 26, 30, 39, 41, 44, 45, 46, 47], "usernam": [13, 25, 41], "userns_mod": 13, "ushuz": 8, "usr": [12, 13, 18], "usual": [13, 20], "ut": 13, "utf": 10, "util": [0, 13, 44], "v": 0, "v1": [5, 12, 13, 20, 25, 46], "v2": 3, "v8": 16, "valid": [0, 2, 3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "validate_cert": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "valu": [0, 2, 9, 14, 26, 38, 44], "value1": [15, 28], "value2": [15, 28], "value_specified_in_no_log_paramet": [0, 39], "vanish": 0, "var": [0, 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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "variabl": [0, 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, 40, 41, 42, 43, 47], "variant": [13, 16, 20], "variou": [0, 4, 5, 6, 7, 13, 16, 17, 46], "vendor": 0, "verbos": [15, 37], "verbose_output": [14, 15, 26, 37, 38], "veri": [3, 8, 13, 29, 30, 33, 37, 39, 40, 41], "verif": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "verifi": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "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, 40, 41, 42, 43, 44, 46, 47], "versions_to_keep": [8, 33], "via": [13, 28, 30, 32, 38, 41], "view": 13, "vip": 41, "virtual": 3, "virtuals": 18, "visibl": 0, "vladimir": 31, "volum": [0, 3, 4, 5, 6, 7, 12, 13, 15, 18, 32, 37, 41, 46], "volume_cr": 43, "volume_driv": 13, "volume_nam": [42, 43], "volume_on": 43, "volume_opt": 13, "volume_two": 43, "volumes_filt": [0, 15, 32], "volumes_from": 13, "volumes_space_reclaim": 32, "w": 38, "wa": [0, 1, 2, 3, 5, 6, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44], "wai": [0, 4, 7, 11, 13, 14, 20, 47], "wait": [0, 2, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44, 45], "wait_timeout": 5, "want": [0, 2, 9, 13, 18, 20, 28, 32], "warn": [0, 13, 26], "we": [0, 2, 9, 13, 14, 16, 20, 26, 28, 38, 45], "weave_password": 31, "weavework": 31, "web": [3, 5, 35, 41], "web_contain": 5, "webapp": 41, "weight": [13, 20], "well": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "welt": 0, "were": [0, 13, 20, 23, 32], "what": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "whatev": [13, 20, 21], "when": [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, 40, 41, 42, 43, 44], "where": [0, 1, 3, 5, 8, 10, 13, 14, 16, 18, 20, 26, 33, 38, 41, 44, 45], "whether": [0, 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, 40, 41, 42, 43, 45, 46, 47], "which": [0, 3, 4, 7, 8, 11, 13, 14, 15, 16, 20, 22, 25, 26, 33, 37, 38, 39, 41, 44], "while": [0, 13, 41, 47], "whitespac": 0, "whose": [0, 14, 26, 32, 38, 39], "why": [2, 3, 14, 38], "wide": 13, "wildcard": 13, "window": [0, 2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 41, 42, 43], "with_registry_auth": 35, "with_sequ": 13, "within": 13, "without": [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, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "witkowski": 41, "wojciechowski": [15, 29, 30, 37, 39, 41], "wojciechowskipiotr": [15, 29, 30, 37, 39, 41], "work": [0, 1, 2, 3, 8, 10, 11, 13, 14, 16, 30, 33, 41, 44, 46], "workaround": 16, "workdir": 41, "worker": [28, 30, 38, 39], "working_dir": [0, 2, 9, 13, 41], "workingdir": 18, "world": [17, 19], "would": [0, 6, 13], "wrap": 44, "wrapper": 0, "writabl": 10, "write": [10, 13, 16], "writer": 0, "written": 0, "www": 0, "x": [0, 16, 41, 44], "x86_64": 38, "xf": 13, "ximon": 26, "ximon18": 26, "xvda": 13, "xxx": 39, "xxxxx": 39, "y": [0, 16], "yaml": [0, 3, 4, 5, 6, 7, 11, 13, 14, 26, 35, 38, 41], "ye": [13, 14, 26, 38], "yet": [0, 13], "yml": [0, 3, 4, 5, 6, 7, 14, 18, 26, 35, 38], "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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47], "your": [15, 25, 28, 37, 39, 44], "yourself": 25, "z": 13, "zanzico": [35, 41], "zero": [0, 13], "zfil": 13, "zone": 0, "zzzz": 13}, "titles": ["Community.Docker Release Notes", "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_exec module \u2013 Run command in a container of a Compose service", "community.docker.docker_compose_v2 module \u2013 Manage multi-container Docker applications with Docker Compose CLI plugin", "community.docker.docker_compose_v2_pull module \u2013 Pull a Docker compose project", "community.docker.docker_compose_v2_run module \u2013 Run command in a new container of a Compose service", "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_export module \u2013 Export (archive) Docker images", "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"], "titleterms": {"": 19, "0": 0, "1": 0, "10": 0, "11": 0, "12": 0, "13": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "about": [1, 12, 15, 27, 29, 37, 40, 42], "all": [34, 45], "allow": 32, "also": [3, 4, 5, 6, 7, 16, 17, 19, 20, 21, 22, 23, 24, 34], "ansibl": [14, 38], "api": 44, "applic": [3, 5], "archiv": [17, 19], "attribut": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "author": [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, 40, 41, 42, 43, 47], "break": 0, "bugfix": 0, "build": 16, "buildx": 16, "chang": 0, "changelog": 46, "cli": 5, "cluster": [37, 39], "collect": [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, 40, 41, 42, 43, 45, 47], "command": [4, 7, 11], "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, 39, 40, 41, 42, 43, 46, 47], "compos": [3, 4, 5, 6, 7, 44], "config": 8, "configur": 44, "connect": [0, 2, 9, 44, 46, 47], "contain": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 44, 47], "control": 47, "copi": 10, "current_container_fact": 1, "daemon": 44, "default": 44, "deprec": [0, 3], "descript": 46, "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, 40, 41, 42, 43, 44, 46, 47], "docker_api": 2, "docker_compos": 3, "docker_compose_v2": 5, "docker_compose_v2_exec": 4, "docker_compose_v2_pul": 6, "docker_compose_v2_run": 7, "docker_config": 8, "docker_contain": [13, 14], "docker_container_copy_into": 10, "docker_container_exec": 11, "docker_container_info": 12, "docker_host_info": 15, "docker_imag": 20, "docker_image_build": 16, "docker_image_export": 17, "docker_image_info": 18, "docker_image_load": 19, "docker_image_pul": 21, "docker_image_push": 22, "docker_image_remov": 23, "docker_image_tag": 24, "docker_login": 25, "docker_machin": 26, "docker_network": 28, "docker_network_info": 27, "docker_nod": 30, "docker_node_info": 29, "docker_plugin": 31, "docker_prun": 32, "docker_secret": 33, "docker_stack": 35, "docker_stack_info": 34, "docker_stack_task_info": 36, "docker_swarm": [38, 39], "docker_swarm_info": 37, "docker_swarm_servic": 41, "docker_swarm_service_info": 40, "docker_volum": 43, "docker_volume_info": 42, "dynam": [14, 38], "environ": [44, 45], "exampl": [1, 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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "execut": [11, 47], "export": 17, "fact": [1, 12, 15, 27, 29, 37, 42], "featur": 0, "file": 10, "fix": 0, "from": [19, 21, 29, 40], "group": 44, "guid": [0, 44, 46], "host": [15, 47], "imag": [16, 17, 18, 19, 20, 21, 22, 23, 24, 44], "index": [45, 46], "inform": [34, 36, 40], "inspect": 18, "inventori": [0, 14, 26, 38, 46], "issu": 0, "known": 0, "link": [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, 40, 41, 42, 43, 47], "list": 15, "load": 19, "log": 25, "machin": [26, 44], "major": 0, "manag": [3, 5, 8, 13, 20, 28, 29, 30, 31, 33, 39, 40, 43, 44], "minor": 0, "modul": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 46], "multi": [3, 5], "name": 24, "network": [27, 28, 44], "new": [0, 7, 24], "node": [29, 30, 38], "note": [0, 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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 47], "nsenter": 47, "object": [15, 32], "paramet": [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, 40, 41, 42, 43, 44, 47], "plain": 44, "plugin": [0, 5, 14, 31, 38, 46], "port": 0, "previous": 0, "project": 6, "prune": 32, "pull": [6, 21], "push": 22, "registri": [21, 22, 25], "releas": 0, "remov": [0, 23], "requir": [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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "retriev": [12, 15, 27, 29, 37, 40, 42], "return": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "run": [1, 2, 4, 7, 9, 47], "scenario": 46, "secret": 33, "secur": 0, "see": [3, 4, 5, 6, 7, 16, 17, 19, 20, 21, 22, 23, 24, 34], "servic": [4, 7, 15, 40, 41, 44], "sourc": 26, "stack": [34, 35, 36, 44], "statu": 3, "summari": 0, "swarm": [29, 30, 37, 38, 39, 40, 41, 44], "synopsi": [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, 40, 41, 42, 43, 47], "tag": 24, "task": [2, 9, 36], "topic": 0, "us": 16, "v0": 0, "v1": [0, 3, 44], "v2": [0, 44], "v3": 0, "valu": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "variabl": [44, 45], "variou": 32, "volum": [42, 43, 44], "whether": 1}}) \ No newline at end of file +Search.setIndex({"alltitles":{"Attributes":[[1,"attributes"],[3,"attributes"],[4,"attributes"],[5,"attributes"],[6,"attributes"],[7,"attributes"],[8,"attributes"],[10,"attributes"],[11,"attributes"],[12,"attributes"],[13,"attributes"],[15,"attributes"],[16,"attributes"],[17,"attributes"],[18,"attributes"],[19,"attributes"],[20,"attributes"],[21,"attributes"],[22,"attributes"],[23,"attributes"],[24,"attributes"],[25,"attributes"],[27,"attributes"],[28,"attributes"],[29,"attributes"],[30,"attributes"],[31,"attributes"],[32,"attributes"],[33,"attributes"],[34,"attributes"],[35,"attributes"],[36,"attributes"],[37,"attributes"],[39,"attributes"],[40,"attributes"],[41,"attributes"],[42,"attributes"],[43,"attributes"]],"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"],[39,"authors"],[40,"authors"],[41,"authors"],[42,"authors"],[43,"authors"],[47,"authors"]],"Breaking Changes / Porting Guide":[[0,"breaking-changes-porting-guide"],[0,"id135"],[0,"id163"]],"Bugfixes":[[0,"bugfixes"],[0,"id2"],[0,"id4"],[0,"id6"],[0,"id8"],[0,"id10"],[0,"id13"],[0,"id16"],[0,"id19"],[0,"id21"],[0,"id23"],[0,"id25"],[0,"id27"],[0,"id34"],[0,"id36"],[0,"id39"],[0,"id42"],[0,"id46"],[0,"id51"],[0,"id53"],[0,"id55"],[0,"id57"],[0,"id61"],[0,"id63"],[0,"id66"],[0,"id72"],[0,"id74"],[0,"id77"],[0,"id80"],[0,"id82"],[0,"id85"],[0,"id87"],[0,"id95"],[0,"id97"],[0,"id102"],[0,"id106"],[0,"id110"],[0,"id112"],[0,"id117"],[0,"id120"],[0,"id122"],[0,"id125"],[0,"id127"],[0,"id130"],[0,"id132"],[0,"id141"],[0,"id145"],[0,"id148"],[0,"id152"],[0,"id156"],[0,"id159"],[0,"id165"],[0,"id168"],[0,"id173"],[0,"id176"],[0,"id180"],[0,"id185"],[0,"id191"]],"Changelog":[[46,"changelog"]],"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"],[39,"collection-links"],[40,"collection-links"],[41,"collection-links"],[42,"collection-links"],[43,"collection-links"],[47,"collection-links"]],"Communication":[[46,"communication"]],"Community.Docker":[[46,null]],"Community.Docker Release Notes":[[0,null]],"Configuration management":[[44,"configuration-management"]],"Connecting to the Docker API":[[44,"connecting-to-the-docker-api"]],"Connection":[[0,"connection"],[0,"id182"]],"Connection Plugins":[[46,"connection-plugins"]],"DEPRECATED":[[3,"deprecated"]],"Deprecated Features":[[0,"deprecated-features"],[0,"id31"],[0,"id50"],[0,"id91"],[0,"id105"],[0,"id109"],[0,"id136"],[0,"id144"],[0,"id155"],[0,"id179"]],"Description":[[46,"description"]],"Docker Compose":[[44,"docker-compose"]],"Docker Compose v1":[[44,"docker-compose-v1"]],"Docker Compose v2":[[44,"docker-compose-v2"]],"Docker Guide":[[44,null]],"Docker Machine":[[44,"docker-machine"]],"Docker Swarm":[[44,"docker-swarm"]],"Docker Swarm stack":[[44,"docker-swarm-stack"]],"Environment variables":[[44,"environment-variables"]],"Examples":[[1,"examples"],[3,"examples"],[4,"examples"],[5,"examples"],[6,"examples"],[7,"examples"],[8,"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"],[39,"examples"],[40,"examples"],[41,"examples"],[42,"examples"],[43,"examples"]],"Index of all Collection Environment Variables":[[45,null]],"Inventory":[[0,"inventory"]],"Inventory Plugins":[[46,"inventory-plugins"]],"Known Issues":[[0,"known-issues"],[0,"id17"],[0,"id28"],[0,"id59"],[0,"id64"],[0,"id69"]],"Major Changes":[[0,"major-changes"],[0,"id99"]],"Minor Changes":[[0,"minor-changes"],[0,"id18"],[0,"id30"],[0,"id33"],[0,"id38"],[0,"id41"],[0,"id45"],[0,"id49"],[0,"id68"],[0,"id76"],[0,"id84"],[0,"id90"],[0,"id93"],[0,"id100"],[0,"id104"],[0,"id108"],[0,"id114"],[0,"id116"],[0,"id119"],[0,"id124"],[0,"id129"],[0,"id139"],[0,"id143"],[0,"id147"],[0,"id150"],[0,"id154"],[0,"id158"],[0,"id162"],[0,"id167"],[0,"id175"],[0,"id178"],[0,"id187"],[0,"id189"]],"Module default group":[[44,"module-default-group"]],"Modules":[[46,"modules"]],"New Modules":[[0,"new-modules"],[0,"id43"],[0,"id47"],[0,"id78"],[0,"id160"],[0,"id169"],[0,"id183"]],"New Plugins":[[0,"new-plugins"],[0,"id181"]],"Notes":[[2,"notes"],[3,"notes"],[4,"notes"],[5,"notes"],[6,"notes"],[7,"notes"],[8,"notes"],[10,"notes"],[11,"notes"],[12,"notes"],[13,"notes"],[14,"notes"],[15,"notes"],[16,"notes"],[17,"notes"],[18,"notes"],[19,"notes"],[20,"notes"],[21,"notes"],[22,"notes"],[23,"notes"],[24,"notes"],[25,"notes"],[26,"notes"],[27,"notes"],[28,"notes"],[29,"notes"],[30,"notes"],[31,"notes"],[32,"notes"],[33,"notes"],[34,"notes"],[35,"notes"],[36,"notes"],[37,"notes"],[38,"notes"],[39,"notes"],[40,"notes"],[41,"notes"],[42,"notes"],[43,"notes"],[47,"notes"]],"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"],[29,"parameters"],[30,"parameters"],[31,"parameters"],[32,"parameters"],[33,"parameters"],[34,"parameters"],[35,"parameters"],[36,"parameters"],[37,"parameters"],[38,"parameters"],[39,"parameters"],[40,"parameters"],[41,"parameters"],[42,"parameters"],[43,"parameters"],[44,"parameters"],[47,"parameters"]],"Plain Docker daemon: images, networks, volumes, and containers":[[44,"plain-docker-daemon-images-networks-volumes-and-containers"]],"Plugin Index":[[46,"plugin-index"]],"Release Summary":[[0,"release-summary"],[0,"id1"],[0,"id3"],[0,"id5"],[0,"id7"],[0,"id9"],[0,"id11"],[0,"id12"],[0,"id14"],[0,"id15"],[0,"id20"],[0,"id22"],[0,"id24"],[0,"id26"],[0,"id29"],[0,"id32"],[0,"id35"],[0,"id37"],[0,"id40"],[0,"id44"],[0,"id48"],[0,"id52"],[0,"id54"],[0,"id56"],[0,"id58"],[0,"id60"],[0,"id62"],[0,"id65"],[0,"id67"],[0,"id70"],[0,"id71"],[0,"id73"],[0,"id75"],[0,"id79"],[0,"id81"],[0,"id83"],[0,"id86"],[0,"id88"],[0,"id89"],[0,"id92"],[0,"id94"],[0,"id96"],[0,"id98"],[0,"id103"],[0,"id107"],[0,"id111"],[0,"id113"],[0,"id115"],[0,"id118"],[0,"id121"],[0,"id123"],[0,"id126"],[0,"id128"],[0,"id131"],[0,"id133"],[0,"id134"],[0,"id138"],[0,"id140"],[0,"id142"],[0,"id146"],[0,"id149"],[0,"id151"],[0,"id153"],[0,"id157"],[0,"id161"],[0,"id166"],[0,"id170"],[0,"id172"],[0,"id174"],[0,"id177"],[0,"id184"],[0,"id186"],[0,"id188"]],"Removed Features (previously deprecated)":[[0,"removed-features-previously-deprecated"],[0,"id137"],[0,"id190"]],"Requirements":[[2,"requirements"],[3,"requirements"],[4,"requirements"],[5,"requirements"],[6,"requirements"],[7,"requirements"],[8,"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"],[29,"requirements"],[30,"requirements"],[31,"requirements"],[32,"requirements"],[33,"requirements"],[34,"requirements"],[35,"requirements"],[36,"requirements"],[37,"requirements"],[38,"requirements"],[39,"requirements"],[40,"requirements"],[41,"requirements"],[42,"requirements"],[43,"requirements"],[44,"requirements"]],"Return Values":[[3,"return-values"],[4,"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"],[15,"return-values"],[16,"return-values"],[17,"return-values"],[18,"return-values"],[19,"return-values"],[20,"return-values"],[21,"return-values"],[22,"return-values"],[23,"return-values"],[24,"return-values"],[25,"return-values"],[27,"return-values"],[28,"return-values"],[29,"return-values"],[30,"return-values"],[31,"return-values"],[32,"return-values"],[33,"return-values"],[34,"return-values"],[35,"return-values"],[36,"return-values"],[37,"return-values"],[39,"return-values"],[40,"return-values"],[41,"return-values"],[42,"return-values"],[43,"return-values"]],"Returned Facts":[[1,"returned-facts"]],"Scenario Guide":[[46,"scenario-guide"]],"Security Fixes":[[0,"security-fixes"],[0,"id101"],[0,"id164"],[0,"id171"]],"See Also":[[3,"see-also"],[4,"see-also"],[5,"see-also"],[6,"see-also"],[7,"see-also"],[16,"see-also"],[17,"see-also"],[19,"see-also"],[20,"see-also"],[21,"see-also"],[22,"see-also"],[23,"see-also"],[24,"see-also"],[34,"see-also"]],"Status":[[3,"status"]],"Swarm management":[[44,"swarm-management"]],"Swarm services":[[44,"swarm-services"]],"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"],[39,"synopsis"],[40,"synopsis"],[41,"synopsis"],[42,"synopsis"],[43,"synopsis"],[47,"synopsis"]],"Topics":[[0,"topics"]],"community.docker.current_container_facts module \u2013 Return facts about whether the module runs in a container":[[1,null]],"community.docker.docker connection \u2013 Run tasks in docker containers":[[9,null]],"community.docker.docker_api connection \u2013 Run tasks in docker containers":[[2,null]],"community.docker.docker_compose module \u2013 Manage multi-container Docker applications with Docker Compose V1":[[3,null]],"community.docker.docker_compose_v2 module \u2013 Manage multi-container Docker applications with Docker Compose CLI plugin":[[5,null]],"community.docker.docker_compose_v2_exec module \u2013 Run command in a container of a Compose service":[[4,null]],"community.docker.docker_compose_v2_pull module \u2013 Pull a Docker compose project":[[6,null]],"community.docker.docker_compose_v2_run module \u2013 Run command in a new container of a Compose service":[[7,null]],"community.docker.docker_config module \u2013 Manage docker configs.":[[8,null]],"community.docker.docker_container module \u2013 manage Docker containers":[[13,null]],"community.docker.docker_container_copy_into module \u2013 Copy a file into a Docker container":[[10,null]],"community.docker.docker_container_exec module \u2013 Execute command in a docker container":[[11,null]],"community.docker.docker_container_info module \u2013 Retrieves facts about docker container":[[12,null]],"community.docker.docker_containers inventory \u2013 Ansible dynamic inventory plugin for Docker containers":[[14,null]],"community.docker.docker_host_info module \u2013 Retrieves facts about docker host and lists of objects of the services.":[[15,null]],"community.docker.docker_image module \u2013 Manage docker images":[[20,null]],"community.docker.docker_image_build module \u2013 Build Docker images using Docker buildx":[[16,null]],"community.docker.docker_image_export module \u2013 Export (archive) Docker images":[[17,null]],"community.docker.docker_image_info module \u2013 Inspect docker images":[[18,null]],"community.docker.docker_image_load module \u2013 Load docker image(s) from archives":[[19,null]],"community.docker.docker_image_pull module \u2013 Pull Docker images from registries":[[21,null]],"community.docker.docker_image_push module \u2013 Push Docker images to registries":[[22,null]],"community.docker.docker_image_remove module \u2013 Remove Docker images":[[23,null]],"community.docker.docker_image_tag module \u2013 Tag Docker images with new names and/or tags":[[24,null]],"community.docker.docker_login module \u2013 Log into a Docker registry.":[[25,null]],"community.docker.docker_machine inventory \u2013 Docker Machine inventory source":[[26,null]],"community.docker.docker_network module \u2013 Manage Docker networks":[[28,null]],"community.docker.docker_network_info module \u2013 Retrieves facts about docker network":[[27,null]],"community.docker.docker_node module \u2013 Manage Docker Swarm node":[[30,null]],"community.docker.docker_node_info module \u2013 Retrieves facts about docker swarm node from Swarm Manager":[[29,null]],"community.docker.docker_plugin module \u2013 Manage Docker plugins":[[31,null]],"community.docker.docker_prune module \u2013 Allows to prune various docker objects":[[32,null]],"community.docker.docker_secret module \u2013 Manage docker secrets.":[[33,null]],"community.docker.docker_stack module \u2013 docker stack module":[[35,null]],"community.docker.docker_stack_info module \u2013 Return information on all docker stacks":[[34,null]],"community.docker.docker_stack_task_info module \u2013 Return information of the tasks on a docker stack":[[36,null]],"community.docker.docker_swarm inventory \u2013 Ansible dynamic inventory plugin for Docker swarm nodes.":[[38,null]],"community.docker.docker_swarm module \u2013 Manage Swarm cluster":[[39,null]],"community.docker.docker_swarm_info module \u2013 Retrieves facts about Docker Swarm cluster.":[[37,null]],"community.docker.docker_swarm_service module \u2013 docker swarm service":[[41,null]],"community.docker.docker_swarm_service_info module \u2013 Retrieves information about docker services from a Swarm Manager":[[40,null]],"community.docker.docker_volume module \u2013 Manage Docker volumes":[[43,null]],"community.docker.docker_volume_info module \u2013 Retrieve facts about Docker volumes":[[42,null]],"community.docker.nsenter connection \u2013 execute on host running controller container":[[47,null]],"v0.1.0":[[0,"v0-1-0"]],"v1.0.0":[[0,"v1-0-0"]],"v1.0.1":[[0,"v1-0-1"]],"v1.1.0":[[0,"v1-1-0"]],"v1.10.0":[[0,"v1-10-0"]],"v1.2.0":[[0,"v1-2-0"]],"v1.2.1":[[0,"v1-2-1"]],"v1.2.2":[[0,"v1-2-2"]],"v1.3.0":[[0,"v1-3-0"]],"v1.4.0":[[0,"v1-4-0"]],"v1.5.0":[[0,"v1-5-0"]],"v1.6.0":[[0,"v1-6-0"]],"v1.6.1":[[0,"v1-6-1"]],"v1.7.0":[[0,"v1-7-0"]],"v1.8.0":[[0,"v1-8-0"]],"v1.9.0":[[0,"v1-9-0"]],"v1.9.1":[[0,"v1-9-1"]],"v2.0.0":[[0,"v2-0-0"]],"v2.0.1":[[0,"v2-0-1"]],"v2.0.2":[[0,"v2-0-2"]],"v2.1.0":[[0,"v2-1-0"]],"v2.1.1":[[0,"v2-1-1"]],"v2.2.0":[[0,"v2-2-0"]],"v2.2.1":[[0,"v2-2-1"]],"v2.3.0":[[0,"v2-3-0"]],"v2.4.0":[[0,"v2-4-0"]],"v2.5.0":[[0,"v2-5-0"]],"v2.5.1":[[0,"v2-5-1"]],"v2.6.0":[[0,"v2-6-0"]],"v2.7.0":[[0,"v2-7-0"]],"v3.0.0":[[0,"v3-0-0"]],"v3.0.1":[[0,"v3-0-1"]],"v3.0.2":[[0,"v3-0-2"]],"v3.1.0":[[0,"v3-1-0"]],"v3.10.0":[[0,"v3-10-0"]],"v3.10.1":[[0,"v3-10-1"]],"v3.10.2":[[0,"v3-10-2"]],"v3.10.3":[[0,"v3-10-3"]],"v3.10.4":[[0,"v3-10-4"]],"v3.11.0":[[0,"v3-11-0"]],"v3.12.0":[[0,"v3-12-0"]],"v3.12.1":[[0,"v3-12-1"]],"v3.12.2":[[0,"v3-12-2"]],"v3.13.0":[[0,"v3-13-0"]],"v3.13.1":[[0,"v3-13-1"]],"v3.13.2":[[0,"v3-13-2"]],"v3.13.3":[[0,"v3-13-3"]],"v3.13.4":[[0,"v3-13-4"]],"v3.13.5":[[0,"v3-13-5"]],"v3.13.6":[[0,"v3-13-6"]],"v3.2.0":[[0,"v3-2-0"]],"v3.2.1":[[0,"v3-2-1"]],"v3.2.2":[[0,"v3-2-2"]],"v3.3.0":[[0,"v3-3-0"]],"v3.3.1":[[0,"v3-3-1"]],"v3.3.2":[[0,"v3-3-2"]],"v3.4.0":[[0,"v3-4-0"]],"v3.4.1":[[0,"v3-4-1"]],"v3.4.10":[[0,"v3-4-10"]],"v3.4.11":[[0,"v3-4-11"]],"v3.4.2":[[0,"v3-4-2"]],"v3.4.3":[[0,"v3-4-3"]],"v3.4.4":[[0,"v3-4-4"]],"v3.4.5":[[0,"v3-4-5"]],"v3.4.6":[[0,"v3-4-6"]],"v3.4.7":[[0,"v3-4-7"]],"v3.4.8":[[0,"v3-4-8"]],"v3.4.9":[[0,"v3-4-9"]],"v3.5.0":[[0,"v3-5-0"]],"v3.6.0":[[0,"v3-6-0"]],"v3.7.0":[[0,"v3-7-0"]],"v3.8.0":[[0,"v3-8-0"]],"v3.8.1":[[0,"v3-8-1"]],"v3.9.0":[[0,"v3-9-0"]]},"docnames":["changelog","current_container_facts_module","docker_api_connection","docker_compose_module","docker_compose_v2_exec_module","docker_compose_v2_module","docker_compose_v2_pull_module","docker_compose_v2_run_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_export_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"],"envversion":{"sphinx":65,"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},"filenames":["changelog.rst","current_container_facts_module.rst","docker_api_connection.rst","docker_compose_module.rst","docker_compose_v2_exec_module.rst","docker_compose_v2_module.rst","docker_compose_v2_pull_module.rst","docker_compose_v2_run_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_export_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"],"indexentries":{"ansible_docker_privileged":[[2,"index-2",false],[9,"index-2",false],[45,"envvar-ANSIBLE_DOCKER_PRIVILEGED",false]],"ansible_docker_timeout":[[2,"index-1",false],[9,"index-1",false],[45,"envvar-ANSIBLE_DOCKER_TIMEOUT",false]],"ansible_docker_working_dir":[[2,"index-4",false],[9,"index-4",false],[45,"envvar-ANSIBLE_DOCKER_WORKING_DIR",false]],"ansible_inventory_use_extra_vars":[[14,"index-0",false],[26,"index-0",false],[38,"index-0",false],[45,"envvar-ANSIBLE_INVENTORY_USE_EXTRA_VARS",false]],"ansible_nsenter_pid":[[45,"envvar-ANSIBLE_NSENTER_PID",false],[47,"index-0",false]],"ansible_remote_user":[[2,"index-3",false],[9,"index-3",false]],"ansible_timeout":[[2,"index-0",false],[9,"index-0",false]],"docker_api_version":[[44,"envvar-DOCKER_API_VERSION",false]],"docker_cert_path":[[44,"envvar-DOCKER_CERT_PATH",false]],"docker_host":[[44,"envvar-DOCKER_HOST",false]],"docker_ssl_version":[[44,"envvar-DOCKER_SSL_VERSION",false]],"docker_timeout":[[44,"envvar-DOCKER_TIMEOUT",false]],"docker_tls":[[44,"envvar-DOCKER_TLS",false]],"docker_tls_hostname":[[44,"envvar-DOCKER_TLS_HOSTNAME",false]],"docker_tls_verify":[[44,"envvar-DOCKER_TLS_VERIFY",false]],"environment variable":[[2,"index-0",false],[2,"index-1",false],[2,"index-2",false],[2,"index-3",false],[2,"index-4",false],[9,"index-0",false],[9,"index-1",false],[9,"index-2",false],[9,"index-3",false],[9,"index-4",false],[14,"index-0",false],[26,"index-0",false],[38,"index-0",false],[44,"envvar-DOCKER_API_VERSION",false],[44,"envvar-DOCKER_CERT_PATH",false],[44,"envvar-DOCKER_HOST",false],[44,"envvar-DOCKER_SSL_VERSION",false],[44,"envvar-DOCKER_TIMEOUT",false],[44,"envvar-DOCKER_TLS",false],[44,"envvar-DOCKER_TLS_HOSTNAME",false],[44,"envvar-DOCKER_TLS_VERIFY",false],[45,"envvar-ANSIBLE_DOCKER_PRIVILEGED",false],[45,"envvar-ANSIBLE_DOCKER_TIMEOUT",false],[45,"envvar-ANSIBLE_DOCKER_WORKING_DIR",false],[45,"envvar-ANSIBLE_INVENTORY_USE_EXTRA_VARS",false],[45,"envvar-ANSIBLE_NSENTER_PID",false],[47,"index-0",false]]},"objects":{"":[[45,0,1,"-","ANSIBLE_DOCKER_PRIVILEGED"],[45,0,1,"-","ANSIBLE_DOCKER_TIMEOUT"],[45,0,1,"-","ANSIBLE_DOCKER_WORKING_DIR"],[45,0,1,"-","ANSIBLE_INVENTORY_USE_EXTRA_VARS"],[45,0,1,"-","ANSIBLE_NSENTER_PID"],[44,0,1,"-","DOCKER_API_VERSION"],[44,0,1,"-","DOCKER_CERT_PATH"],[44,0,1,"-","DOCKER_HOST"],[44,0,1,"-","DOCKER_SSL_VERSION"],[44,0,1,"-","DOCKER_TIMEOUT"],[44,0,1,"-","DOCKER_TLS"],[44,0,1,"-","DOCKER_TLS_HOSTNAME"],[44,0,1,"-","DOCKER_TLS_VERIFY"]]},"objnames":{"0":["std","envvar","environment variable"]},"objtypes":{"0":"std:envvar"},"terms":{"":[0,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,40,41,42,43,44,46,47],"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,40,41,42,43,44,46,47],"00":[3,27,42],"01":[5,13,42],"0100":5,"02":[3,5],"03":[0,18],"04":[13,41],"0444":41,"0557":28,"06":[9,27],"0644":41,"0755":10,"07t01":27,"08":18,"0856968545f22026c41c2c7c3d448319d3b4a6a03a40b148b3ac4031696d1c0a":27,"08t21":18,"09":0,"09t17":42,"0a":13,"0b":5,"1":[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,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,47],"10":[2,3,8,9,13,16,28,31,32,33,37,38,39,41],"100":[0,13],"1000":13,"10000":39,"10000000000":41,"1001":0,"1003":0,"1005":0,"1007":0,"1011":0,"1012":0,"1024b":[13,16,20,32,41],"1028":0,"1029":0,"103":0,"1033":0,"1034":0,"107":0,"108":0,"10872":[4,5,6,7],"109":0,"10m":32,"11":[3,13,14,26,38,46],"1117":0,"1119":0,"114":0,"118":0,"119":0,"12":[2,5,6,9,13,14,16,24,26,27,31,38,42,44],"120":[41,44],"120000000000":41,"121":0,"123":0,"125":0,"127":[13,14,41],"12m":13,"13":[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,40,41,42,43,46,47],"134":0,"135":0,"136":0,"138":0,"14":[0,13,41],"142":0,"143":0,"149":0,"15":[0,13,18],"157":0,"159":0,"16":[3,13,38],"160":0,"161":0,"162":0,"163":0,"164":0,"165808884":18,"167":0,"168":[27,39],"16g":13,"17":[0,3],"1700":13,"172":[3,13,28,38],"174":0,"178":0,"18":[0,4,5,6,7,9,13],"180":0,"181":0,"183":0,"186":0,"188":0,"190":0,"192":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"1d":13,"1f69":13,"1m30":[13,41],"2":[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,40,41,42,43,44,46,47],"20":[0,5,13,27],"2001":0,"2016":18,"2017":0,"2018":[27,42],"20191":0,"2020":13,"2021":0,"2022":3,"2024":[0,5],"203":0,"209":0,"20971520":41,"20m":[13,41],"21":0,"210":0,"22":[0,6,13,14],"23":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"2375":[14,38],"2376":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"2377":39,"24":[0,28,32],"242":0,"24224":41,"243":0,"248":0,"249":0,"249d9e3075655baf705ed8f40488c5e9434049cf3431976f1bfdb73741c574c5":11,"24h":[15,32],"25":[0,3,10,11,12,13,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,39,40,41,42,43],"250":0,"250835114":27,"253":0,"254":0,"255":0,"257":0,"258":0,"26":[0,28],"262144":13,"267":0,"269":0,"27":[28,41],"271":0,"28":[0,3,41],"29":[0,13,41],"292":0,"293":0,"294":0,"295":0,"296":0,"297":0,"3":[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,40,41,42,43,44,46,47],"30":[0,8,13,39,41],"300":13,"30000000000":41,"3045":0,"305":0,"307":0,"308":0,"31":0,"311":0,"312":0,"314":0,"32":[0,2,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,31,32,39,41,42,43],"325":0,"3256":0,"327":0,"33":13,"332":0,"336":0,"337":0,"338":0,"339":0,"345":0,"35":[0,2],"354":0,"3600":41,"361":0,"362":0,"363":0,"365":0,"367":0,"37":41,"370":0,"373":0,"388":0,"389":0,"39":[32,39],"390":0,"395":0,"396":0,"398":0,"399":0,"399680378z":18,"3a23c669":13,"3rd":[28,43],"4":[1,2,3,8,10,13,14,15,16,28,29,30,33,37,38,39,40,41,44,46],"40":[0,39,41],"400":0,"4007":0,"401":0,"402":0,"403":0,"404":0,"405":0,"406":0,"407":0,"408":0,"409":0,"41":[0,5,41],"410":0,"411":0,"412":0,"413":0,"414":0,"415":0,"42":[0,3],"421":0,"422":0,"426":0,"427":0,"428":0,"429":0,"43":[0,42],"430":0,"432":0,"434":0,"438":0,"44":[0,13,42],"443":[12,13],"446":0,"447":0,"448":0,"44a7d607219a60b7db0a4817fb3205dce46e91df2cb4b78a6100b6e27b0d3135":5,"44e9b07e7a2a":13,"451":0,"452":0,"455":0,"456":0,"4567":39,"46":0,"462":0,"47":27,"485":0,"487":0,"488":0,"4m":13,"5":[2,3,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"50":41,"500":0,"5000":[18,20,22,24,25],"5000000000":[39,41],"505":0,"506":0,"50m":41,"51":27,"510":0,"513":0,"514":13,"517":0,"518":0,"52":0,"522":0,"52428800":41,"526":0,"527":0,"53":0,"535":0,"53773d8552f07b730f3e19979e32499519807d67b344141d965463a950a66e08":18,"538":0,"54":0,"545":0,"546":0,"55":0,"551":0,"552":0,"553":0,"554":0,"56":20,"574":0,"58":0,"580":0,"582":0,"59":0,"593":0,"5h34m56":[13,41],"6":[2,3,5,6,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"60":[0,2,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"605":[0,2,11,14],"610":0,"611":0,"612":0,"613":0,"619":0,"620":0,"621":0,"636":0,"637":0,"6379":13,"64":[0,28],"64m":[13,16,20],"654":0,"65748":0,"66":0,"6707":0,"694":0,"695":0,"696":0,"698":0,"7":[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,40,41,42,43,44,46,47],"70":[0,13],"7000":13,"7010":13,"702":0,"703":0,"705":0,"71":0,"713":0,"715":0,"72":0,"721":0,"722":0,"726":0,"727":0,"73":0,"736":0,"744":0,"745":0,"76":0,"763":0,"765":0,"772":0,"773":0,"775":0,"776":0,"7776000000000000":39,"778":0,"779":0,"783":0,"785":0,"786":0,"787":0,"79":0,"792":0,"794":0,"796":0,"797":0,"7ce1":28,"7ce2":28,"7wqv6m02ugkw":36,"8":[3,5,10,13,14,18,20,31,41],"80":[0,12,13],"8000":[3,13],"802":0,"803":0,"804":0,"805":0,"807":0,"8080":[13,20],"8081":13,"810":0,"8100":13,"811":0,"813":0,"814":0,"815":0,"823":0,"825":0,"826":0,"827":0,"828":0,"829":0,"832":0,"833":0,"834":0,"835":0,"838":0,"839":0,"844":0,"845":0,"847":0,"848":0,"85":0,"852":0,"853":0,"86":0,"860":0,"861":0,"864":0,"87":0,"870":0,"871":0,"881":0,"885":0,"886":0,"89":0,"890":0,"891":0,"892":0,"895":0,"8e47bf643eb9":[12,13],"9":[3,4,5,6,7,13,18,41,47],"90":39,"9000":13,"90000000000":41,"9001":13,"9002":13,"9003":13,"9010":13,"902":0,"9020":13,"91":0,"910":0,"911":0,"916":0,"92":[0,13],"921":0,"922":0,"93":0,"931":0,"933":0,"934":0,"935":0,"936":0,"937":0,"940":0,"941":0,"942":0,"943":0,"946":0,"947":0,"948":0,"949":0,"96":27,"961":0,"966":0,"975":0,"976":0,"9789":39,"985":0,"99":0,"992":0,"993":0,"995":0,"A":[0,1,3,5,6,8,12,13,14,15,18,20,24,26,27,29,32,33,34,36,37,38,40,41,42],"AND":13,"As":20,"By":[3,4,5,6,7,13,14,15,26,28,38],"For":[0,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,40,41,42,43,44,47],"IN":46,"If":[0,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,40,41,42,43,44],"In":[0,3,5,8,13,14,26,29,30,33,37,38,39,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,39,40,41,42,43,44,47],"No":[8,33,44],"Not":0,"OR":13,"On":16,"One":[3,4,5,6,7,8,10,14,17,33,44],"That":0,"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,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47],"There":[0,1,44],"These":[0,13,14,44,46],"To":[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,40,41,42,43,44,47],"Will":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"With":[13,26,28],"_":[14,26,38],"__init__":0,"_connect":0,"_data":42,"_version":0,"abil":44,"abl":[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,32,33,34,35,36,37,38,39,40,41,42,43],"abort":0,"about":[0,5,20,28,30,34,39,44,46],"abov":14,"absent":[3,5,8,12,13,20,25,27,28,31,33,35,39,41,43],"absent_retri":35,"absent_retries_interv":35,"absolut":[0,10],"ac":3,"ac8c":28,"accept":[0,13,14,26,38,41],"access":[0,2,9,28,41,44,45,47],"accident":[0,13],"accomod":[4,5,6,7],"accord":0,"account":[13,25,41],"act":13,"action":[0,1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"action_group":[3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"activ":30,"actual":[0,10,13,30,41],"actual_us":0,"ad":[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,40,41,42,43],"add":[0,4,7,8,11,13,14,16,20,25,26,28,30,33,35,38,39,41,44],"add_legacy_group":14,"addit":[0,3,8,10,13,29,30,33,37,38,39,40,41,44],"addition":13,"address":[0,3,13,14,16,20,28,39,41],"adjust":[0,4,5,6,7,13],"admin":13,"advertis":39,"advertise_addr":39,"affect":[0,13,16,17,20,21,22,23,24,28,31,42,43],"after":[0,8,13,14,20,26,30,33,35,38,39,41],"afterward":[0,4,5,6,7,13],"again":[0,3,5,8,13,33],"against":[3,14],"agent":[13,35,39],"ago":[2,14,32,38],"agronholm":43,"alert":0,"alex":43,"alia":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43],"alias":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"aliasedredi":13,"align":0,"all":[0,3,5,7,10,13,14,15,16,18,19,20,23,26,28,29,30,31,32,35,38,39,41,44,46],"alloc":[4,7,11,13,41],"allow":[0,2,3,8,9,13,14,15,16,20,24,25,26,29,30,31,33,37,38,39,40,41,44,45,46,47],"allow_more_pres":13,"almost":0,"alpin":[0,20,41],"alreadi":[0,3,5,6,13,16,17,20,24,28,30,31,39,43],"also":[0,10,13,15,18,28,29,30,37,39,40,41,43,44],"alter":41,"altern":[0,2,3,13,14,16,20,38],"alwai":[0,1,3,5,6,8,12,13,14,15,16,18,20,21,26,27,29,32,33,34,35,36,37,38,40,41,42,43,44,47],"amd64":[16,18,20,21],"amend":0,"amount":[2,5,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"an":[0,1,2,3,4,5,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,37,38,39,40,41,42,43,44],"angel":[34,36],"ani":[0,1,4,5,6,7,10,13,14,16,20,26,35,41,43],"anonym":[0,13],"anoth":[0,13,16,17,24],"anotherappimag":13,"ansibl":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,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,42,43,44,45,46,47],"ansible_docker_api_vers":2,"ansible_docker_ca_cert":2,"ansible_docker_ca_path":2,"ansible_docker_client_cert":2,"ansible_docker_client_kei":2,"ansible_docker_docker_host":2,"ansible_docker_extra_arg":9,"ansible_docker_extra_env":[2,9],"ansible_docker_host":[2,9],"ansible_docker_privileg":[2,9,45],"ansible_docker_servic":41,"ansible_docker_ssl_vers":2,"ansible_docker_timeout":[0,2,9,45],"ansible_docker_tl":2,"ansible_docker_tls_hostnam":2,"ansible_docker_us":[2,9],"ansible_docker_validate_cert":2,"ansible_docker_working_dir":[2,9,45],"ansible_fact":[0,1],"ansible_host":[2,9,14,26,38],"ansible_host_uri":38,"ansible_inventory_use_extra_var":[14,26,38,45],"ansible_kei":[0,8,33],"ansible_module_container_id":1,"ansible_module_container_typ":1,"ansible_module_running_in_contain":1,"ansible_nsenter_pid":[45,47],"ansible_port":26,"ansible_remote_us":[2,9],"ansible_ssh_common_arg":26,"ansible_ssh_host":14,"ansible_ssh_port":14,"ansible_ssh_private_kei":26,"ansible_swarm_servic":41,"ansible_timeout":[2,9],"ansible_us":[2,9,26],"ansible_vers":[8,33],"antonov":[13,20],"anymor":0,"anyth":0,"api":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"api_vers":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"apivers":0,"app":41,"apparmorprofil":[12,13],"appear":[0,16,18],"append":[0,4,7,8,11,16,17,20,21,22,23,24,28,33],"appendonli":13,"appimag":13,"appli":[0,5,6,13,20,30,35,39,41],"applic":[0,4,6,7,46],"ar":[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,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],"arch":[13,16,20,38],"arch_x86_64":38,"architectur":[18,38],"archiv":[0,20,23,44,46],"archive_path":[0,20],"arg":[12,13,16,20,41],"arg1":13,"arg2":13,"argument":[0,2,4,7,9,11,16,20,41],"argv":[4,7,11],"arm64":16,"around":[0,13,16,39],"arrai":18,"ask":[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,40,41,42,43,46,47],"assembl":0,"assert":[3,5,13,18,20,41],"assig":5,"assign":[0,3,5,7,8,13,14,30,33,41],"associ":[5,13,25,36],"assum":[0,8,10,13,20,21,33],"async":41,"asynchron":[4,7,11],"attach":[0,3,5,7,13,27,28,45,47],"attachstderr":[12,13,18],"attachstdin":[12,13,18],"attachstdout":[12,13,18],"attempt":[1,13,18,26],"attribut":38,"attributeerror":0,"auf":18,"auth":35,"authent":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"author":46,"auto":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"auto_remov":13,"autolock_manag":39,"automat":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"aux_address":28,"auxiliari":28,"avail":[0,4,5,6,7,10,13,14,16,20,26,30,37,38,41,44,45],"avoid":[0,4,7,11,13,32,41,44],"awesome_config":8,"awesome_secret":33,"awx":0,"azur":1,"azure_pipelin":1,"b":[13,16,20,32,41],"b3dbf31b77fd99d9c08f780ce6f5282aba076d70a513a8be859d8d3a4d0c92b8":41,"b64encod":[8,33],"back":[4,7,11,13,41],"backend":13,"background":13,"backport":[2,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,31,32,42,43],"backward":16,"bad":0,"balanc":13,"bam":32,"bar":[8,13,32,33,41],"base":[0,13,14,26,35,38,44],"base64":[8,10,33],"basenam":[3,4,5,6,7],"bash":[4,7,11],"basic":[15,16,37],"baz":[8,32,33],"bd3f6172":42,"becaus":[0,8,13,14,26,33,38,39],"becom":[0,13],"been":[0,2,3,5,6,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,35,37,38,39,40,41,42,43],"befor":[0,3,5,6,7,8,10,13,18,20,23,25,32,33,35,39,41,44],"behav":[13,26],"behavior":[0,4,5,6,7,13,16,24],"behaviour":26,"being":[0,8,10,20,33,39],"belong":[5,13,14,20],"below":[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,32,33,34,35,36,37,38,39,40,41,42,43],"ben":28,"bendit":[27,28],"best":1,"better":[0,8,10,13,33],"between":[0,4,5,6,7,13,35,39,41,44],"beyond":39,"bin":[4,7,10,11,12,13,18],"binari":[8,10,33],"bind":[0,7,13,41],"bit":3,"blindli":0,"blkio_weight":13,"block":[0,13,28],"boolean":[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,40,41,42,43],"boolean_kei":13,"both":[0,3,8,13,15,18,29,30,33,37,39,40,41,44],"bound":[0,5,13],"bouvet":[30,39],"break":[2,4,5,6,7,9,45],"breakag":0,"bridg":[13,27,28],"bring":0,"broken":[0,44],"brouwer":9,"btrf":43,"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,39,40,41,42,43,46,47],"build":[0,3,5,7,14,15,20,26,32,38,44,46],"buildarg":0,"builder":[0,32],"builder_cach":32,"builder_cache_al":[0,32],"builder_cache_caches_delet":[0,32],"builder_cache_filt":[0,32],"builder_cache_keep_storag":[0,32],"builder_cache_space_reclaim":32,"buildkit":[16,20],"buildx":[0,20,44,46],"built":[0,3,6,16,20],"built_imag":3,"builtin":[1,3,4,5,7,8,10,11,12,15,18,19,27,29,30,33,34,36,37,39,40,41,42,44],"bunch":0,"busybox":[0,13,36],"byte":[0,5,13,16,20,32,41],"c":[4,7,11,18],"c6":13,"c64e":13,"c72dce2618dc8f7b794d2b2c2b1e64e0205ead5befc294f8111da23bd6a2c799":18,"c8bccc0af9571ec0d006a43acb5a8d08c4ce42b6cc7194dd6eb167976f501ef1":5,"ca":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"ca_cert":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"ca_force_rot":39,"ca_path":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"cacert":44,"cacert_path":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"cach":[0,3,13,15,16,20,32],"cache_from":[16,20],"call":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"can":[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,40,41,42,43,44,45],"can_talk_to_dock":[0,15,37],"cannot":[0,4,7,11,13,15,16,26],"canon":28,"cap":13,"cap_add":[0,7,13,41],"cap_drop":[0,7,13,41],"capabl":[0,7,13,41],"care":[2,9,28,45],"case":[0,1,13,14,15,26,38,41],"caus":[0,2,8,11,13,16,33,43],"censor":39,"cento":[17,18,20,21,23],"cert":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"cert_path":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"certain":0,"certif":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"cet":5,"cf":13,"cf85":13,"cfg":0,"cgroup":[0,13],"cgroup_par":[0,13],"cgroup_permiss":13,"cgroupn":13,"cgroupns_mod":[0,13],"chang":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"changelog":0,"channel":46,"charact":38,"chdir":[0,4,7,11],"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,40,41,42,43,47],"check_files_exist":[0,4,5,6,7],"check_mod":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"cherri":0,"choic":[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,40,41,42,43],"chosen":13,"chouseknecht":[3,8,13,18,20,25,28,33],"chri":[3,8,13,18,20,25,28,33],"cidr":[28,39],"claim":0,"classic":[13,16],"cleanup":[7,13,44],"clear":0,"cli":[0,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46],"cli_context":[0,4,5,6,7,16,34,35,36],"client":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"client_cert":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"client_kei":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"clone":0,"close":[0,2,11],"close_notifi":[0,2,11],"cluster":[29,30,46],"cmd":[3,12,13,18,41],"code":[0,2,3,4,5,7,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,31,32,41,42,43],"collect":[0,44,46],"colon":0,"com":[0,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,32,33,34,35,36,37,39,40,41,42,43,44],"combin":[0,13,21,30,39],"comma":13,"command":[0,2,3,5,9,13,25,34,35,36,41,44,45,46],"command_handl":[0,13],"commandlin":43,"comment":[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,40,41,42,43,47],"common":[0,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"commun":[44,45],"compar":[0,10,13,32,44],"comparison":[0,13],"compat":[0,13,14,16,44],"complet":[0,13,30,35],"complex":[0,3],"compos":[0,1,2,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,43,46,47],"compose_fil":[0,4,5,6,7],"composit":[0,14,26,38,45],"comput":[0,10],"conain":5,"concaten":[14,26,38],"condit":[0,13,14,26,38,41],"config":[0,3,12,13,18,20,25,27,28,29,30,33,37,39,40,41,44,46],"config_from":[0,28],"config_id":[8,41],"config_nam":[8,41],"config_onli":[0,28],"config_path":25,"configfrom":27,"configonli":27,"configur":[0,2,3,4,5,6,7,8,9,10,13,14,20,25,26,29,30,33,37,38,39,40,41,45,47],"configure_docker_daemon":[0,14],"conflict":0,"conform":0,"conjunct":[14,26,38],"connect":[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,32,33,34,35,36,37,38,39,40,41,42,43,45],"connection_typ":[0,14],"conner":13,"consecut":[13,35,41],"consid":[0,13,14,16,20,28,32,39],"consist":13,"constraint":[0,41],"construct":[14,26,38],"consult":[28,43],"contact":15,"contain":[0,6,8,15,16,17,18,20,21,22,27,28,29,30,32,33,34,35,36,37,38,41,45,46],"container":47,"container_a":28,"container_b":28,"container_c":28,"container_default_behavior":[0,13],"container_id":7,"container_label":[0,41],"container_limit":[0,20],"container_nam":[3,13],"container_path":10,"container_timeout":[2,9],"containerconfig":18,"containernam":5,"containers_al":[0,15],"containers_filt":[0,15,32],"containers_space_reclaim":32,"containerspec":35,"content":[0,3,10,35,39],"content_is_b64":10,"context":[0,4,5,6,7,16,20,34,35,36,44],"continu":[0,14,26,38,41],"control":[0,2,8,9,13,14,25,26,28,33,38,43,44,45,46],"conveni":[16,20],"convert":[0,4,7,11,13,14,16,20,38],"copi":[0,17,41,44,46],"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,39,40,41,42,43,45,46,47],"correct":[0,4,7,11,13,44],"correctli":[0,13,28],"correspond":[0,7,10,13,15,20,39,41],"corrupt":10,"could":[0,25],"count":[3,5,13],"countdown":[13,41],"cove":13,"cp":[10,44],"cpu":[13,20,41],"cpu_period":13,"cpu_quota":13,"cpu_shar":13,"cpuset_cpu":13,"cpuset_mem":13,"cpusetcpu":20,"cpushar":20,"crash":0,"creat":[0,3,4,5,6,7,8,13,14,16,17,18,20,26,27,28,32,33,38,39,41,43,44],"createdat":[5,42],"creation":[0,8,13,28,33,41],"credenti":[0,25],"curl":[13,41],"current":[0,1,2,3,4,5,6,7,8,9,10,12,13,16,21,25,27,29,33,35,37,39,40,41],"current_container_fact":[0,46],"currentst":36,"custom":[0,3,4,5,6,7,13,25,28,41],"cve":0,"cycl":13,"d0":13,"daan":13,"daemon":[0,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,42,43],"daemon_env":26,"dai":39,"dangl":[15,32],"dariko":[35,41],"dario":[35,41],"data":[0,3,4,5,7,8,10,11,13,18,33,39,41,43],"data_is_b64":[8,33],"data_path_addr":[0,39],"data_path_port":[0,39],"data_src":[0,8,33],"date":44,"dave":[27,28],"db":[3,5,13],"db_contain":5,"db_test":13,"dbendit":[27,28],"dcoppenhagan":20,"dead":0,"deamon":0,"debug":[1,2,3,4,5,7,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,36,37,39,40,41,42,43,44],"decid":13,"deciph":0,"declar":[0,6,45],"decod":[8,10,33],"default":[0,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,40,41,42,43,45,47],"default_addr_pool":39,"default_grace_period":3,"default_host_ip":[0,13],"default_ip":14,"default_valu":[14,26,38],"defin":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"definit":[0,3,4,5,6,7,35],"delai":[39,41],"deleg":13,"delet":[4,5,6,7,8,23,28,31,32,33,35,43],"demot":39,"depart":41,"depend":[0,3,4,5,6,7,13,15,16,20,29,30,37,39],"depends_on":3,"deploi":35,"deprec":[13,44,46],"deriv":[2,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,31,32,38,42,43],"describ":[3,4,5,6,7,41],"descript":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"deselect":[14,26,38],"desir":[3,5,13,39],"desiredst":36,"dest":16,"destin":[10,13,16],"destroi":[13,44],"detach":[0,4,7,11,13,28,44],"detail":[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,32,33,34,35,36,37,38,39,40,41,42,43,44],"detect":[0,1,3,13,38,39,44],"determin":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"dev":[0,4,7,11,13,16,20,43],"devel":0,"develop":0,"devic":[13,43],"device_cgroup_rul":[0,13],"device_id":13,"device_read_bp":13,"device_read_iop":13,"device_request":[0,13],"device_write_bp":13,"device_write_iop":13,"dict":[13,15,37,41],"dictionari":[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,39,40,41,42,43],"did":[0,3,13,14,18],"die":0,"diff":[0,1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"diff_mod":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"differ":[0,3,4,5,6,7,10,13,15,28,35,37,39,43],"dig":13,"digest":[16,21,22,23,35,41],"digit":26,"digitalocean":26,"dir":20,"direct":[16,20],"directli":[0,2,3,4,5,6,7,8,9,11,16,33,34,35,36,41,44],"directori":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"disabl":[0,13,16,31,41],"disallow":0,"disclosur":0,"disconnect":28,"discuss":46,"disk":[10,15,32],"disk_usag":15,"dispatch":39,"dispatcher_heartbeat_period":39,"disposit":3,"distutil":0,"django":[3,5],"dm_":26,"dm_tag":26,"dn":[13,41],"dns_opt":13,"dns_option":41,"dns_search":41,"dns_search_domain":13,"dns_server":13,"dnsrr":41,"do":[0,1,5,7,10,13,14,16,20,26],"doc":[0,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,32,33,34,35,36,37,39,40,41,42,43],"docker":45,"docker_":0,"docker_api":[0,9,14,44,45,46],"docker_api_vers":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"docker_cert_path":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"docker_cli":[4,5,6,7,16,34,35,36],"docker_compos":[0,5,44,46],"docker_compose_v2":[0,3,4,6,7,44,46],"docker_compose_v2_exec":[0,46],"docker_compose_v2_pul":[0,5,44,46],"docker_compose_v2_run":[0,46],"docker_config":[0,3,14,29,30,33,37,39,40,41,44,46],"docker_connect":[0,2,9],"docker_contain":[0,12,28,44,45,46],"docker_container_copy_into":[0,44,46],"docker_container_exec":[0,44,46],"docker_container_info":[0,44,46],"docker_extra_arg":[0,9],"docker_host":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"docker_host_info":[0,44,46],"docker_hostconfig":14,"docker_imag":[0,17,18,44,46],"docker_image_":0,"docker_image_build":[0,20,44,46],"docker_image_export":[0,19,20,44,46],"docker_image_fact":[0,18],"docker_image_info":[0,17,20,44,46],"docker_image_load":[0,17,20,23,44,46],"docker_image_pul":[0,20,22,23,44,46],"docker_image_push":[0,16,19,20,24,44,46],"docker_image_remov":[0,19,20,21,22,24,44,46],"docker_image_tag":[0,16,19,20,21,22,23,44,46],"docker_login":[0,44,46],"docker_machin":[0,44,45,46],"docker_machine_node_attribut":26,"docker_nam":14,"docker_network":[0,27,44,46],"docker_network_info":[0,44,46],"docker_network_nam":13,"docker_nod":[0,39,44,46],"docker_node_info":[0,44,46],"docker_platform":14,"docker_plugin":[0,44,46],"docker_prun":[0,44,46],"docker_secret":[0,44,46],"docker_servic":[0,3],"docker_ssl_vers":[2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,39,40,41,42,43,44],"docker_stack":[0,44,46],"docker_stack_info":[0,44,46],"docker_stack_task_info":[0,34,44,46],"docker_swarm":[0,30,44,45,46],"docker_swarm_act":37,"docker_swarm_info":[0,39,44,46],"docker_swarm_manag":37,"docker_swarm_servic":[0,44,46],"docker_swarm_service_info":[0,44,46],"docker_timeout":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"docker_tl":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"docker_tls_hostnam":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"docker_tls_verifi":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"docker_url":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"docker_volum":[0,44,46],"docker_volume_info":[0,44,46],"docker_xxx":14,"dockercfg_path":25,"dockerfil":[0,3,13,16,20,41],"dockerhub":25,"dockerignor":0,"dockervers":18,"docsit":0,"document":[0,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,45],"doe":[0,1,2,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,31,32,33,34,35,36,37,38,39,40,41,42,43],"domain":[13,41],"domainnam":[12,13,18],"done":[3,8,20,29,30,33,37,39,40,41],"doubt":44,"down":[3,5],"download":[10,16,20],"downtim":13,"drain":30,"driver":[0,13,16,26,27,28,41,42,43],"driver_config":41,"driver_opt":[28,43],"drivernam":26,"drop":[7,13,41],"dry":0,"due":[0,2,9,13],"durat":[13,41],"dure":[0,3,13,14,20,31,41],"dusdanig":13,"dynam":[0,44,46],"e004c2cc521c95383aebb1fb5893719aa7a8eae2e7a71f316a4410784edb00a9":19,"e5c68db50333":18,"e83a452b8fb89d78a25a6739457050131ca5c863629a47639530d9ad2008d610":18,"each":[0,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,40,41,42,43,44,47],"earlier":[0,13],"easier":[0,13],"echo":[4,7,11],"econtain":7,"edg":41,"ee":0,"effect":[0,13,35,39],"effici":0,"effort":1,"eighteen":26,"either":[0,13,20,29,39,41],"elect":39,"election_tick":39,"element":[3,4,5,6,7,11,13,14,15,16,17,18,19,20,23,24,26,28,29,30,31,32,34,35,36,37,38,39,41],"els":[12,27,42],"email":0,"emerg":0,"emit":[0,13],"empti":[0,1,3,4,7,11,13,14,16,18,23,26,28,29,30,38],"emul":0,"enabl":[0,3,4,5,6,7,13,20,28,31],"enable_ipv6":28,"enable_timeout":31,"enableipv6":27,"encapsul":[4,7],"encod":[8,10,33],"encount":[0,1,13],"encrypt":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"end":[0,3,4,7,11,14,26,38,44],"endpoint":[0,13,41],"endpoint_mod":41,"enforc":13,"engin":[13,15,37,41,43],"enginevers":38,"enough":16,"ens10":39,"ensur":[0,5,6,13,18,26,28],"enter":47,"entir":[13,16,20],"entri":[0,2,9,13,14,16,26,29,30,38,39,47],"entrypoint":[7,12,13,18],"env":[0,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,32,33,34,35,36,37,39,40,41,42,43],"env_fil":[0,3,4,5,6,7,13,41],"env_vari":[4,7,11],"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,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,47],"envvar":35,"envvar1":41,"envvar2":41,"equal":[0,13,41],"equalto":5,"equival":[0,3,4,5,6,7,13,16],"err":0,"erron":0,"error":[0,3,4,7,8,11,14,15,26,29,30,33,36,37,38,39,40,41],"essenti":[12,15,27,29,40,44],"etc":[13,16,18,20,28,41],"etc_host":[13,16,20],"eth0":39,"evalu":[0,4,7,11,13,41],"even":[0,5,6,7,8,13,17,28,31,33,39,41],"event":0,"everi":[0,13,16,44],"everyon":[8,33],"everyth":[8,10,32,33],"exact":[4,5,6,7],"exactli":[4,11,14,26,38],"exampl":[0,2,9,44,47],"except":[0,13,28,38],"exclud":[0,14,26,38],"exclus":[3,4,5,6,7,8,10,14,16,26,33,34,35,36,38],"exec":[4,44],"exec_id":11,"execut":[0,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,42,43,44,45,46],"exist":[0,1,2,3,4,5,6,7,8,9,10,12,13,16,17,18,20,21,24,25,27,28,31,33,39,40,41,42,43,44],"existing_imag":24,"existing_volum":0,"exit":[4,5,7,11,13,41],"exitcod":5,"exompl":38,"expect":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"experi":0,"expiri":39,"explicit":[13,14],"explicitli":[0,13],"export":[0,14,16,19,20,44,46],"expos":[0,13,16,41],"exposed_port":[0,13],"exposedport":[12,13,18],"express":[13,14,26,38],"extend":[0,2,4,9,13,37,45],"extern":[28,39,41],"extra":[0,2,9,14,16,20,26,38,45],"extra_cli_arg":9,"extra_env":[0,2,9],"extract":0,"extran":[8,33],"f0b1f729f784b755e7bf9c8c2e65d8a0a35a533769c2588f02895f6781ac0805":18,"f2700bba":27,"fabianle":13,"facil":13,"fact":[0,13,14,26,38,41,46],"fail":[0,5,13,15,28,29,30,35,37,39,40,41],"failur":[0,13,41],"failure_act":41,"fair":13,"fall":13,"fallback":[0,14],"fals":[0,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,40,41,42,43,44],"far":0,"fast":13,"fatal":[0,14,26,38],"favor":0,"fdd1":28,"featur":[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,40,41,42,43,46,47],"felix":[1,2,4,5,6,7,10,11,12,13,14,16,17,19,21,22,23,24,32,42],"felixfontein":[1,2,4,5,6,7,10,11,12,13,14,16,17,19,21,22,23,24,32,42],"fetch":[2,9,26],"few":[3,8,29,30,33,37,39,40,41],"field":[0,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"figur":5,"file":[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,39,40,41,42,43,44,46],"filenam":[0,4,5,6,7,14,26,38,41],"filesystem":[10,13,41],"filter":[0,14,15,26,32,37,38],"final":[16,20],"financ":41,"find":0,"find_execut":0,"fine":[45,47],"finer":13,"first":[0,3,5,8,13,14,26,33,38,41],"fix":28,"flag":[0,10,31,37],"flask":[3,5,6],"flask_db_1":3,"flask_web_1":3,"float":[13,41],"fluentd":41,"follow":[3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47],"fontein":[1,2,4,5,6,7,10,11,12,13,14,16,17,19,21,22,23,24,32,42],"foo":[4,7,8,11,13,14,32,33,41],"forbidden":0,"forc":[0,3,5,8,10,13,17,20,23,25,28,33,39,41,43],"force_":0,"force_abs":20,"force_kil":13,"force_remov":31,"force_sourc":20,"force_tag":20,"force_upd":41,"forcekil":13,"form":[0,13,39],"format":[0,3,4,5,6,7,13,14,16,17,18,20,21,22,23,24,32,38,39,41],"forum":46,"forward":[0,13,41],"found":[0,13,14,20,23,25,26,38,44],"fraction":41,"fragment":0,"free":13,"friendli":[4,5,6,7],"from":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,26,27,28,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46],"full":[1,3,5,6,8,10,12,13,15,16,17,18,21,23,24,25,27,28,29,30,31,33,34,36,37,39,40,41,42,43,44],"fulli":0,"fulllist":28,"function":[0,3,8,13,25,28,29,30,31,33,37,39,40,41,42,43,44],"further":[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,32,33,34,35,36,37,38,39,40,41,42,43,44],"futur":[8,20,25,33],"g":[13,16,20,32,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,38,39,40,41,42,43,47],"gatewai":[13,16,20,27,28],"gather_fact":[3,5,44],"gener":[0,3,8,13,14,26,29,30,33,37,38,39,40,41,44,46],"get":[1,10,12,13,15,26,27,29,37,40,42],"get_bin_path":0,"gibibyt":[13,16,20,32,41],"gid":[13,41],"git":0,"github":[0,1,2,4,5,6,7,11,13,14],"github_act":1,"give":[4,6,13],"given":[3,4,5,6,7,13,14,16,19,26,38,39],"global":[0,13,28,41,44],"globalipv6":3,"globalipv6prefixlen":3,"go":8,"golang":[0,8],"goldschraf":47,"goodnight":[8,33],"got":[2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43],"gpu":[0,13],"grace":41,"grafana":34,"grant":31,"graphdriv":18,"greater":3,"group":[0,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,32,33,34,35,36,37,38,39,40,41,42,43,46],"group_id":10,"groupnam":13,"gr\u00f6nholm":43,"h":[13,41],"ha":[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,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"had":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,39,40,41,42,43],"half":13,"handl":[0,2,13,14,38],"hann":[40,41],"hannseman":[40,41],"happen":[0,5,6,8,13,33,44],"has_different_config":0,"hash":[0,3,8,13,16,17,20,21,22,23,24,33],"have":[0,2,5,6,9,13,14,16,26,28,29,32,35,38,39,41,44,47],"health":[0,5,13,41],"healthcheck":[0,13,41],"healthcheck_dis":41,"healthi":[0,5,13,41],"healthstatu":13,"healthy_wait_timeout":[0,13],"heartbeat":39,"heartbeat_tick":39,"heitm\u00fcller":38,"hello":[17,19],"help":[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,40,41,42,43,46,47],"helper":0,"henc":0,"here":[0,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"high":[0,2,9,13,14,26,38,47],"higher":[2,9,14,26,38,47],"highest":[14,26,38,45],"hint":38,"histori":39,"hochestein":9,"home":[3,8,10,16,20,29,30,33,37,39,40,41],"hood":0,"host":[0,1,2,3,4,5,6,7,8,10,11,12,13,14,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,43,44,46],"host1":28,"host2":28,"host_binding_ipv4":13,"host_info":15,"hostconfig":14,"hostnam":[3,12,13,16,18,20,28,29,30,41,44],"hostname_check":3,"hostvar":1,"hotfix":0,"hour":32,"houseknecht":[3,8,13,18,20,25,28,33],"how":[0,2,5,9,10,13,14,16,26,28,41,44,45],"howev":13,"html":0,"http":[0,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,32,33,34,35,36,37,39,40,41,42,43,44],"http_timeout":[0,20],"hu":8,"hub":[20,44],"hzehrmyjigmcp2gb6nlhmjqcv":[8,33],"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,40,41,42,43,44,45,47],"id":[0,1,3,5,6,7,8,10,11,12,13,14,16,17,18,19,20,21,23,24,27,28,29,30,32,33,36,39,41],"idempot":[0,10,13,16,39],"ident":0,"identifi":[0,1,12,13,16,24,27,29],"ignor":[0,3,5,13,14,21,22,26,29,30,38,47],"ignore_build":[0,6],"ignore_error":37,"ignore_imag":[0,13],"ii":13,"im":46,"imag":[0,3,5,6,7,12,13,14,15,26,32,35,36,41,46,47],"image_":14,"image_comparison":[0,13],"image_label_mismatch":[0,13],"image_nam":19,"image_name_mismatch":[0,13],"image_not_pres":13,"images_filt":[0,15,32],"images_space_reclaim":32,"imjoseangel":[34,36],"implement":0,"import":[0,16,44],"importerror":0,"improv":0,"inabl":[0,2,11],"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,40,41,42,43,44,47],"include_dep":[0,6],"include_host_uri":38,"include_host_uri_port":38,"inclus":0,"incompat":[0,3],"incorrect":0,"increas":[8,33,44],"increment":28,"indefinit":[0,13],"index":[4,25],"indic":[1,6,10,26,37],"individu":44,"infin":13,"infinit":0,"info":[0,12,15,27,29,34,36,37,40,42],"inform":[0,1,2,3,6,7,10,11,12,13,14,15,19,27,29,30,32,37,39,42,44,46],"ing":[13,41],"ingress":[27,41],"inherit":13,"ini":[2,9,14,26,38,47],"init":[0,13,39,41,47],"initi":[0,13,41],"initialis":39,"inlin":[0,3],"input":[10,14,26,38],"insert":7,"insid":[1,2,4,7,9,10,11,13,14,41],"inspect":[0,12,13,14,16,17,19,20,21,22,23,24,27,28,29,31,40,42,43,44,46],"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,40,41,42,43,44,47],"instanc":3,"instanti":41,"instead":[0,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,32,33,34,35,36,37,38,39,40,41,42,43,44,47],"instruct":[13,16,20,41],"intact":13,"integ":[2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,35,37,38,39,40,41,42,43,47],"intend":0,"inter":39,"interact":[2,7,13],"interfac":[0,5,13,14,39],"intermedi":[16,20],"intern":[0,27,28],"interpret":[0,10,44],"interv":[0,13,35,41],"introduc":[0,13],"invalid":[0,14,26,38],"inventori":[44,45],"inventory_hostnam":[2,9,14],"inventory_plugin":[14,26,38],"invoc":0,"invok":[0,41],"io":[13,25],"ip":[0,3,13,14,16,20,28,41],"ipaddress":3,"ipalloc_rang":31,"ipam":[27,28],"ipam_config":[0,28],"ipam_driv":28,"ipam_driver_opt":28,"ipam_opt":0,"ipc":13,"ipc_mod":13,"ipprefixlen":3,"iprang":28,"ipv4":[13,28],"ipv4_address":13,"ipv6":[0,3,13,28],"ipv6_address":13,"irc":46,"isn":0,"issu":[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,40,41,42,43,46,47],"item":[13,14,26,38,41],"its":[0,13,14,30,38,41,44],"itself":[0,9,13,44,47],"jandot":13,"januari":0,"jason":41,"jeff":47,"jenkin":13,"jenkinsci":13,"jgoldschraf":47,"jinja2":[0,4,7,11,13,14,26,38],"job":0,"john":8,"join":[0,19,39,44],"join_token":[0,39],"jointoken":39,"jose":[34,36],"joshua":13,"joshuaconn":13,"journald":13,"json":[0,3,8,13,20,25,26,29,30,33,37,39,40,41],"jsondiff":35,"juli":3,"just":[1,16],"jwitko":41,"k":[13,16,20,32,41],"kassian":13,"kassiansun":13,"keep":[0,7,8,10,13,24,32,33,39,47],"keep_old_snapshot":39,"keep_volum":13,"kei":[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,32,33,34,35,36,37,38,39,40,41,42,43,44],"keith":28,"keitwb":28,"kept":[13,24],"kernel":13,"kernel_memori":13,"key1":[15,28,30],"key2":[15,28,30],"key_path":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"keyed_group":[14,26,38],"keyerror":0,"keyword":[2,9],"kibibyt":[13,16,20,32,41],"kilian":25,"kill":[5,13,41],"kill_sign":[0,13],"killer":13,"kind":[5,6],"kubernet":34,"l":[4,7,11,15,37],"label":[0,3,5,7,8,12,13,14,15,16,18,20,27,28,30,32,33,38,39,41,42,43],"label_product":38,"labels_st":30,"labels_to_remov":30,"lah":[4,7,11],"larg":[10,28,31,42,43],"larger":35,"last":35,"later":[0,2,3,4,5,6,7,8,9,13,32,33,44],"latest":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"latest_releas":31,"launch":[13,47],"layer":15,"layout":16,"lead":[0,3,8,14,26,29,30,33,37,38,39,40,41],"leader":[38,39],"leading_separ":[14,26,38],"leaf":39,"leak":0,"least":[0,13],"leav":[3,5,13,28,39,44],"leendert":9,"left":29,"legaci":[0,44],"length":[3,13,18,39],"let":[8,10,33],"letter":14,"level":[0,13,14],"lib":[18,42],"libera":46,"librari":[0,2],"library_inventory_filtering_v1":0,"licens":0,"life":[0,3,13,44],"lifecycl":44,"lift":0,"like":[0,1,4,7,11,13,28,39,41],"limit":[0,2,9,13,20,41],"limit_cpu":[0,41],"limit_memori":[0,41],"line":[0,4,7,9,11,13,44],"linux":[7,14,16,18,38],"list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,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,43,44,46,47],"listen":[13,39],"listen_addr":39,"listen_port":20,"ljungberg":[40,41],"lnmp":[12,13],"lnmp_nginx":[12,13],"load":[0,3,4,5,6,7,13,16,17,20,23,46],"load_path":20,"local":[0,2,3,5,12,13,14,16,18,20,24,25,26,27,28,31,38,42,43,44],"local_follow":10,"localhost":[0,2,3,5,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,39,40,41,42,43,44],"localvolum":5,"locat":[3,4,5,6,7],"lock":39,"log":[0,12,13,20,39,41,44,46],"log_driv":[0,13,41],"log_driver_opt":[0,41],"log_entries_for_slow_follow":39,"log_opt":[0,13],"log_volum":20,"logfmt":0,"login":[25,44],"login_result":25,"logout":[25,44],"long":[2,3,9,12,13,14,27,38,45],"longer":[0,1,2,3,8,13,14,29,30,33,37,38,39,40,41,44],"look":[0,4,5,6,7,13,41],"lookup":[8,13,33],"loop":[0,28],"loosevers":0,"lorin":9,"loss":[4,7,11,13,41],"lost":43,"low":[2,9,14,26,38,47],"lower":[2,9,14,26,38,47],"m":[13,16,20,32,41],"mac":[0,3,13,28],"mac_address":[0,13],"macaddress":3,"machin":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,46],"made":[16,30,41],"mai":[12,13,27,35,38,41],"main":[0,4,5,6,7],"mainli":44,"mainten":0,"make":[0,6,13,14,18,20,26,28,38,39,41,43,44],"manag":[0,2,4,6,7,9,10,17,35,37,38,41,46],"mandatori":0,"mani":[0,13],"manifest":16,"manual":0,"map":[0,3,5,7,8,13,14,16,20,26,28,33,38,41],"mark":0,"markup":0,"mask":39,"match":[0,10,12,13,14,15,20,21,23,26,27,29,37,38,40,41],"matrix":[0,46],"max":41,"max_attempt":41,"max_failure_ratio":41,"max_file_size_for_diff":10,"maximum":[0,2,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"mb":13,"mean":[0,13,16,20,28],"meaning":0,"mebibyt":[13,16,20,32,41],"meet":15,"mehra":31,"mem":13,"member":3,"memori":[0,13,20,41],"memory_reserv":13,"memory_swap":[0,13],"memory_swappi":13,"memswap":20,"mention":13,"merg":[3,4,5,6,7,14,26,30,38,45],"messag":[0,37],"met":0,"meta":[3,8,33],"metadata":[8,13,14,26,30,33,38,39],"method":[15,37],"might":[0,1,3,4,7,8,11,13,14,16,20,26,29,30,33,37,38,39,40,41],"migrat":[0,3],"minim":[0,14,26,38],"minimum":13,"minor":20,"minut":[0,5,13],"miss":[0,5,6,8,13,33],"missing_imag":0,"mode":[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,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,47],"model":47,"modern":3,"modif":38,"modifi":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"modul":[2,14,38],"module_default":[3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"module_util":0,"monitor":41,"monkei":[8,33],"more":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"moreov":0,"morph027":38,"most":[0,5,13,44],"mostli":0,"mount":[0,5,7,13,41],"mountpoint":42,"move":[0,13],"msg":[1,12,19,27,37,42,44],"much":13,"multi":[0,4,6,7,16,46],"multipl":[0,4,5,6,7,14,17,18,19,29,32,44],"munoz":[34,36],"must":[4,5,6,7,10,11,13,14,16,20,21,22,26,29,30,37,38,39,40,41,44],"mutual":[3,4,5,6,7,8,10,14,16,26,33,34,35,36,38],"my":[13,14,38,44],"my_sinatra":20,"myapp":20,"myapplic":13,"myconfig_nam":41,"mycontain":13,"mydata":[10,12,13,27,42],"mydockercfg":25,"myimag":20,"mylabel":[15,41],"mymachin":26,"mynetwork":41,"mynetwork_alia":41,"mynod":[29,30,37,39],"mynode1":29,"mynode2":29,"myredi":13,"mysecret_nam":41,"myservic":[13,37,40,41],"mystack":35,"n":[1,12,15,18,27,29,34,35,36,37,40,42],"name":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46],"namespac":[0,13,34,47],"nanosecond":39,"necessari":[0,2,10,14,38],"need":[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,32,33,34,35,36,37,38,39,40,41,42,43,44],"neg":13,"neither":[4,5,6,7,16,20,34,35,36,44],"nest":35,"net":[0,31],"net2":28,"network":[0,3,4,5,6,7,13,14,15,16,20,32,41,46],"network_foo":14,"network_four":28,"network_ipv6_on":28,"network_ipv6_two":28,"network_mod":[0,13],"network_nam":[13,28],"network_on":28,"network_thre":28,"network_two":28,"networkmod":[0,14],"networks_cli_compat":[0,13],"networks_filt":[0,15,32],"never":[0,3,5,13,16,35,43,44],"new":[1,2,3,4,5,6,8,10,11,13,14,16,17,19,20,21,22,23,26,28,30,31,33,35,39,41,43,46,47],"newer":[0,3,4,5,6,7,8,13,16,29,30,33,37,38,39,40,41,46],"newlin":[4,7,11],"next":[0,14,44],"nginx":[12,13,20,35,41],"nic":3,"nice":0,"nicer":0,"no_copi":[13,41],"no_default":[0,13],"no_dep":7,"no_log":0,"nocach":[0,3,16,20],"nocopi":13,"node":[0,2,10,13,14,26,28,34,35,36,37,39,41,44,46,47],"node_cert_expiri":39,"node_id":39,"nodes_filt":37,"nofil":13,"non":[0,1,10,12,13,16,20,27,28,32,45,47],"none":[0,2,3,4,5,6,7,8,11,12,13,14,16,17,19,20,22,25,27,30,32,33,35,38,39,40,41,42],"nonlead":38,"nop":18,"nor":[4,5,6,7,16,34,35,36,44],"normal":[0,13],"not_pres":21,"notat":28,"note":[9,44,45,46],"noth":0,"notic":[0,13],"now":[0,13],"nowadai":[2,14,38],"npipe":[13,41],"nsenter":[0,45,46],"nsenter_connect":47,"nsenter_pid":[0,47],"null":[3,12,13,18,27,41,42],"number":[0,2,3,4,5,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"nvidia":13,"o":[10,13,14,16,18,20,26,38],"object":[8,10,26,33,37,46],"obtain":0,"occur":0,"oci":[0,16],"octal":41,"off":4,"offer":[16,44],"ohno":13,"ok":13,"olaf":25,"old":[0,2,3,8,9,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"older":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,39,40,41,42,43],"olsaki":25,"omit":[0,13,14,16,20,26,32,38,39,41],"onbuild":[12,13,18],"onc":[0,2,9,41,45],"one":[0,1,3,4,5,6,7,8,9,11,13,14,16,17,18,19,20,21,22,23,24,26,29,30,32,33,37,38,39,40,41,44],"ones":[13,28,30],"onli":[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,18,20,21,25,28,29,30,32,33,37,39,40,41,44],"oom":13,"oom_kil":13,"oom_score_adj":13,"oosterveld":13,"open":[7,13],"openstdin":[12,13,18],"oper":[0,3,4,5,6,7,20,28,30,31,39,41,43],"operatingsystem":41,"opt":[35,41],"optim":0,"option":[0,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,35,37,38,39,40,41,42,43,44,45],"orchestr":[34,44],"order":[0,1,2,3,4,5,6,7,9,11,13,14,26,38,41,44,47],"org":13,"os_linux":[14,38],"other":[0,1,3,4,7,11,13,14,26,29,30,37,38,39,40,41,44],"otherwis":[3,8,10,14,26,29,30,33,37,38,39,40,41],"out":[0,2,5,9,25,41,44,45],"output":[0,2,3,4,5,6,7,9,11,12,13,15,16,20,26,27,29,37,40,44,45],"output_log":[13,44],"over":[4,5,6,7,28,44],"overlai":28,"overlay2":13,"overrid":[2,3,7,9,13,14,26,35,38,41,47],"overview":13,"overwrit":[0,13,16,20,24],"overwritten":[0,24],"own":[14,16,38],"owner":[10,13,41],"owner_id":10,"p":[13,16,20,32,37,41],"packag":[0,3,8,29,30,33,37,39,40,41,44],"pacur":[17,18,20,21,23],"pair":[3,5,13,16,20,32,41],"parallel":41,"paramet":0,"paramiko":[2,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43],"parent":[13,14,18,23,26,38],"parent_group":[14,26,38],"pars":[0,4,7,11,13,41],"parser":[4,7,11,13,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,38,39,40,41,42,43,47],"parti":[28,43],"partial":[13,20,21],"particular":[3,15],"pass":[0,4,5,7,9,11,13,14,16,39,41,44],"password":[25,31],"past":0,"path":[0,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,32,33,34,35,36,37,38,39,40,41,42,43,44],"path_in_contain":13,"path_on_host":13,"paus":[13,30,41],"pavel":[13,20],"pebibyt":[13,16,20,32,41],"peculiar":0,"pem":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"per":[0,13,26,38,41],"perform":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"period":[13,41],"permiss":[13,31],"phase":13,"philipp":13,"pick":0,"pid":[13,45,47],"pid_mod":13,"pids_limit":13,"piotr":[15,29,30,37,39,41],"pip":[3,8,29,30,33,37,39,40,41,44],"pipe":[0,2,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,31,32,42,43],"pipelin":1,"place":[0,13,16],"placement":[0,41],"placement_prefer":41,"plaintext":25,"plan":[0,10],"platform":[0,13,16,20,21,35,38],"playbook":[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,40,41,42,43,44,47],"playbook_dir":3,"pleas":[0,1,3,4,7,8,11,13,16,28,29,30,33,37,39,40,41,43,44],"plugin":[2,3,4,6,7,9,10,16,26,41,44,45,47],"plugin_nam":31,"plugin_on":31,"plugin_opt":31,"podman":[0,1],"point":[0,13],"polici":[0,5,6,13,41],"poll":0,"pool":39,"popul":13,"porshkevich":31,"port":[3,5,7,13,14,16,17,20,21,22,23,24,36,38,39,41],"posit":[13,16,20,32,41],"posix":44,"possibl":[0,13,14,15,20,26,32,37,38,39],"possibli":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"postgr":[3,13],"potenti":[0,2,9,45],"power":13,"pre":[0,10],"preced":[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,32,33,34,35,36,37,38,39,40,41,42,43,44,45],"precis":13,"predict":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"pref":41,"prefer":[9,13,20,21,41],"prefix":[14,26,38],"prepar":0,"prereleas":0,"presenc":29,"present":[0,3,5,6,8,10,13,15,20,24,25,28,31,33,35,39,41,43],"prevent":[0,4,7,8,11,13,33],"previou":0,"primari":[5,14],"print":[0,1,4,7,11,12,13,19,27,37,42],"prior":[3,13,41],"prioriti":[2,9,14,26,38,47],"privat":[13,20,25,41,44],"private_ssh_port":14,"privileg":[0,2,4,9,13,45,47],"problem":[0,2,13,14,38],"process":[3,4,13,14,20,26,38,41],"product":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"profil":[0,3,4,5,6,7],"program":[4,5,6,7,16,34,35,36,47],"progress":[0,7],"project":[0,3,4,5,7,44,46],"project_nam":[3,4,5,6,7],"project_service_":3,"project_src":[0,3,4,5,6,7],"propag":[13,41],"proper":0,"properli":[0,28],"properti":13,"protocol":[5,41],"provid":[0,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,40,41,42,43,44,47],"proxi":[13,20],"proxycommand":0,"prune":[0,23,35,44,46],"pseudo":[13,41],"psf":0,"public":0,"publish":[0,5,7,13,41],"publish_all_port":[0,13],"published_port":[0,13,41],"publishedport":5,"pull":[0,3,5,7,13,16,17,18,20,22,23,24,44,46,47],"pull_check_mode_behavior":[0,13],"pull_platform":0,"pull_polici":5,"pulled_imag":3,"purge_network":[0,13],"purpos":39,"push":[0,16,17,19,20,23,24,44,46],"put":[2,9,16],"py":[0,3,8,29,30,33,37,39,40,41,44],"pyopenssl":[2,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,31,32,42,43],"pypi":44,"python":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"python_requirements_info":44,"pywin32":[2,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,31,32,42,43],"pyyaml":[0,3,4,5,6,7,35],"queri":[0,15,29,35,44],"question":46,"quiet_pul":7,"quot":[0,4,7,11,13,41],"quota":13,"rais":0,"ran":[1,4,6,7,11],"random":[0,13],"rang":[13,28],"rate":13,"rather":[0,3,13],"ratio":41,"raw":0,"rc":[4,7,11],"re":[0,8,13,25,28,33],"reach":13,"reachabl":39,"read":[0,2,3,8,9,13,14,16,33,38,41,45],"read_onli":[13,41],"readabl":[10,13],"readonli":41,"realli":44,"reap":[13,41],"reason":[0,13,16],"reauth":25,"reauthor":25,"rebuild":[0,16],"rebuilt":[3,41],"receiv":0,"reclaim":32,"recogn":[14,38],"reconnect":28,"recreat":[0,3,5,8,13,28,33,41,43],"redi":[0,13],"reduc":0,"refactor":0,"refer":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"referenc":1,"reflect":13,"refresh":25,"regard":[0,3],"region":26,"regist":[1,3,4,5,7,11,12,15,18,19,27,29,30,34,36,37,40,41,42],"registri":[0,13,16,18,19,20,23,24,35,41,44,46],"registry_serv":[16,17,20,21,22,23,24],"registry_url":25,"regular":[0,1],"reinstal":[3,29,30,37,39,40,44],"reject":0,"rekcod":25,"rel":[0,3,4,5,6,7,13,16,20],"relat":13,"releas":[4,5,6,7,20,46],"relev":13,"reli":[0,28,47],"remain":[13,30],"remot":[0,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,32,33,34,35,36,37,38,39,40,41,42,43,44,47],"remote_addr":[2,9,39],"remote_tmp":41,"remote_us":[2,9],"remov":[2,3,5,7,8,10,11,12,13,14,15,17,18,19,20,21,22,24,25,27,28,29,30,31,32,33,35,37,38,39,40,41,42,43,44,46],"removal_wait_timeout":[0,13],"remove_imag":[3,5],"remove_orphan":[3,5,7],"remove_volum":[3,5],"renam":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43],"render":0,"replac":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"replic":[0,41],"replica":[4,41],"replicas_max_per_nod":[0,41],"repo":[20,22],"repodigest":18,"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,39,40,41,42,43,46,47],"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,39,40,41,42,43,46,47],"repotag":18,"repres":[12,13,15,27,29,37,40,41],"represent":[8,33],"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,39,40,41,42,43,46,47],"requir":[0,9,47],"reserv":[0,41],"reserve_cpu":[0,41],"reserve_memori":[0,41],"reset":0,"resolv":[13,16,20,35,41],"resolve_imag":[35,41],"resourc":[0,5,6,13,35,41],"resp":[3,25],"respect":[0,4,7,11,13,25],"respons":[2,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"restart":[0,3,5,13,41],"restart_config":[0,41],"restart_polici":[0,13,41],"restart_policy_attempt":[0,41],"restart_policy_delai":[0,41],"restart_policy_window":[0,41],"restart_retri":[0,13],"restor":[0,13],"restrict":[0,28],"result":[0,3,4,5,7,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,31,34,36,37,40,42,43,44],"retain":13,"retri":[13,35,41],"retriev":[0,20,34,36,39,44,46],"return":[0,38,46],"reus":[0,13],"revert":0,"rewrit":0,"rewritten":0,"rfc":0,"right":[0,17],"risk":10,"rm":[0,7,8,20,33],"ro":13,"role":[30,39,41],"roll":[0,41],"rollback":41,"rollback_config":41,"rolling_vers":[0,8,33],"room":46,"root":[0,4,7,10,11,13,41,45,47],"rootf":13,"rotat":39,"rotate_manager_token":39,"rotate_worker_token":39,"rprivat":[13,41],"rshare":[13,41],"rslave":[13,41],"rule":13,"run":[0,3,5,6,8,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,43,44,45,46],"runm":10,"running_requir":26,"runningfor":5,"runserv":3,"runtim":13,"rw":13,"rwm":13,"safe":[16,38],"sakar":31,"sakar97":31,"same":[0,3,13,14,28,29,30,31,37,39,40,42,43,44],"sampl":[3,4,5,6,7,8,11,12,13,16,17,18,19,20,21,22,23,24,25,27,28,31,32,33,34,35,36,39,40,41,42,43],"sanit":0,"satisfi":13,"sbarnea":20,"sbin":[12,13,18],"scale":[0,3,5],"schedul":[0,13],"scheme":0,"schneider":13,"scope":[27,28,42],"score":13,"scratch":0,"script":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"sda":13,"sda2":43,"sdb":13,"sdk":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"search":[4,5,6,7,13,16,34,35,36,41],"second":[2,3,5,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,35,37,38,39,40,41,42,43,44],"secret":[0,16,41,44,46],"secret_id":[33,41],"secret_kei":13,"secret_nam":[33,41],"secrets3":25,"section":0,"secur":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"security_opt":13,"see":[0,2,8,10,11,12,13,14,15,18,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,45],"seem":[1,10,13,17],"select":[0,13,14,15,18,20,21,22,26,28,30,32,37,38,44],"selectattr":5,"selector":0,"self":[0,29],"selinux":13,"semant":0,"send":[0,2,11,13,35,39],"sens":[6,16],"separ":[0,13,14,26,38],"sequenti":[14,26,38],"server":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"serveraddress":25,"servic":[0,3,5,6,13,14,16,20,28,34,35,37,46],"service_":14,"service_nam":3,"service_port":7,"services_filt":37,"set":[0,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,40,41,42,43,44,45],"sever":44,"sh":[4,7,10,11,18],"sha256":[5,19,41],"share":[13,20,41],"shell":[0,4,7,10,11,13,41],"ship":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"shm":[0,13,16,20],"shm_size":[13,16,20],"short":[0,3,12,13,14,27,44],"short_id":3,"shorter":13,"should":[0,2,3,8,9,10,13,14,17,26,29,30,33,37,38,39,40,41,44,45,47],"show":[0,3,5,15,34,36,37,41,44],"shown":[0,21],"shutdown":[3,5],"side":[0,13,39],"sigkil":13,"sign":39,"signal":[13,41],"signific":41,"signing_ca_cert":39,"signing_ca_kei":[0,39],"silent":26,"similar":[0,8,10,12,25,27,33,44],"similarli":13,"simpl":[4,7,11],"simpli":13,"simplifi":0,"simultan":41,"sinatra":[18,20],"sinc":[0,1,3,4,6,7,11,13,14,16,26,38,44],"singl":[0,16,18,28,44],"site":[12,13],"situat":0,"size":[0,5,13,16,18,20,26,41],"skip":[0,14,26,38],"slave":[13,41],"sleep":[13,41],"sleeper":13,"sleepi":13,"sleepyz":13,"sleepyzz":13,"slow":39,"small":0,"smart":3,"snapshot":39,"snapshot_interv":39,"so":[0,13,14,28,41,44],"sock":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"socker_handl":0,"socket":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"socket_handl":0,"socket_help":0,"soft":13,"softwar":0,"softzilla":[13,20],"some":[0,13,16],"someus":13,"somewher":[14,38],"sorin":20,"sourc":[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,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47],"space":[15,32],"spam":0,"spawn":0,"spdx":0,"spec":[0,35,38],"special":[0,1,13,15,16,20,38],"specif":[0,13,16,20,21,28,34,43,44],"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,39,40,41,42,43,44,47],"spell":28,"split":13,"spread":41,"src":16,"ssbarnea":20,"ssh":[0,2,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,37,38,39,40,41,42,43],"ssl":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"ssl_match_hostnam":[2,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,31,32,42,43],"ssl_version":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"sslsocket":[0,2,11],"ssssh":13,"stabl":[4,5,6,7],"stack":[14,41,46],"stack_":14,"stack_spec_diff":35,"stage":[16,20],"standard":[0,4,7,11,26],"start":[0,2,3,4,5,6,7,9,13,14,26,38,41,44,45],"start_interv":[0,13],"start_period":[13,41],"startswith":14,"startup":0,"state":[0,1,3,5,8,12,13,15,18,20,25,26,27,28,29,30,31,33,34,35,36,37,39,40,41,42,43],"statu":[0,1,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"stderr":[0,4,7,11],"stderr_lin":[4,7,11],"stdin":[0,4,7,11,13],"stdin_add_newlin":[4,7,11],"stdinonc":[12,13,18],"stdout":[0,4,7,11,20],"stefan":38,"steinbach":13,"step":0,"still":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,37,38,39,40,41,42,43,44,47],"stop":[0,3,5,13,14,41,44],"stop_grace_period":[0,41],"stop_sign":[13,41],"stop_timeout":[0,13],"stoptimeout":13,"storag":[0,13],"storage_opt":[0,13],"store":[16,25,26,39],"stream":0,"strict":[0,13,14,26,38],"stricthostkeycheck":26,"strictvers":0,"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,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"strip":[4,7,11],"strip_empty_end":[4,7,11],"structur":13,"style":13,"sub":[13,41],"subcommand":[28,31,42,43],"subdirectori":16,"submit":[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,40,41,42,43,46,47],"subnet":[3,27,28,39],"subnet_s":39,"subopt":0,"subset":[3,5,6,15,28,37],"subshel":0,"success":[3,4,5,6,7,8,10,11,13,15,16,17,19,20,21,22,23,24,28,30,31,33,37,39,42,43],"successfulli":[0,26],"suddenli":3,"sum":15,"summari":15,"sun":13,"supersed":[3,8,29,30,33,37,39,40,41],"supervisord":[12,13],"suppli":13,"support":[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,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46],"suppos":[0,3],"sure":[0,13,18,20,28,39,43,44],"swap":[0,13,20],"swappi":13,"swarm":[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,42,43,46,47],"swarm_fact":[37,39],"swarm_servic":41,"swarm_unlock_kei":37,"switch":0,"swmkei":39,"swmtkn":39,"sync":39,"synchron":[4,7,11,44],"syntax":13,"sys_tim":13,"sysctl":[0,13,41],"syslog":13,"system":[10,13,15,44],"systemd":47,"t":[0,13,16,20,32,41],"tag":[0,5,13,16,17,18,19,20,21,22,23,26,41,44,46],"tag_nam":[16,17,20,21,22,23,24],"tagged_imag":24,"take":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"taken":[3,4,5,6,7,13],"talk":[0,15,37,44],"tar":[0,16,17,19,20],"tarbal":[16,17,44],"target":[0,1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"target_port":41,"targetport":5,"task":[0,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47],"task_history_retention_limit":39,"tasks_filt":37,"tasktempl":35,"tbouvet":[30,39],"tcp":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"tear":[3,5],"tebibyt":[13,16,20,32,41],"templat":[0,4,7,8,11,13],"template_driv":[0,8],"temporari":[4,5,6,7],"termin":13,"test":[0,4,5,6,7,8,13,27,33,41,42],"test_cli_compat":[0,13],"test_stack":36,"test_stack_test_servic":35,"testingnet":13,"testingnet2":13,"testus":25,"text":0,"th":7,"than":[0,3,13,24,26,29,30,32,35,41],"thei":[0,1,5,6,10,13,14,26,28,38,41,44],"them":[0,1,3,5,6,13,25,26,28,29,30,37,39,40,44],"therefor":13,"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,40,41,42,43,44,45,47],"thierri":[30,39],"thoma":13,"thomassteinbach":13,"those":[0,14,26,30,38],"though":[0,8,20,33],"three":0,"through":[0,4,7,11],"thu":[0,44],"tick":39,"time":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,35,37,38,39,40,41,42,43,44],"time_out":38,"timeout":[0,2,3,5,8,9,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"timestamp":5,"tl":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"tls_ca_cert":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"tls_client_cert":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"tls_client_kei":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"tls_hostnam":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"tls_verifi":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"tmfs_size":0,"tmp":[12,13,17,25,41],"tmpf":[13,41],"tmpfs_mode":[0,13,41],"tmpfs_size":[13,41],"to_n":0,"toggl":[14,38],"token":[0,26,37,39],"told":0,"too":9,"tool":[0,2,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"top":[13,14],"total":[13,20],"traceback":0,"tracker":[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,40,41,42,43,46,47],"traffic":39,"trail":0,"trailing_separ":[14,26,38],"transfer":10,"transform":14,"transport":[2,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43],"treat":0,"tree":10,"tri":[0,4,5,6,7,13],"trigger":[39,41],"trim":0,"troubl":0,"true":[0,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,40,41,42,43,44],"trust_image_cont":0,"try":[0,5,10,13,20,21,28,35],"tty":[4,7,11,12,13,18,41],"tune":13,"two":[0,3,8,13,24,33,44],"txt":[0,10,41],"type":[0,2,4,7,9,11,13,14,15,16,26,28,32,37,38,41,43,47],"u":[13,35,41],"ubuntu":[13,41],"udp":[5,13,41],"uid":[13,41],"ulimit":13,"un":[20,23],"unblock":0,"unchang":[3,5,30,41],"under":[0,3,4,5,6,7,16,34,44],"underscor":[14,26,38],"unexpect":13,"unhealthi":[13,41],"uninstal":[3,29,30,37,39,40,44],"unintend":0,"uniqu":[3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"unit":[0,13,16,20,32,41],"unix":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"unknown":[0,5,6,21],"unless":[0,3,8,13,15,33,37,45,47],"unlimit":[0,13,20],"unlock":[37,39],"unlock_kei":37,"unlockkei":39,"unmaintain":0,"unnecessari":0,"unreach":29,"unsaf":0,"unspecifi":41,"unstructur":0,"untag":[23,44],"until":[0,13,14,15,26,32,35,38],"unus":0,"unverifi":[14,38],"up":[0,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,40,41,42,43,47],"updat":[0,1,6,8,13,16,20,25,28,30,33,39,41,44],"update_config":[0,41],"update_delai":[0,41],"update_failure_act":[0,41],"update_max_failure_ratio":[0,41],"update_monitor":[0,41],"update_ord":[0,41],"update_parallel":[0,41],"upgrad":[0,16],"upload":10,"uri":38,"url":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44],"urllib3":0,"us":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,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,43,44,45,46,47],"usag":[0,3,13,15,18,20,41,46],"use_alias":7,"use_config_proxi":20,"use_extra_var":[14,26,38],"use_ssh_cli":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43],"use_tl":0,"usealias":7,"user":[0,2,4,7,9,10,11,12,13,16,18,25,26,30,39,41,44,45,46,47],"usernam":[13,25,41],"userns_mod":13,"ushuz":8,"usr":[12,13,18],"usual":[13,20],"ut":13,"utf":10,"util":[0,13,44],"v":0,"v1":[5,12,13,20,25,46],"v2":3,"v8":16,"valid":[0,2,3,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"validate_cert":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"valu":[0,2,9,14,26,38,44],"value1":[15,28],"value2":[15,28],"value_specified_in_no_log_paramet":[0,39],"vanish":0,"var":[0,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,32,33,34,35,36,37,38,39,40,41,42,43,44,45],"variabl":[0,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,40,41,42,43,47],"variant":[13,16,20],"variou":[0,4,5,6,7,13,16,17,46],"vendor":0,"verbos":[15,37],"verbose_output":[14,15,26,37,38],"veri":[3,8,13,29,30,33,37,39,40,41],"verif":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"verifi":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"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,40,41,42,43,44,46,47],"versions_to_keep":[8,33],"via":[13,28,30,32,38,41],"view":13,"vip":41,"virtual":3,"virtuals":18,"visibl":0,"vladimir":31,"volum":[0,3,4,5,6,7,12,13,15,18,32,37,41,46],"volume_cr":43,"volume_driv":13,"volume_nam":[42,43],"volume_on":43,"volume_opt":13,"volume_two":43,"volumes_filt":[0,15,32],"volumes_from":13,"volumes_space_reclaim":32,"w":38,"wa":[0,1,2,3,5,6,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44],"wai":[0,4,7,11,13,14,20,47],"wait":[0,2,5,8,9,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,37,38,39,40,41,42,43,44,45],"wait_timeout":5,"want":[0,2,9,13,18,20,28,32],"warn":[0,13,26],"we":[0,2,9,13,14,16,20,26,28,38,45],"weave_password":31,"weavework":31,"web":[3,5,35,41],"web_contain":5,"webapp":41,"weight":[13,20],"well":[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"welt":0,"were":[0,13,20,23,32],"what":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"whatev":[13,20,21],"when":[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,40,41,42,43,44],"where":[0,1,3,5,8,10,13,14,16,18,20,26,33,38,41,44,45],"whether":[0,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,40,41,42,43,45,46,47],"which":[0,3,4,7,8,11,13,14,15,16,20,22,25,26,33,37,38,39,41,44],"while":[0,13,41,47],"whitespac":0,"whose":[0,14,26,32,38,39],"why":[2,3,14,38],"wide":13,"wildcard":13,"window":[0,2,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,27,28,31,32,41,42,43],"with_registry_auth":35,"with_sequ":13,"within":13,"without":[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,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],"witkowski":41,"wojciechowski":[15,29,30,37,39,41],"wojciechowskipiotr":[15,29,30,37,39,41],"work":[0,1,2,3,8,10,11,13,14,16,30,33,41,44,46],"workaround":16,"workdir":41,"worker":[28,30,38,39],"working_dir":[0,2,9,13,41],"workingdir":18,"world":[17,19],"would":[0,6,13],"wrap":44,"wrapper":0,"writabl":10,"write":[10,13,16],"writer":0,"written":0,"www":0,"x":[0,16,41,44],"x86_64":38,"xf":13,"ximon":26,"ximon18":26,"xvda":13,"xxx":39,"xxxxx":39,"y":[0,16],"yaml":[0,3,4,5,6,7,11,13,14,26,35,38,41],"ye":[13,14,26,38],"yet":[0,13],"yml":[0,3,4,5,6,7,14,18,26,35,38],"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,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47],"your":[15,25,28,37,39,44],"yourself":25,"z":13,"zanzico":[35,41],"zero":[0,13],"zfil":13,"zone":0,"zzzz":13},"titles":["Community.Docker Release Notes","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_exec module \u2013 Run command in a container of a Compose service","community.docker.docker_compose_v2 module \u2013 Manage multi-container Docker applications with Docker Compose CLI plugin","community.docker.docker_compose_v2_pull module \u2013 Pull a Docker compose project","community.docker.docker_compose_v2_run module \u2013 Run command in a new container of a Compose service","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_export module \u2013 Export (archive) Docker images","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"],"titleterms":{"":19,"0":0,"1":0,"10":0,"11":0,"12":0,"13":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"about":[1,12,15,27,29,37,40,42],"all":[34,45],"allow":32,"also":[3,4,5,6,7,16,17,19,20,21,22,23,24,34],"ansibl":[14,38],"api":44,"applic":[3,5],"archiv":[17,19],"attribut":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"author":[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,40,41,42,43,47],"break":0,"bugfix":0,"build":16,"buildx":16,"chang":0,"changelog":46,"cli":5,"cluster":[37,39],"collect":[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,40,41,42,43,45,47],"command":[4,7,11],"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,39,40,41,42,43,46,47],"compos":[3,4,5,6,7,44],"config":8,"configur":44,"connect":[0,2,9,44,46,47],"contain":[1,2,3,4,5,7,9,10,11,12,13,14,44,47],"control":47,"copi":10,"current_container_fact":1,"daemon":44,"default":44,"deprec":[0,3],"descript":46,"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,40,41,42,43,44,46,47],"docker_api":2,"docker_compos":3,"docker_compose_v2":5,"docker_compose_v2_exec":4,"docker_compose_v2_pul":6,"docker_compose_v2_run":7,"docker_config":8,"docker_contain":[13,14],"docker_container_copy_into":10,"docker_container_exec":11,"docker_container_info":12,"docker_host_info":15,"docker_imag":20,"docker_image_build":16,"docker_image_export":17,"docker_image_info":18,"docker_image_load":19,"docker_image_pul":21,"docker_image_push":22,"docker_image_remov":23,"docker_image_tag":24,"docker_login":25,"docker_machin":26,"docker_network":28,"docker_network_info":27,"docker_nod":30,"docker_node_info":29,"docker_plugin":31,"docker_prun":32,"docker_secret":33,"docker_stack":35,"docker_stack_info":34,"docker_stack_task_info":36,"docker_swarm":[38,39],"docker_swarm_info":37,"docker_swarm_servic":41,"docker_swarm_service_info":40,"docker_volum":43,"docker_volume_info":42,"dynam":[14,38],"environ":[44,45],"exampl":[1,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,32,33,34,35,36,37,38,39,40,41,42,43],"execut":[11,47],"export":17,"fact":[1,12,15,27,29,37,42],"featur":0,"file":10,"fix":0,"from":[19,21,29,40],"group":44,"guid":[0,44,46],"host":[15,47],"imag":[16,17,18,19,20,21,22,23,24,44],"index":[45,46],"inform":[34,36,40],"inspect":18,"inventori":[0,14,26,38,46],"issu":0,"known":0,"link":[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,40,41,42,43,47],"list":15,"load":19,"log":25,"machin":[26,44],"major":0,"manag":[3,5,8,13,20,28,29,30,31,33,39,40,43,44],"minor":0,"modul":[0,1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44,46],"multi":[3,5],"name":24,"network":[27,28,44],"new":[0,7,24],"node":[29,30,38],"note":[0,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,32,33,34,35,36,37,38,39,40,41,42,43,47],"nsenter":47,"object":[15,32],"paramet":[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,40,41,42,43,44,47],"plain":44,"plugin":[0,5,14,31,38,46],"port":0,"previous":0,"project":6,"prune":32,"pull":[6,21],"push":22,"registri":[21,22,25],"releas":0,"remov":[0,23],"requir":[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,32,33,34,35,36,37,38,39,40,41,42,43,44],"retriev":[12,15,27,29,37,40,42],"return":[1,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"run":[1,2,4,7,9,47],"scenario":46,"secret":33,"secur":0,"see":[3,4,5,6,7,16,17,19,20,21,22,23,24,34],"servic":[4,7,15,40,41,44],"sourc":26,"stack":[34,35,36,44],"statu":3,"summari":0,"swarm":[29,30,37,38,39,40,41,44],"synopsi":[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,40,41,42,43,47],"tag":24,"task":[2,9,36],"topic":0,"us":16,"v0":0,"v1":[0,3,44],"v2":[0,44],"v3":0,"valu":[3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43],"variabl":[44,45],"variou":32,"volum":[42,43,44],"whether":1}}) \ No newline at end of file