Home > Article > Operation and Maintenance > How to copy files from docker to local
You can use the [docker cp] command to achieve this.
docker cp: used for data copy between the container and the host.
Specific commands such as:
docker cp <containerId>:/file/path/within/container /host/path/target
Recommended tutorial: docker tutorial
The above is the detailed content of How to copy files from docker to local. For more information, please follow other related articles on the PHP Chinese website!