We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b32082 commit f172677Copy full SHA for f172677
1 file changed
inventory-functions/inventory.py
@@ -3,10 +3,14 @@ def make_docker_inventory():
3
# and the values are either a list of hosts or a tuple of (hosts, data).
4
return {
5
"docker_hosts": [
6
- "@docker/ubuntu:22.04",
+ "@docker/debian:9",
7
+ "@docker/debian:8",
8
],
9
"docker_hosts_with_data": (
- ["@docker/ubuntu:24.04"],
10
- {"key": "value"},
+ [
11
+ "@docker/ubuntu:24.04",
12
+ "@docker/ubuntu:22.04",
13
+ ],
14
+ {"_sudo": True},
15
),
16
}
0 commit comments