Skip to content

Commit

Permalink
Adds vagrant file
Browse files Browse the repository at this point in the history
  • Loading branch information
hollodotme committed Feb 23, 2017
1 parent f4bddc8 commit 24accf4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea/
/.idea/
/.vagrant/
/vendor/
/build/logs/
12 changes: 12 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

# box-config
config.vm.box = "DreiWolt/devops007"

# network-config
config.vm.network :private_network, ip: "192.168.3.13"
config.vm.hostname = "FCGIClient"

end

0 comments on commit 24accf4

Please sign in to comment.