Skip to content
Snippets Groups Projects
Commit e2ec4af1 authored by Mark Charlebois's avatar Mark Charlebois Committed by Lorenz Meier
Browse files

Switched Vagrant to use static IP


MacOS was having isues with DHCP for NFS shared folder

Signed-off-by: default avatarMark Charlebois <charlebm@gmail.com>
parent fb3465c1
No related branches found
No related tags found
No related merge requests found
......@@ -26,16 +26,13 @@ Vagrant.configure(2) do |config|
# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10"
config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Virtualbox requires a private network to use NFS
config.vm.network "private_network", type: "dhcp"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment