Skip to content
Related Articles
Open in App
Not now

Related Articles

Copying Files to and from Docker Containers

Improve Article
Save Article
Like Article
  • Last Updated : 31 Oct, 2020
Improve Article
Save Article
Like Article

While working on a Docker project, you might require copying files to and from Docker Containers and your Local Machine. Once you have built the Docker Image with a particular Docker build context, building it again and again just to add small files or folders inside the Container might be expensive because usually, Docker Images are of very large sizes. 

Docker provides us with very helpful copy commands which allow us to seamless copy files to and from Docker Containers and Local Systems. In this article, we will discuss how to use the Docker cp commands using practical examples.

 Copying files from Docker Container to Local Machine

Follow the below steps to copy a file from a docker container to a local machine:

Step 1: Create a Docker Container.

sudo docker run -it --name my-container ubuntu
Creating Container

Creating a Container

Step 2: Create a File inside Container

echo "geeksforgeeks" > geeksforgeeks.txt
Creating File

Creating File

Step 3: Get the Container ID

sudo docker start my-container
sudo docker container ls
Copying Container ID

Copying Container ID

Step 4: Copy the file to your Local System

You can use the docker cp command to copy the file.

sudo docker cp 135950565ad8:/geeksforgeeks.txt ~/Desktop/geeksforgeeks.txt

The first path (Source) is the path in the Docker Container and the second one is the path inside your Local System (Destination).

Output

Output

Copying files from Local System to Docker Container

Follow the below steps to copy files from a local machine to the Docker container:

Step 1: Create a file on your local machine

File to copy

File to copy

Step 2: Copy the File to the Container

You can use cp instruction. The path on the left should be on the local machine (Source) and on the right should be of Docker Container (Destination).

sudo docker cp ~/Desktop/to-be-copied.txt 135950565ad8:/to-be-copied.txt
Copy Command

Copy Command

Step 3: Verify the copied file

To start the Container, use the following command.

sudo docker exec -it my-container /bin/bash
Verifying the Output

Verifying the Output

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!