Last active
August 9, 2018 05:40
-
-
Save brett-miller/96ed448ee213a949c22c9ad289e6ccce to your computer and use it in GitHub Desktop.
Install docker mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
run in terminal:
bash <(curl -s https://gist.githubusercontent.com/brett-miller/96ed448ee213a949c22c9ad289e6ccce/raw)