How to increase docker-machine memory Mac

后端 未结 7 2126
旧时难觅i
旧时难觅i 2020-11-30 17:12

I am new to Docker, and trying to go through this tutorial setting up MemSQL from a Docker image - http://docs.memsql.com/4.0/setup/docker/ . I am on a Mac, and the tutoria

相关标签:
7条回答
  • 2020-11-30 17:55

    Other answers showed how to change the memory using VBoxManage:

    docker-machine stop default
    VBoxManage modifyvm default --memory 4096
    docker-machine start default
    

    To confirm the change from the command line:

    VBoxManage showvminfo default | grep Memory
    

    OR

    docker-machine ssh default free
    
    0 讨论(0)
提交回复
热议问题