What is docker image location in Windows 10

I have a Windows 10 Home operating system. I installed the Docker toolbar.

I created a docker image of my main .net application using the following command.

$ docker build -t helloWorld:core . 

Now I want to send this image to another machine. But I do not get the image file.

Can someone tell me where my image will be saved? Or is there any way to specify the docker image path in the docker build command.

+6
source share
3 answers

In Windows 10, right-click the docker icon on the taskbar (right side of the taskbar) and select "Settings" ... In the "Advanced" area, you will see something like:

enter image description here

+5
source
  • Using the docker info .
  • The result - check out the Docker Root Dir

This folder will encode images, containers, ...

enter image description here

+4
source

mine can be found in the folder "C: \ Users \ Public \ Documents \ Hyper-V \ Virtual"

+4
source

Source: https://habr.com/ru/post/1014992/


All Articles