2093

I'm thinking of using Docker to build my dependencies on a Continuous Integration (CI) server, so that I don't have to install all the runtimes and libraries on the agents themselves.

To achieve this I would need to copy the build artifacts that are built inside the container back into the host. Is that possible?

Promise Preston
  • 8,732
  • 5
  • 43
  • 70
user2668128
  • 29,912
  • 8
  • 23
  • 30
  • you guys might like my hacker method here: https://stackoverflow.com/a/55876794/990618 – colin lamarre Apr 27 '19 at 03:17
  • 1
    The correct and actual answer from docker captain at the bottom of answers. – burtsevyg Dec 17 '19 at 11:53
  • 1
    with latest version of docker , you can use the buildkit `--output` option `DOCKER_BUILDKIT=1 docker build -f Dockerfile --target=testresult --output out` https://github.com/moby/buildkit#local-directory – Alex Punnen Nov 06 '20 at 05:31
  • 1
    Just to add to Alex's answer: `DOCKER_BUILDKIT=1` is an environment setting - to use buildkit as the build engine you must have `DOCKER_BUILDKIT` set to `1`. More info on Docker's website: https://docs.docker.com/engine/reference/builder/#buildkit – Ryan Barrett Mar 13 '21 at 21:03

21 Answers21

3585

In order to copy a file from a container to the host, you can use the command

docker cp <containerId>:/file/path/within/container /host/path/target

Here's an example:

$ sudo docker cp goofy_roentgen:/out_read.jpg .

Here goofy_roentgen is the container name I got from the following command:

$ sudo docker ps

CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS                                            NAMES
1b4ad9311e93        bamos/openface      "/bin/bash"         33 minutes ago      Up 33 minutes       0.0.0.0:8000->8000/tcp, 0.0.0.0:9000->9000/tcp   goofy_roentgen

You can also use (part of) the Container ID. The following command is equivalent to the first

$ sudo docker cp 1b4a:/out_read.jpg .
GM 180
  • 19
  • 6
creack
  • 98,809
  • 12
  • 89
  • 71
  • 52
    Here's a handy way to get at your latest container if you're simply using docker for a temp Linux environment: `docker ps -alq`. – Josh Habdas Jun 03 '15 at 15:29
  • 46
    this cp command works *as-is* for copying directory trees as well (not just a single file). – ecoe Dec 30 '15 at 18:45
  • 1
    This solution works in case for non-root docker user, who can't sudo in docker. – Robin Loxley Feb 19 '16 at 08:58
  • 92
    In newer versions of docker you _can_ copy bidirectionally (host to container or container to host) with `docker cp ...` – Freedom_Ben Jun 18 '16 at 21:01
  • 15
    I needed `docker cp -L` to copy symlinks – Harrison Powers Jul 26 '16 at 19:07
  • As of docker 1.11.2, if you copy from one container to another directly, you get the error message `copying between containers is not supported`. – haridsv Jul 29 '16 at 12:48
  • 38
    NOTE: the container does not have to be running to use the cp command. Handy if your container constantly crashes. – Martlark May 24 '17 at 02:08
  • It's better to use the last version of docker commands. ``docker container ...`` – Phoenix Oct 14 '19 at 07:43
  • I couldn't copy a file using `~/path`, I had to use the full path (`/root/path`) (you can get it with the `pwd` command) – Astariul Oct 15 '19 at 00:23
  • getting this error ```Error response from daemon: error processing tar file: docker-tar: relocation error: /lib/x86_64-linux-gnu/libnss_files.so.2: symbol __libc_readline_unlocked, version GLIBC_PRIVATE not defined in file libc.so.6 with link time reference``` – keshav Nov 20 '19 at 07:13
  • Any idea how to do this in GCP cloud shell? I don't have the image in docker ps but I have the image URL from the cloud run service which I access using docker run -it --entrypoint sh {image}. Thanks – user147529 Sep 08 '20 at 10:54
  • Also works using name and/or tags, instead of ids – Vassilis Apr 15 '21 at 10:42
  • How about if I want to do the same from inside the container? – Mansi May 06 '21 at 09:34
375

You do not need to use docker run.

You can do it with docker create.

From the docs:

The docker create command creates a writeable container layer over the specified image and prepares it for running the specified command. The container ID is then printed to STDOUT. This is similar to docker run -d except the container is never started.

So, you can do:

docker create -ti --name dummy IMAGE_NAME bash
docker cp dummy:/path/to/file /dest/to/file
docker rm -f dummy

Here, you never start the container. That looked beneficial to me.

Pang
  • 8,605
  • 144
  • 77
  • 113
Ishan Bhatt
  • 5,940
  • 5
  • 16
  • 37
  • 35
    This needs more upvotes. Great for when you just need to build something in a container and then copy the outputs. – Honza Kalfus Jan 25 '19 at 12:06
  • 6
    @HonzaKalfus I agree this needs to be higher. This is exactly what I was after. I used this so that I could build some binary files using a known environment (amazon linux at a specific version). was able to make a shell script that fully built the docker and extracted the resultant binary from it! Perfect. – Mark Jul 03 '19 at 07:52
  • 2
    Is `-ti` required and `bash` required? – jII Oct 18 '19 at 16:13
  • @jII, I had done it because later on, I do docker run on it. In simple cases, it is not needed but it doesn't harm here too. – Ishan Bhatt Oct 19 '19 at 01:56
  • This answer is great for build pipelines like in Azure so you don't have to try and find out what the container id ended up being. – adam0101 Feb 11 '20 at 22:21
  • Thank you very much. This helped me today in exporting JUnit test results outside of the container to the local filesystem. =) – Ken Flake Dec 01 '20 at 13:18
97

Mount a "volume" and copy the artifacts into there:

mkdir artifacts
docker run -i -v ${PWD}/artifacts:/artifacts ubuntu:14.04 sh << COMMANDS
# ... build software here ...
cp <artifact> /artifacts
# ... copy more artifacts into `/artifacts` ...
COMMANDS

Then when the build finishes and the container is no longer running, it has already copied the artifacts from the build into the artifacts directory on the host.

Edit

Caveat: When you do this, you may run into problems with the user id of the docker user matching the user id of the current running user. That is, the files in /artifacts will be shown as owned by the user with the UID of the user used inside the docker container. A way around this may be to use the calling user's UID:

docker run -i -v ${PWD}:/working_dir -w /working_dir -u $(id -u) \
    ubuntu:14.04 sh << COMMANDS
# Since $(id -u) owns /working_dir, you should be okay running commands here
# and having them work. Then copy stuff into /working_dir/artifacts .
COMMANDS
Andry
  • 14,281
  • 23
  • 124
  • 216
djhaskin987
  • 8,513
  • 1
  • 45
  • 81
31

TLDR;

$ docker run --rm -iv${PWD}:/host-volume my-image sh -s <<EOF
chown $(id -u):$(id -g) my-artifact.tar.xz
cp -a my-artifact.tar.xz /host-volume
EOF

Description

docker run with a host volume, chown the artifact, cp the artifact to the host volume:

$ docker build -t my-image - <<EOF
> FROM busybox
> WORKDIR /workdir
> RUN touch foo.txt bar.txt qux.txt
> EOF
Sending build context to Docker daemon  2.048kB
Step 1/3 : FROM busybox
 ---> 00f017a8c2a6
Step 2/3 : WORKDIR /workdir
 ---> Using cache
 ---> 36151d97f2c9
Step 3/3 : RUN touch foo.txt bar.txt qux.txt
 ---> Running in a657ed4f5cab
 ---> 4dd197569e44
Removing intermediate container a657ed4f5cab
Successfully built 4dd197569e44

