-v
或 --volume
参数来挂载数据卷。
例如,如果要将当前主机的 /host/path
目录挂载到容器内的 /container/path
目录,可以使用以下命令:docker run -v /host/path:/container/path image_name
--mount
参数来挂载数据卷。
例如,如果要将一个本地目录挂载到容器中,并设置读写权限,可以使用以下命令:docker run --mount type=bind,source=/host/path,target=/container/path,readonly=false image_name
docker exec
命令来挂载一个新卷。
例如,如果要将一个本地主机的目录挂载到正在运行的容器中,可以使用以下命令:docker exec -it container_id mount --bind /host/path /container/path
无论使用哪种方法,挂载后即可在容器中访问本地主机上的数据。