1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

Fix podman_container_copy examples

Signed-off-by: hagene <hagene@uio.no>
This commit is contained in:
Hagen 2024-12-16 11:52:18 +01:00 committed by hagene
parent 7fa610a416
commit 4241acb814
No known key found for this signature in database

View file

@ -58,12 +58,12 @@ options:
EXAMPLES = r"""
- name: Copy file "test.yml" on the host to the "apache" container's root folder
containers.podman.podman_search:
containers.podman.podman_container_copy:
src: test.yml
dest: /
container: apache
- name: Copy file "test.yml" in the "apache" container's root folder to the playbook's folder
containers.podman.podman_search:
containers.podman.podman_container_copy:
src: /test.yml
dest: ./
container: apache