Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.16 KB

mac-docker.md

File metadata and controls

50 lines (43 loc) · 1.16 KB

Fix slow docker on macOS

With this step-by-step instruction you can enjoy high speed docker on macOS

  1. Run recovery mode (Restart then cmd+R)
  2. Open Utils->terminal
  3. Run command
    spctl kext-consent add VB5E2TV963
  4. Restart mac
  5. Download and install virtualbox
  6. Open terminal and run
    brew install docker docker-machine docker-machine-nfs
  7. Run
    docker-machine create --driver virtualbox default
  8. If docker machine already created then run
    docker-machine rm default
    docker-machine create --driver virtualbox default
  9. Run
    docker-machine-nfs default

If you see this warning

exports:3: exported dir/fs mismatch: /Users /System/Volumes/Data

Then you should run docker-machine like this

docker-machine-nfs default --shared-folder=/System/Volumes/Data/Users --force

As result you should see this

 The docker-machine 'default'
 is now mounted with NFS!

 ENJOY high speed mounts :D