Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ Build 'virtualbox-iso' errored: ISO download failed.
* Run `vagrant up`
* Run `vagrant ssh` to connect to the server

After the second step in which the box is created, there may be a chance that there is not a Vagrantfile created. If yes, do the following:
* Go to the default vagrant data directory (in windows: `~\.vagrant.d\boxes\`)
* Find your desired box and change your current directory to it. (In this case: `~\.vagrant.d\boxes\devops-appserver\0\virtualbox`)
* If there is already a Vagrantfile there, update it with the missing following lines:
```
Vagrant.configure("2") do |config|
config.vm.box = "devops-appserver"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.synced_folder "../../../../devops-kungfu", "/home/vagrant/devops-kungfu", create: true
end
```
* Then save the file, and now you are good to go with `vagrant up` and then `vagrant ssh`.

## Part II: Cloning, developing, and running the web application

Expand Down