Last active
May 1, 2017 13:22
-
-
Save miguno/4f29ccf115f4997f38c840e9f4afcc82 to your computer and use it in GitHub Desktop.
Mac users only: Create and configure the Docker Machine
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
| # MAC USERS ONLY! | |
| # | |
| # If you haven't done so, create a VM with 6GB of memory as your Docker Machine | |
| # and name it `confluent`. If you already created the `confluent` machine earlier, | |
| # ensure that it is running (`status`) and `start` it if need be. | |
| $ docker-machine create --driver virtualbox --virtualbox-memory 6000 confluent | |
| # Next, configure your terminal window to attach it to your new Docker Machine. | |
| $ eval $(docker-machine env confluent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment