将文件从Docker容器复制到主机

问题描述 投票:1197回答:15

我正在考虑使用Docker在持续集成(CI)服务器上构建我的依赖项,这样我就不必在代理本身上安装所有运行时和库。

为了实现这一点,我需要将容器内部构建的构建工件复制回主机。那可能吗?

docker docker-container file-copying
15个回答
2281
投票

要将文件从容器复制到主机,可以使用该命令

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

这是一个例子:

$ sudo docker cp goofy_roentgen:/out_read.jpg .

这里goofy_roentgen是我从以下命令获得的名称:

$ 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

4
投票

3
投票

如果您只想从图像(而不是正在运行的容器)中提取文件,则可以执行以下操作:

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

这将打开容器,写入新文件,然后删除容器。但是,一个缺点是不保留文件权限和修改日期。


2
投票

我使用PowerShell(Admin)使用此命令。

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

docker cp ff3a6608467d:/var/www/app/error.html  C:\\error.html

0
投票

创建要复制文件的路径,然后使用:

docker run -d -v hostpath:dockerimag

0
投票

如果您只想安装一个文件夹,而不是为容器创建特殊存储空间,则可以使用bind而不是volume

  1. 使用标记构建您的图像: docker build . -t <image>
  2. 运行您的映像并绑定当前的$(pwd)目录,其中app.py存储并将其映射到容器内的/ root / example /。 docker run --mount type=bind,source="$(pwd)",target=/root/example/ <image> python app.py

-1
投票

在主机系统(容器外部)上创建一个数据目录,并将其挂载到容器内可见的目录中。这会将文件放在主机系统上的已知位置,并使主机系统上的工具和应用程序可以轻松访问这些文件

docker run -d -v /path/to/Local_host_dir:/path/to/docker_dir docker_image:tag

79
投票

你不需要使用docker run

你可以用docker create做到这一点

从文档中,docker create命令在指定的映像上创建可写容器层,并准备运行指定的命令。然后将容器ID打印到STDOUT。这类似于docker run -d,但容器从未启动过。

所以,你可以做到

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

在这里,你永远不会启动容器。这看起来对我有益。


79
投票

挂载“卷”并将工件复制到那里:

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

然后,当构建完成且容器不再运行时,它已经将构建中的工件复制到主机上的artifacts目录中。

Edit

警告:执行此操作时,您可能会遇到与当前正在运行的用户的用户ID匹配的docker用户的用户ID问题。也就是说,/artifacts中的文件将显示为用户拥有的Docker容器内使用的用户的UID。解决这个问题的方法可能是使用调用用户的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

23
投票

装载卷,复制工件,调整所有者ID和组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 -u)
chown -R $(id -u):$(id -u) /mnt/artifacts
COMMANDS

19
投票

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与主机卷,chown神器,cp神器到主机卷:

$ 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

这个技巧有效,因为chown中的heredoc调用从运行容器外部获取$(id -u):$(id -g)值;即,码头主机。

好处是:

  • 你以前没有docker container run --namedocker container create --name
  • 之后你没有docker container rm

14
投票

如果您没有正在运行的容器,只有图像,并且假设您只想复制文本文件,则可以执行以下操作:

docker run the-image cat path/to/container/file.txt > path/to/host/file.txt

12
投票

大多数答案并不表示容器必须在docker cp工作之前运行:

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

7
投票

我正在为使用Docker for Mac的任何人发布这个。这对我有用:

 $ mkdir mybackup # local directory on Mac

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

请注意,当我使用-v挂载时,会自动创建backup目录。

我希望有一天这对某人有用。 :)


4
投票

作为更一般的解决方案,there's a CloudBees plugin for Jenkins to build inside a Docker container。您可以从Docker注册表中选择要使用的映像,或者定义要构建和使用的Dockerfile。

它会将工作区作为卷(使用适当的用户)安装到容器中,将其设置为工作目录,执行您请求的任何命令(在容器内)。您还可以使用docker-workflow插件(如果您更喜欢基于UI的代码)使用image.inside(){}命令执行此操作。

基本上所有这些,烘焙到您的CI / CD服务器然后一些。

© www.soinside.com 2019 - 2024. All rights reserved.