ERRO
There are errors in the configuration of this machine. Please fix the following errors and try again:
vm:
- The host path of the shared folder is missing: ./configs
///////segue o Vagrant file
Vagrant.configure("2") do |config| config.vm.box = "ubuntu/bionic64" config.vm.network "forwarded_port", guest: 80, host: 8088 config.vm.network "public_network", ip: "192.168.1.24" config.vm.provision "shell",inline: "echo hello, World" config.vm.synced_folder "./configs", "/configs"
end