Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in DevOps and Agile by (2.3k points)

I am working from Docker for windows. I have been given the task of 

I have installed Docker for Windows. I have been give the task of working with DOcker of HorstonWorks in Windows 

I downloaded HDP_2.5_docker.tar  from this link: (http://hortonworks.com/downloads/#sandbox)

How do I load this image which is in the tar format? I have tried to use this command :

E:\> docker import HDP_2.5_docker.tar

1 Answer

0 votes
by (6.9k points)
edited by

To use a docker tar image You can make use of Docker load

You can load your image through STDIN or a tar archive like so:

Git bash console:

$ docker load < HDP_2.5_docker.tar

Windows cmd:

$ docker load -i windowsservercore.tar


Want to know how make full use of docker? try out docker training course online.

Browse Categories

...