From c9feb64f91e666276e33a3d1f8115e8e74fb1ebf Mon Sep 17 00:00:00 2001 From: felixfontein Date: Tue, 7 Jan 2025 20:22:35 +0000 Subject: [PATCH] deploy: 29ff1241ce26deb746fd77b56ce13389fe88553d --- branch/main/docker_containers_inventory.html | 9 ++++++++- branch/main/docker_machine_inventory.html | 9 ++++++++- branch/main/docker_swarm_inventory.html | 7 ++++++- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/branch/main/docker_containers_inventory.html b/branch/main/docker_containers_inventory.html index b492c767..d9e4e68d 100644 --- a/branch/main/docker_containers_inventory.html +++ b/branch/main/docker_containers_inventory.html @@ -615,19 +615,23 @@ see

Examples

-
# Minimal example using local Docker daemon
+
---
+# Minimal example using local Docker daemon
 plugin: community.docker.docker_containers
 docker_host: unix:///var/run/docker.sock
 
+---
 # Minimal example using remote Docker daemon
 plugin: community.docker.docker_containers
 docker_host: tcp://my-docker-host:2375
 
+---
 # Example using remote Docker daemon with unverified TLS
 plugin: community.docker.docker_containers
 docker_host: tcp://my-docker-host:2376
 tls: true
 
+---
 # Example using remote Docker daemon with verified TLS and client certificate verification
 plugin: community.docker.docker_containers
 docker_host: tcp://my-docker-host:2376
@@ -636,6 +640,7 @@ see client_key: /somewhere/key.pem
 client_cert: /somewhere/cert.pem
 
+---
 # Example using constructed features to create groups
 plugin: community.docker.docker_containers
 docker_host: tcp://my-docker-host:2375
@@ -648,6 +653,7 @@ see   - prefix: os
     key: docker_platform
 
+---
 # Example using SSH connection with an explicit fallback for when port 22 has not been
 # exported: use container name as ansible_ssh_host and 22 as ansible_ssh_port
 plugin: community.docker.docker_containers
@@ -656,6 +662,7 @@ see   ansible_ssh_host: ansible_ssh_host | default(docker_name[1:], true)
   ansible_ssh_port: ansible_ssh_port | default(22, true)
 
+---
 # Only consider containers which have a label 'foo', or whose name starts with 'a'
 plugin: community.docker.docker_containers
 filters:
diff --git a/branch/main/docker_machine_inventory.html b/branch/main/docker_machine_inventory.html
index 51682e6a..bdaf8617 100644
--- a/branch/main/docker_machine_inventory.html
+++ b/branch/main/docker_machine_inventory.html
@@ -439,9 +439,11 @@ see 
 

Examples

-
# Minimal example
+
diff --git a/branch/main/docker_swarm_inventory.html b/branch/main/docker_swarm_inventory.html index 88f9550d..7a6a0d88 100644 --- a/branch/main/docker_swarm_inventory.html +++ b/branch/main/docker_swarm_inventory.html @@ -536,19 +536,23 @@ see

Examples

-
# Minimal example using local docker
+
---
+# Minimal example using local docker
 plugin: community.docker.docker_swarm
 docker_host: unix:///var/run/docker.sock
 
+---
 # Minimal example using remote docker
 plugin: community.docker.docker_swarm
 docker_host: tcp://my-docker-host:2375
 
+---
 # Example using remote docker with unverified TLS
 plugin: community.docker.docker_swarm
 docker_host: tcp://my-docker-host:2376
 tls: true
 
+---
 # Example using remote docker with verified TLS and client certificate verification
 plugin: community.docker.docker_swarm
 docker_host: tcp://my-docker-host:2376
@@ -557,6 +561,7 @@ see client_key: /somewhere/key.pem
 client_cert: /somewhere/cert.pem
 
+---
 # Example using constructed features to create groups and set ansible_host
 plugin: community.docker.docker_swarm
 docker_host: tcp://my-docker-host:2375