Home > Article > Operation and Maintenance > How to copy host files to docker
Copy files from the host to the container:
Execute the following command in the host
docker cp 要拷贝的文件路径 容器名:要拷贝到容器里面对应的路径
Example
Change the host The /www/runoob directory is copied to the /www directory of the container 96f7f14e99ab.
docker cp /www/runoob 96f7f14e99ab:/www/
For more related tutorials, please pay attention to the docker tutorial column on the PHP Chinese website.
The above is the detailed content of How to copy host files to docker. For more information, please follow other related articles on the PHP Chinese website!