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

containers, docker, image, windows

Solution

Enter docker-machine with

docker-machine ssh 

there you should find your containers.

sudo ls /var/lib/docker/containers

Problem

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, but I can't seem to find that on my Windows machine. Thanks!

Original source

Related problems