要在Docker容器中掛載目錄,可以使用-v
或--mount
選項來指定要掛載的目錄。以下是兩種方法:
-v
選項:docker run -v /host/path:/container/path image_name
這個命令將會在容器中掛載/host/path
目錄到/container/path
目錄。
--mount
選項:docker run --mount type=bind,source=/host/path,target=/container/path image_name
這個命令也會將/host/path
目錄掛載到/container/path
目錄。
無論使用哪種方法,都可以在啟動容器時創建一個掛載點,使得容器可以訪問主機的目錄。