$ docker run --rm -iv${PWD}:/host-volume my-image sh -s <<EOF
chown -v $(id -u):$(id -g) *.txt
cp -va *.txt /host-volume
EOF
changed ownership of '/host-volume/bar.txt' to 10335:11111
changed ownership of '/host-volume/qux.txt' to 10335:11111
changed ownership of '/host-volume/foo.txt' to 10335:11111
'bar.txt' -> '/host-volume/bar.txt'
'foo.txt' -> '/host-volume/foo.txt'
'qux.txt' -> '/host-volume/qux.txt'

$ ls -n
total 0
-rw-r--r-- 1 10335 11111 0 May  7 18:22 bar.txt
-rw-r--r-- 1 10335 11111 0 May  7 18:22 foo.txt
-rw-r--r-- 1 10335 11111 0 May  7 18:22 qux.txt

This trick works because the chown invocation within the heredoc the takes $(id -u):$(id -g) values from outside the running container; i.e., the docker host.

The benefits are:

  • you don't have to docker container run --name or docker container create --name before
  • you don't have to docker container rm after
Andry
  • 14,281
  • 23
  • 124
  • 216
rubicks
  • 3,733
  • 1
  • 25
  • 33
  • 2
    Upvoted for the comparison between `cp` and volume-based answers. Also, for the `id` trick for ownership, that is a real headache sometimes – Marc Jan 23 '19 at 18:47
30

Mount a volume, copy the artifacts, adjust owner id and group id:

mkdir artifacts
docker run -i --rm -v ${PWD}/artifacts:/mnt/artifacts centos:6 /bin/bash << COMMANDS
ls -la > /mnt/artifacts/ls.txt
echo Changing owner from \$(id -u):\$(id -g) to $(id -u):$(id -g)
chown -R $(id -u):$(id -g) /mnt/artifacts
COMMANDS

EDIT: Note that some of the commands like $(id -u) are backslashed and will therefore be processed within the container, while the ones that are not backslashed will be processed by the shell being run in the host machine BEFORE the commands are sent to the container.

Dimchansky
  • 557
  • 4
  • 5
  • 1
    Edited to add a clarification of something I almost missed. BTW I'm not sure why you're changing it to user:user instead of user:group but otherwise looks good! – Stephen Aug 20 '20 at 20:41
21

Most of the answers do not indicate that the container must run before docker cp will work:

