Skip to content

Instantly share code, notes, and snippets.

@binario200
Created May 27, 2016 06:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save binario200/a4a433d038981d68e4f1809fb930587d to your computer and use it in GitHub Desktop.
Save binario200/a4a433d038981d68e4f1809fb930587d to your computer and use it in GitHub Desktop.
//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