在Docker中復(fù)制文件到容器有兩種方法:
使用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)路徑。
使用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容器中。