docker build -t IMAGE_TAG .
docker run -d IMAGE_TAG
CONTAINER_ID=$(docker ps -alq)
# If you do not know the exact file name, you'll need to run "ls"
# FILE=$(docker exec CONTAINER_ID sh -c "ls /path/*.zip")
docker cp $CONTAINER_ID:/path/to/file .
docker stop $CONTAINER_ID
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
cmcginty
  • 101,562
  • 37
  • 148
  • 155
  • 5
    BTW, Whether the container *must/may* be *running/stopped/either* seems to depend on *type of host/virtualization-technique*. [Current docker doc](https://docs.docker.com/engine/reference/commandline/cp/) says "The CONTAINER can be a running or stopped container.". Multiple places on SO, including a comment on the accepted answer, say "this also works on a stopped container". Under `Windows Hyper-V`, it is apparently *necessary* to [stop container before copying a file](http://get-cmd.com/?p=4980). – ToolmakerSteve Apr 03 '19 at 11:11
20

If you don't have a running container, just an image, and assuming you want to copy just a text file, you could do something like this:

docker run the-image cat path/to/container/file.txt > path/to/host/file.txt
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
cancerbero
  • 5,662
  • 1
  • 26
  • 18
  • This would copy the file from one spot in the container to somewhere else in the container. Unless you mount a folder from the host as a volume, in which case path after `>` would not necessarily be the path on the host. – falsePockets Jan 11 '21 at 06:40
11

With the release of Docker 19.03, you can skip creating the container and even building an image. There's an option with BuildKit based builds to change the output destination. You can use this to write the results of the build to your local directory rather than into an image. E.g. here's a build of a go binary:

$ ls
Dockerfile  go.mod  main.go

$ cat Dockerfile
FROM golang:1.12-alpine as dev
RUN apk add --no-cache git ca-certificates
RUN adduser -D appuser
WORKDIR /src
COPY . /src/
CMD CGO_ENABLED=0 go build -o app . && ./app

FROM dev as build
RUN CGO_ENABLED=0 go build -o app .
USER appuser
CMD [ "./app" ]

FROM scratch as release
COPY --from=build /etc/passwd /etc/group /etc/
COPY --from=build /src/app /app
USER appuser
CMD [ "/app" ]

FROM scratch as artifact
COPY --from=build /src/app /app

FROM release

From the above Dockerfile, I'm building the artifact stage that only includes the files I want to export. And the newly introduced --output flag lets me write those to a local directory instead of an image. This needs to be performed with the BuildKit engine that ships with 19.03:

$ DOCKER_BUILDKIT=1 docker build --target artifact --output type=local,dest=. .
[+] Building 43.5s (12/12) FINISHED
 => [internal] load build definition from Dockerfile                                                                              0.7s
 => => transferring dockerfile: 572B                                                                                              0.0s
 => [internal] load .dockerignore                                                                                                 0.5s
 => => transferring context: 2B                                                                                                   0.0s
 => [internal] load metadata for docker.io/library/golang:1.12-alpine                                                             0.9s
 => [dev 1/5] FROM docker.io/library/golang:1.12-alpine@sha256:50deab916cce57a792cd88af3479d127a9ec571692a1a9c22109532c0d0499a0  22.5s
 => => resolve docker.io/library/golang:1.12-alpine@sha256:50deab916cce57a792cd88af3479d127a9ec571692a1a9c22109532c0d0499a0       0.0s
 => => sha256:1ec62c064901392a6722bb47a377c01a381f4482b1ce094b6d28682b6b6279fd 155B / 155B                                        0.3s
 => => sha256:50deab916cce57a792cd88af3479d127a9ec571692a1a9c22109532c0d0499a0 1.65kB / 1.65kB                                    0.0s
 => => sha256:2ecd820bec717ec5a8cdc2a1ae04887ed9b46c996f515abc481cac43a12628da 1.36kB / 1.36kB                                    0.0s
 => => sha256:6a17089e5a3afc489e5b6c118cd46eda66b2d5361f309d8d4b0dcac268a47b13 3.81kB / 3.81kB                                    0.0s
 => => sha256:89d9c30c1d48bac627e5c6cb0d1ed1eec28e7dbdfbcc04712e4c79c0f83faf17 2.79MB / 2.79MB                                    0.6s
 => => sha256:8ef94372a977c02d425f12c8cbda5416e372b7a869a6c2b20342c589dba3eae5 301.72kB / 301.72kB                                0.4s
 => => sha256:025f14a3d97f92c07a07446e7ea8933b86068d00da9e252cf3277e9347b6fe69 125.33MB / 125.33MB                               13.7s
 => => sha256:7047deb9704134ff71c99791be3f6474bb45bc3971dde9257ef9186d7cb156db 125B / 125B                                        0.8s
 => => extracting sha256:89d9c30c1d48bac627e5c6cb0d1ed1eec28e7dbdfbcc04712e4c79c0f83faf17                                         0.2s
 => => extracting sha256:8ef94372a977c02d425f12c8cbda5416e372b7a869a6c2b20342c589dba3eae5                                         0.1s
 => => extracting sha256:1ec62c064901392a6722bb47a377c01a381f4482b1ce094b6d28682b6b6279fd                                         0.0s
 => => extracting sha256:025f14a3d97f92c07a07446e7ea8933b86068d00da9e252cf3277e9347b6fe69                                         5.2s
 => => extracting sha256:7047deb9704134ff71c99791be3f6474bb45bc3971dde9257ef9186d7cb156db                                         0.0s
 => [internal] load build context                                                                                                 0.3s
 => => transferring context: 2.11kB                                                                                               0.0s
 => [dev 2/5] RUN apk add --no-cache git ca-certificates                                                                          3.8s
 => [dev 3/5] RUN adduser -D appuser                                                                                              1.7s
 => [dev 4/5] WORKDIR /src                                                                                                        0.5s
 => [dev 5/5] COPY . /src/                                                                                                        0.4s
 => [build 1/1] RUN CGO_ENABLED=0 go build -o app .                                                                              11.6s
 => [artifact 1/1] COPY --from=build /src/app /app                                                                                0.5s
 => exporting to client                                                                                                           0.1s
 => => copying files 10.00MB                                                                                                      0.1s

After the build was complete the app binary was exported:

$ ls
Dockerfile  app  go.mod  main.go

$ ./app
Ready to receive requests on port 8080

Docker has other options to the --output flag documented in their upstream BuildKit repo: https://github.com/moby/buildkit#output

BMitch
  • 148,146
  • 27
  • 334
  • 317
9

I am posting this for anyone that is using Docker for Mac. This is what worked for me:

 $ mkdir mybackup # local directory on Mac

 $ docker run --rm --volumes-from <containerid> \
    -v `pwd`/mybackup:/backup \  
    busybox \                   
    cp /data/mydata.txt /backup 

Note that when I mount using -v that backup directory is automatically created.

I hope this is useful to someone someday. :)

