Created
May 27, 2016 06:27
-
-
Save binario200/a4a433d038981d68e4f1809fb930587d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//for linux systems check -> https://docs.docker.com/linux/ | |
which curl | |
sudo apt-get update | |
sudo apt-get install curl | |
curl -fsSL https://get.docker.com/ | sh | |
//check for add the user to the docker group to avoid have to run docker with sudo | |
docker run hello-world | |
////// for mac user installation of docker tool | |
https://www.docker.com/products/docker-toolbox | |
// or docker for mac BETA | |
https://beta.docker.com/docs/ | |
// use token xxxxxx | |
docker run hello-world | |
/////// for windows user | |
// windows 10 profesional install the beta | |
https://www.docker.com/products/docker-toolbox | |
//use the tocken | |
docker run hello-world | |
//otherwise use docker tools or check for you specific windows version. | |
// https://docs.docker.com/windows/step_one/ | |
//https://www.docker.com/products/docker-toolbox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment