Downloading docker image for transfer to non-internet-connected machine
Short: use the save CLI command. https://docs.docker.com/engine/reference/commandline/save/ You can pull the image on a computer that have access to the internet. sudo docker pull ubuntu Then you can save this image to a file sudo docker save -o ubuntu_image.docker ubuntu Transfer the file on the offline computer (USB/CD/whatever) and load the image from the file: … Read more