How to transfer files between Docker container and local machine

How to transfer files between Docker container and local machine

To transfer files between the host and the container, the full ID of the container is required.

The acquisition method is as follows:

1. First get the short ID or specified name of the container.

2. Then get the full ID name based on any of these two items.

With this long ID, file transfer between the local machine and the container is simple.

docker cp local file path ID full name: container path 

After entering the container, you can see the files just uploaded.

If the container transfers files to the local machine, the reverse is fine:

docker cp ID full name: container file path local path

For mounting, you can refer to this article: Using Volume to transfer files between the host and Docker container.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to use Docker container to access host network
  • How to communicate between WIN10 system and Docker internal container IP
  • Steps to set up and mount shared folders on Windows host and Docker container

<<:  How to use resident nodes for layer management in CocosCreator

>>:  Linux implements automatic and scheduled backup of MySQL database every day

Recommend

A brief analysis of how to upgrade PHP 5.4 to 5.6 in CentOS 7

1. Check the PHP version after entering the termi...

js to realize login and registration functions

This article example shares the specific code of ...

The perfect solution to the Chinese garbled characters in mysql6.x under win7

1. Stop the MySQL service in the command line: ne...

Detailed explanation of CSS3 to achieve responsive accordion effect

I recently watched a video of a foreign guy using...

Let IE6, IE7, IE8 support CSS3 rounded corners and shadow styles

I want to make a page using CSS3 rounded corners ...

Method of dynamically loading geojson based on Vue+Openlayer

Load one or more features <template> <di...

How to implement blank space in Taobao with CSS3

Make a blank space for Taobao: When you shrink th...

WeChat Mini Programs Implement Star Rating

This article shares the specific code for WeChat ...

Docker Machine in-depth explanation

Differences between Docker and Docker Machine Doc...

Summary of Common Problems with Mysql Indexes

Q1: What indexes does the database have? What are...

Detailed explanation of MySQL 5.7.9 shutdown syntax example

mysql-5.7.9 finally provides shutdown syntax: Pre...

MySQL 8.0.12 Simple Installation Tutorial

This article shares the installation tutorial of ...

Vue realizes picture switching effect

This article example shares the specific code of ...

Differences and comparisons of storage engines in MySQL

MyISAM storage engine MyISAM is based on the ISAM...