要將單個文件掛載到Docker容器的目錄中,可以使用-v
參數來實現。假設我們想將本地文件/path/to/host/file.txt
掛載到容器內的目錄/path/to/container
,可以按照以下步驟進行操作:
-v
參數指定要掛載的文件和目錄的路徑:docker run -v /path/to/host/file.txt:/path/to/container/file.txt <image_name>
這樣就會將本地文件/path/to/host/file.txt
掛載到容器內的/path/to/container/file.txt
目錄中。
docker exec -it <container_id> /bin/bash
ls /path/to/container/
如果能夠看到file.txt
文件,則表示掛載成功。
注意:在使用-v
參數時,要確保本地文件存在并且有讀取權限。