溫馨提示×

docker怎么復(fù)制文件到容器

小億
884
2024-02-19 16:42:30
欄目: 編程語言

在Docker中復(fù)制文件到容器有兩種方法:

  1. 使用docker cp命令: 使用docker cp命令可以將文件從主機(jī)復(fù)制到容器,語法如下:

    docker cp /path/to/file.txt container_id:/path/to/destination/file.txt
    

    其中/path/to/file.txt為主機(jī)上的文件路徑,container_id為容器的ID,/path/to/destination/file.txt為容器內(nèi)的目標(biāo)路徑。

  2. 使用Dockerfile中的COPY指令: 在Dockerfile中可以使用COPY指令將文件復(fù)制到容器中,語法如下:

    COPY /path/to/file.txt /path/to/destination/file.txt
    

    然后構(gòu)建鏡像并運(yùn)行容器即可將文件復(fù)制到容器內(nèi)。

以上兩種方法都可以實(shí)現(xiàn)將文件復(fù)制到Docker容器中。

0