1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-04-28 11:58:48 +00:00

Fix podman_container_copy examples (#882)

Signed-off-by: hagene <hagene@uio.no>
This commit is contained in:
Hagen 2025-01-08 15:24:49 +01:00 committed by GitHub
parent 64e4247347
commit 16b034b71f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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