Skip to content

A sample vagrant setup for escaping the clutches of Docker for Mac

Notifications You must be signed in to change notification settings

markomitranic/docker-mac-vagrant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker in Vagrant

This repository automates the provisioning of a Vagrant VM that acts as a hypervisor. In other words, it effortlessly replaces the slow parts of Docker for Mac. Your code runs faster, battery lasts longer and fans spin less - and you don't have to change anything about your projects.

D4M is slow. Primarily because of its osxfs/grpcfuse sharing filesystem. On the other hand, Parallels has their own proprietary fs sharing driver, and it works at almost native speeds. Unfortunately for us all, Vbox and VMWare do not seem to have the same performance.

Setting up

  1. Install and set up vagrant VM:
    ./setup.sh
  2. Set your preferred shared folder in the .env file, for example SHARE_PATH="$HOME/Sites/"
  3. Thats it, start vagrant with vagrant up.
  4. Add the following to VScode Settings:
    "docker.explorerRefreshInterval": 10000,
    "docker.host": "ssh://vagrant@workbox",

Usage

There are various ways to code in this setup. I have outlined my decisions in a thorough article.

Naked

😪 Files Editor/Interpreter Runtime
Host 🔻 🔻
VM 🔻 🔻

You can just go oldschool and keep coding on your local machine. Use your editor of choice. All the files will be sync-ed over to the containers at nearly native speeds. In other words, you run your Docker project as you usually would.

Reminder: You will need however, to have the language you use installed on your machine, if you hope to have intellisense.

Remote Interpreter

💿 Files Editor/Interpreter Runtime
Host 🔻
VM 🔻 🔻 🔻

A better (albeit weird at first) way would be to share the code from your machine to the Parallels VM. Start containers. Refer to Remote coding How-tos section for directions on how to use the editors.

Here's an example - Host computer has no idea what Python is. I start the Docker container with Python inside. I click a button in VSCode, and it magically "teleports" itself into the container. You can now literally code within the container, without ever leaving the comfort of your editor. Of course, the files are on a volume so any changes you make are safely in sync with your local folder.

Container-first

🛰 Files Editor/Interpreter Runtime
Host
VM 🔻 🔻 🔻

Important: Use container-first Branch!

Feeling adventurous? Don't use sharing at all. Provision the VM with your SSH key, and download your projects inside the VM. Use the rest the same as you would in the Remote Interpreter segment above. You will get an insane speed boost since you don't have any shared files between host and the VM - everything is only in VM.

Remote coding How-tos

I have written an extensive article on the topic, in short:

  • VSCode has a built in "Attach to remote Container" capability. It spawns a real editor and you work directly with the native interpreter within the container.
  • JetBrains "thick-ide" products like PHPStorm have a similar capability to be located on your host, but use a remote interpreter from within the container.

About

A sample vagrant setup for escaping the clutches of Docker for Mac

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages