Thursday, September 14, 2017

Install docker on windows

1) Download docker for windows and don't install.
2) Restart the machine and enable "Virtualilaization" in BIOS settings
3) Enable "Hyper-V" in control panel/Program and features/Turn on features
4) Restart the server
5) Install docker and restart
6) Start the docker from desktop icon
7) Verify the docker installation by "docker images" or other docker commands

No comments:

Post a Comment

How can instantiate Java interface without implementing.

public interface Foo { String method(); } public class Claaa {    public static void main(String[] args) {     Foo fooByIC...