Hi
I'm running OS X Sierra, VirtualBox 5.1.26, Vagrant 1.9.7.
Installed this plugin and trying to get a Alpine instance working.
The error is get when running vagrant up is
==> alpine: Configuring and enabling network interfaces...
No guest IP was given to the Vagrant core NFS helper. This is an
internal error that should be reported as a bug.
Using box maier/alpine-3.6-x86_64 I've tried following
config.vm.provider "virtualbox" do |vb|
vb.gui = false
vb.memory = 256
vb.cpus = 1
vb.customize [
'modifyvm', :id,
'--natdnshostresolver1', 'on',
'--nic1', 'nat',
'--cableconnected1', 'on'
]
end
and
config.vm.provider "virtualbox" do |vb|
vb.gui = false
vb.memory = 256
vb.cpus = 1
end
And networking is set as following
alpine.vm.network :private_network, type: "dhcp"
Networking works, but /etc/resolv.conf is empty.
Trying the same stuff with box ubuntu/xenial64 everything works.
Any idea on what I could be doing wrong?
Hi
I'm running OS X Sierra, VirtualBox 5.1.26, Vagrant 1.9.7.
Installed this plugin and trying to get a Alpine instance working.
The error is get when running vagrant up is
Using box
maier/alpine-3.6-x86_64I've tried followingand
And networking is set as following
Networking works, but /etc/resolv.conf is empty.
Trying the same stuff with box
ubuntu/xenial64everything works.Any idea on what I could be doing wrong?