download docker mac code example
Example 1: install docker on mac
softwareupdate --install-rosetta
Example 2: brew install docker
$ brew install docker docker-machine$ brew cask install virtualbox-> need password-> possibly need to address System Preference setting$ docker-machine create --driver virtualbox default$ docker-machine env default$ eval "$(docker-machine env default)"$ docker run hello-world$ docker-machine stop default