mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
committed by
Felix Fontein
parent
d0ad62b869
commit
564dd62c80
@@ -100,29 +100,29 @@ requirements:
|
||||
|
||||
EXAMPLES = '''
|
||||
- name: Get info on docker host
|
||||
docker_host_info:
|
||||
community.docker.docker_host_info:
|
||||
register: result
|
||||
|
||||
- name: Get info on docker host and list images
|
||||
docker_host_info:
|
||||
community.docker.docker_host_info:
|
||||
images: yes
|
||||
register: result
|
||||
|
||||
- name: Get info on docker host and list images matching the filter
|
||||
docker_host_info:
|
||||
community.docker.docker_host_info:
|
||||
images: yes
|
||||
images_filters:
|
||||
label: "mylabel"
|
||||
register: result
|
||||
|
||||
- name: Get info on docker host and verbose list images
|
||||
docker_host_info:
|
||||
community.docker.docker_host_info:
|
||||
images: yes
|
||||
verbose_output: yes
|
||||
register: result
|
||||
|
||||
- name: Get info on docker host and used disk space
|
||||
docker_host_info:
|
||||
community.docker.docker_host_info:
|
||||
disk_usage: yes
|
||||
register: result
|
||||
|
||||
|
||||
Reference in New Issue
Block a user