Skip to content

Instantly share code, notes, and snippets.

@brett-miller
Last active August 9, 2018 05:40
Show Gist options
  • Save brett-miller/96ed448ee213a949c22c9ad289e6ccce to your computer and use it in GitHub Desktop.
Save brett-miller/96ed448ee213a949c22c9ad289e6ccce to your computer and use it in GitHub Desktop.
Install docker mac
echo 'Downloading Docker...'
curl https://download.docker.com/mac/stable/Docker.dmg -O
echo 'Installing Docker...'
hdiutil attach -nobrowse Docker.dmg
echo 'Copying files...'
cp -r /Volumes/Docker/Docker.App /Applications/Docker.App
echo 'Cleaning up...'
hdiutil detach /Volumes/Docker
rm Docker.dmg
echo 'Complete! Opening Docker App'
open /Applications/Docker.App
@brett-miller
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment