mirror of
https://github.com/jcwimer/railsVagrant
synced 2026-03-25 02:44:44 +00:00
Initial commit
This commit is contained in:
10
Vagrantfile
vendored
Normal file
10
Vagrantfile
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "ubuntu/trusty64"
|
||||
config.vm.network "public_network"
|
||||
config.vm.network "private_network", ip: "192.168.254.2"
|
||||
config.vm.provider "virtualbox" do |v|
|
||||
v.memory = 2048
|
||||
v.cpus = 2
|
||||
v.name = "railsdev"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user