An administrator needs to copy a configuration file named /tmp/nginx.conf from the host into a running container named web_server at path /etc/nginx/nginx.conf. Which command should be used?
podman cp supports copying from host to container using host_path:container_path syntax.
Why this answer
podman cp copies files/folders between a container and the local filesystem.