noname
noname

Reputation: 13

docker container with a local docker image

I am a newbie and I supposed to create a docker container with an image that my friend pass me using a usb drive. I get the procedure to how to create the container after the image is uploaded on my docker (i.e when I can see it with the command docker image ls) but I do not know how to upload this image which is on a usb stick to my docker.

Upvotes: 0

Views: 254

Answers (1)

hichamx
hichamx

Reputation: 824

it's simple as docker load < imageFile.tar

Upvotes: 1

Related Questions