Paul
  • 2,049
  • 2
  • 23
  • 26
  • If you use docker-compose, volumes-from is deprecated in version 3 and after. – Alejandro Galera Apr 26 '18 at 09:11
  • To add to mulg0r's comment, see https://stackoverflow.com/a/45495380/199364 - in v.3, you place a `volumes` command at root of config.yml, for volumes to be accessible by multiple containers. – ToolmakerSteve Apr 03 '19 at 11:20
6
docker run -dit --rm IMAGE
docker cp CONTAINER:SRC_PATH DEST_PATH

https://docs.docker.com/engine/reference/commandline/run/ https://docs.docker.com/engine/reference/commandline/cp/

shuaihanhungry
  • 399
  • 4
  • 6
6

I used PowerShell (Admin) with this command.

docker cp {container id}:{container path}/error.html  C:\\error.html

Example

docker cp ff3a6608467d:/var/www/app/error.html  C:\\error.html
Khachornchit Songsaen
  • 1,778
  • 18
  • 15
5

If you just want to pull a file from an image (instead of a running container) you can do this:

docker run --rm <image> cat <source> > <local_dest>

This will bring up the container, write the new file, then remove the container. One drawback, however, is that the file permissions and modified date will not be preserved.

s g
  • 4,057
  • 6
  • 39
  • 67
5

Another good option is first build the container and then run it using the -c flag with the shell interpreter to execute some commads

docker run --rm -i -v <host_path>:<container_path> <mydockerimage> /bin/sh -c "cp -r /tmp/homework/* <container_path>"

The above command does this:

-i = run the container in interactive mode

--rm = removed the container after the execution.

-v = shared a folder as volume from your host path to the container path.

Finally, the /bin/sh -c lets you introduce a command as a parameter and that command will copy your homework files to the container path.

I hope this additional answer may help you

Yor Jaggy
  • 185
  • 2
  • 7
4

As a more general solution, there's a CloudBees plugin for Jenkins to build inside a Docker container. You can select an image to use from a Docker registry or define a Dockerfile to build and use.

It'll mount the workspace into the container as a volume (with appropriate user), set it as your working directory, do whatever commands you request (inside the container). You can also use the docker-workflow plugin (if you prefer code over UI) to do this, with the image.inside() {} command.

Basically all of this, baked into your CI/CD server and then some.

BobMcGee
  • 18,846
  • 9
  • 41
  • 54
2

