Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 582 Bytes

docker-install.md

File metadata and controls

40 lines (27 loc) · 582 Bytes

Tutorial

Install Docker (Mac)

Install Homebrew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Install Cask

brew install caskroom/cask/brew-cask

Install Virtualbox

brew update
brew cask install virtualbox

Docker Machine

brew update
brew install docker-machine docker
docker-machine create --driver virtualbox default
eval "$(docker-machine env default)"

Is it working?

docker run hello-world

build imply-docker