在使用Docker時,可以使用-v
選項來將主機上的單個文件掛載到容器中。
假設要將主機上的/path/to/host/file
文件掛載到容器中的/path/to/container/file
位置,可以使用以下命令:
docker run -v /path/to/host/file:/path/to/container/file image_name
其中,image_name
是要運行的Docker鏡像的名稱。
當容器運行時,/path/to/container/file
將指向主機上的/path/to/host/file
文件。這意味著對于容器中的任何操作,實際上都是對該文件在主機上的操作。