Where are docker images and containers stored when we use it with Windows?

前端 未结 5 1490
遥遥无期
遥遥无期 2020-12-14 17:13

NOTE: Am super new to both Windows and Docker

The tutorial I\'ve been using says that they are under /var/lib/docker/containers if we\'re using Linux, b

5条回答
  •  一整个雨季
    2020-12-14 17:38

    Docker installed on windows with docker toolbox(using virtual box in place of hyper-v) one VM is created on at C:\Users\YOURUSERNAME\.docker\machine\machines with name default so you can find all VM files in default folder.

    you can connect this vm using

    docker-machine ssh

    and you can find pulled images and container under this path (you may need to use sudo sometimes)

    /var/lib/docker

提交回复
热议问题