-1

The question is. There is docker with already installed and running images. How can I install new images to another directory? All Internet rummaged, but nothing was found.

Egor Vasilyev
  • 303
  • 2
  • 14

1 Answers1

3

I think the closest to your question is to export the images from the local "docker system" to the filesystem so that it will be possible to load it into local docker image registry in future or possibly transfer to another machine or something.

docker save saves the images into an arbitrary place on the filesystem (you can tell it where to save) Documentation

docker load loads the images Documentation

If you want to find more information about an exact place where the docker manages images, consider reading this thread

Mark Bramnik
  • 39,963
  • 4
  • 57
  • 97