I need to be able to download Docker images in Linux VMs that are not allowed to have Docker installed. Is that possible ?
Asked
Active
Viewed 4,573 times
1 Answers
5
You can save a Docker image as a tar file in a computer with docker (you always need docker to use a registry. ie dockerhub). save it like this:
docker save -o <path to generated tar file> <image name>:<image tag>
then copy the files using cp or scp
or you could use something like moby project explained in this question before
How do I download Docker images without using the pull command?

MikZuit
- 684
- 5
- 17
-
Thank you. Moby looks very promising! – Alok C. Gupta Jun 03 '20 at 20:29