Skip to content

Instantly share code, notes, and snippets.

@sseidenthal
Last active November 13, 2016 18:16
Show Gist options
  • Save sseidenthal/7ded2d0d7fdb595556744268e2a44d41 to your computer and use it in GitHub Desktop.
Save sseidenthal/7ded2d0d7fdb595556744268e2a44d41 to your computer and use it in GitHub Desktop.
create docker machine with some extra specs for vmware fusion
#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