Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 581 Bytes

docker-install.md

File metadata and controls

39 lines (27 loc) · 581 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 druid-docker