Create a data directory on the host system (outside the container) and mount this to a directory visible from inside the container. This places the files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files

docker run -d -v /path/to/Local_host_dir:/path/to/docker_dir docker_image:tag
Innocent Anigbo
  • 3,130
  • 1
  • 13
  • 17
2
sudo docker cp <running_container_id>:<full_file_path_in_container> <path_on_local_machine>

Example :

sudo docker cp d8a17dfc455f:/tests/reports /home/acbcb/Documents/abc
Shivam Bharadwaj
  • 1,130
  • 14
  • 17
1
docker cp containerId:source_path destination_path

containerId can be obtained from the command docker ps -a

source path should be absolute. for example, if the application/service directory starts from the app in your docker container the path would be /app/some_directory/file

example : docker cp d86844abc129:/app/server/output/server-test.png C:/Users/someone/Desktop/output

0

Create a path where you want to copy the file and then use:

docker run -d -v hostpath:dockerimag
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Chandra Pal
  • 219
  • 2
  • 2
0

You can use bind instead of volume if you want to mount only one folder, not create special storage for a container:

  1. Build your image with tag :

    docker build . -t <image>

  2. Run your image and bind current $(pwd) directory where app.py stores and map it to /root/example/ inside your container.

    docker run --mount type=bind,source="$(pwd)",target=/root/example/ <image> python app.py

zytfo
  • 31
  • 2
0

This can also be done in the SDK for example python. If you already have a container built you can lookup the name via console ( docker ps -a ) name seems to be some concatenation of a scientist and an adjective (i.e. "relaxed_pasteur").

Check out help(container.get_archive) :

Help on method get_archive in module docker.models.containers:

get_archive(path, chunk_size=2097152) method of docker.models.containers.Container instance
    Retrieve a file or folder from the container in the form of a tar
    archive.

    Args:
        path (str): Path to the file or folder to retrieve
        chunk_size (int): The number of bytes returned by each iteration
            of the generator. If ``None``, data will be streamed as it is
            received. Default: 2 MB

    Returns:
        (tuple): First element is a raw tar data stream. Second element is
        a dict containing ``stat`` information on the specified ``path``.

    Raises:
        :py:class:`docker.errors.APIError`
            If the server returns an error.

    Example:

        >>> f = open('./sh_bin.tar', 'wb')
        >>> bits, stat = container.get_archive('/bin/sh')
        >>> print(stat)
        {'name': 'sh', 'size': 1075464, 'mode': 493,
         'mtime': '2018-10-01T15:37:48-07:00', 'linkTarget': ''}
        >>> for chunk in bits:
        ...    f.write(chunk)
        >>> f.close()

So then something like this will pull out from the specified path ( /output) in the container to your host machine and unpack the tar.

import docker
import os
import tarfile

# Docker client
client = docker.from_env()
#container object
container = client.containers.get("relaxed_pasteur")
#setup tar to write bits to
f = open(os.path.join(os.getcwd(),"output.tar"),"wb")
#get the bits
bits, stat = container.get_archive('/output')
#write the bits
for chunk in bits:
    f.write(chunk)
f.close()
#unpack
tar = tarfile.open("output.tar")
tar.extractall()
tar.close()
John Drinane
  • 595
  • 6
  • 20
0

If you use podman/buildah1, it offers greater flexibility for copying files from a container to the host because it allows you to mount the container.

After you create the container as in this answer

podman create --name dummy IMAGE_NAME

Now we can mount the entire container, and then we use the cp utility found in almost every linux box to copy the contents of /etc/foobar from the container (dummy), into /tmp on our host machine. All this can be done rootless. Observe:

$ podman unshare -- bash -c '
  mnt=$(podman mount dummy)
  cp -R ${mnt}/etc/foobar /tmp
  podman umount dummy
'

1. podman uses buildah internally, and they also share almost the same api

smac89
  • 26,360
  • 11
  • 91
  • 124