I have Docker and Ubuntu ISO on my PC but cannot access Docker hub.
Is it possible to create a docker image from Ubuntu ISO on Windows offline ?
You can import an archive representing that ubuntu image onto your local docker registry with docker save
/docker load
.
If you have one computer having access to Docker hub, pull and then save the Ubuntu image as one archive file, copy it onto an USB key and then on your PC. Load it and you will be able to build your own image FROM ubuntu
.