3

I'm currently experimenting with Docker containers on Windows Server. I've created a number of containers, and I want to see where they are actually saved on the host's file system (like a .vhd file for Hyper-V). Is there a default location I can look, or a way to find that out using Docker CLI?

miguelarcilla
  • 1,426
  • 1
  • 20
  • 38

1 Answers1

5

Other answers suggest the data might be stored in:

C:\Users\Public\Documents\Hyper-V\Virtual hard disks\MobyLinuxVM.vhdx

or since the Windows 10 Anniversary Update:

C:\ProgramData\docker\containers

You can find out by entering:

docker info

Credit to / More info:

Community
  • 1
  • 1
TinkerTank
  • 5,685
  • 2
  • 32
  • 41
  • 1
    In case the user is using Hyper-v, and not VirtualBox - this answer is correct. My machine back home is using Virtualbox since Hyper-V is not included in Home editions of windows so take it into account – Yaron Idan Nov 14 '16 at 15:34