Last active
November 13, 2016 18:16
-
-
Save sseidenthal/7ded2d0d7fdb595556744268e2a44d41 to your computer and use it in GitHub Desktop.
create docker machine with some extra specs for vmware fusion
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
#https://docs.docker.com/machine/drivers/vm-fusion/ | |
#vmwarefusion | |
docker-machine create --driver vmwarefusion \ | |
--vmwarefusion-cpu-count 4 \ | |
--vmwarefusion-disk-size 200000 \ | |
--vmwarefusion-memory-size 4096 \ | |
default | |
#virtualbox | |
docker-machine create --driver virtualbox \ | |
--virtualbox-cpu-count 4 \ | |
--virtualbox-disk-size 200000 \ | |
--virtualbox-memory 4096 \ | |
default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment