Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Amin Vakil <[email protected]>
  • Loading branch information
felixfontein and Amin Vakil committed Feb 28, 2021
1 parent 130a4db commit fb52e4c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plugins/modules/docker_image_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
---
module: docker_image_load
short_description: Load docker images from archives
short_description: Load docker image(s) from archives
version_added: 1.3.0
description:
- Load one or multiple Docker images from a C(.tar) archive, and return information on
the loaded images.
the loaded image(s).
options:
path:
description:
- The path to the C(.tar) archive to load Docker images from.
- The path to the C(.tar) archive to load Docker image(s) from.
type: path
required: true
Expand All @@ -43,14 +43,14 @@
'''

EXAMPLES = '''
- name: Load all images from the given tar file
- name: Load all image(s) from the given tar file
community.docker.docker_image_load:
path: /path/to/images.tar
register: result
- name: Print the loaded image names
debug:
msg: "Loaded the following images: {{ resut.image_names | join(', ') }}"
msg: "Loaded the following images: {{ result.image_names | join(', ') }}"
'''

RETURN = '''
Expand Down

0 comments on commit fb52e4c

Please sign in to comment.