How to copy files from docker

Release: 2020-03-19 14:50:25
Original
30546 people have browsed it

How to copy files from docker

Copy files from the container to the host:

Execute the following command in the host:

docker cp 容器名:要拷贝的文件在容器里面的路径       要拷贝到宿主机的相应路径
Copy after login

Example:

Assume that the container is named testtomcat, and the path of the file to be copied from the container is: /usr/local/tomcat/webapps/test/js/test.js. Now we need to copy test.js from the container to the /opt path of the host machine. Next, how should the command be written?

Execute the command on the host:

docker cp testtomcat:/usr/local/tomcat/webapps/test/js/test.js /opt
Copy after login

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 files from docker. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template