添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
乐观的甘蔗  ·  山东东明石化集团·  2 月前    · 
叛逆的豌豆  ·  AttributeError: ...·  4 月前    · 
求醉的胡萝卜  ·  Server-Sent Events ...·  8 月前    · 
非常酷的皮蛋  ·  [Solved] All python ...·  8 月前    · 

I have a simple quection.
I just start a new container with a new volume in windows:

docker run --name web1 -v htmlvol:/usr/share/nginx/html -p 80:80 -d nginx

I see that new volume was created:

PS C:\Temp\project> docker volume ls
DRIVER VOLUME NAME
local htmlvol

But I can’t find this directory.
PS C:\Temp\project> docker volume inspect htmlvol
“CreatedAt”: “2023-07-21T19:50:09Z”,
“Driver”: “local”,
“Labels”: null,
“Mountpoint”: “/var/lib/docker/volumes/htmlvol/_data”,
“Name”: “htmlvol”,
“Options”: null,
“Scope”: “local”

I see that mountpoint is /var/lib/docker/volumes/htmlvol/_data

But how can I get to this place and to change something?

I was trying to find this folder on c:\ but i cant find it.

Is it possible to find and use this folder on this pc?