Last active
April 26, 2018 18:41
-
-
Save steadystatic/efd348795663cd34640f5eb4a0df0588 to your computer and use it in GitHub Desktop.
Install Docker on macOS 10.13.4
This file contains 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
#!/bin/bash | |
## Get Homebrew for Mac ( https://brew.sh ), if you already have 'brew' feel free to skip... | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
## Default driver for Docker, can be changed later | |
brew cask install virtualbox | |
## Docker cli friends | |
brew install docker docker-machine docker-compose boot2docker | |
## boot2docker will run your Docker containers | |
boot2docker init | |
boot2docker up | |
## Create default docker vm | |
docker-machine create --driver virtualbox default | |
# Configure your shell to use the new created Virtual Machine (put in ~/.bash_profile or ~/.zshrc.local, etc.) | |
eval $(docker-machine env default) | |
# To get the IP adress from the machine: | |
# docker-machine ip default | |
# To get the IP adress from the machine: | |
# docker-machine ip default | |
# Test it out by running something! | |
# docker run -it --rm alpine:latest /bin/sh -c "echo Hello world" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create docker-machines for each project if you can, handy things to add to ~/.bash_profile 😀
docker-machine create --driver virtualbox ${your-project-name}
Run
update-docker-hosts
whenever you create a new machine withdocker-machine create
and thenswitch-docker-machine
when you want to switch to that env. Check which machine is active in your shell before running things likedocker-compose up
!