Docker copy

Updated: 14 June 2023

Copy file from container to host

docker cp <:containerId>:/file/path/within/container /host/path/target

Copy file from host to container

docker cp /host/path/target <:containerId>:/file/path/within/container

Leave a comment