Options (2)
booleanCopy a file or directory from the host to a container
Example:
docker {{[cp|container cp]}} {{path/to/file_or_directory_on_host}} {{container_name}}:{{path/to/file_or_directory_in_container}}-L, --follow-linkbooleanCopy a file or directory from the host to a container, following symlinks (copies the symlinked files directly, not the symlinks themselves)
Example:
docker {{[cp|container cp]}} {{[-L|--follow-link]}} {{path/to/symlink_on_host}} {{container_name}}:{{path/to/file_or_directory_in_container}}Examples (3)
Copy a file or directory from the host to a container
docker [cp|container cp] path/to/file_or_directory_on_host container_name:path/to/file_or_directory_in_containerCopy a file or directory from a container to the host
docker [cp|container cp] container_name:path/to/file_or_directory_in_container path/to/file_or_directory_on_hostCopy a file or directory from the host to a container, following symlinks (copies the symlinked files directly, not the symlinks themselves)
docker [cp|container cp] [-L|--follow-link] path/to/symlink_on_host container_name:path/to/file_or_directory_in_containermade by @shridhargupta | data from tldr-pages