-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
ixkaito/wocker
#20Labels
Description
Here is my Vagrantfile:
# Vagrantfile for the proxy VM
Vagrant.configure("2") do |config|
config.vm.define "zg-docker-host", primary: true do |dhost|
dhost.vm.box = "ailispaw/docker-root"
dhost.vm.network :private_network, ip: "192.168.100.200"
dhost.vm.provider "virtualbox" do |v|
v.name = "zg-docker-host"
v.memory = 2048
end
dhost.vm.network "forwarded_port", guest: 8080, host: 8080
dhost.vm.network "forwarded_port", guest: 3000, host: 3000
dhost.vm.network "forwarded_port", guest: 3232, host: 3232
dhost.vm.network "forwarded_port", guest: 8888, host: 8888
dhost.vm.network "forwarded_port", guest: 8003, host: 8003
end
end
When I vagrant up I get the following error:
Vagrant attempted to execute the capability 'configure_networks'
on the detect guest OS 'linux', but the guest doesn't
support that capability. This capability is required for your
configuration of Vagrant. Please either reconfigure Vagrant to
avoid this capability or fix the issue by creating the capability.
Reactions are currently unavailable