Fix for new version of API
This commit is contained in:
parent
69881de296
commit
0876a76c61
1 changed files with 2 additions and 2 deletions
|
@ -1,12 +1,12 @@
|
|||
## The Vagrantfile
|
||||
|
||||
```
|
||||
Vagrant::Config.run do |config|
|
||||
Vagrant.configure(2) do |config|
|
||||
# Installs the operating system
|
||||
config.vm.box = 'ubuntu/trusty64'
|
||||
|
||||
# Configures the virtual machine
|
||||
config.vm.network :hostonly, '192.168.111.10'
|
||||
config.vm.network 'private_network', ip: '192.168.111.10'
|
||||
config.vm.synced_folder 'code/', '/home/vagrant/app'
|
||||
|
||||
# Provisions the system
|
||||
|
|
Loading…
Reference in a new issue