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