Create Vagrantfile

This commit is contained in:
Oliver Davies 2019-12-05 12:13:21 +00:00
parent 9fa87d4133
commit bbb4a9c666

19
Vagrantfile vendored Normal file
View file

@ -0,0 +1,19 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "geerlingguy/ubuntu1604"
config.vm.hostname = "dransible"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provider "virtualbox" do |vb|
vb.name = 'dransible'
vb.memory = 2048
vb.cpus = 1
end
# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :dransible do |dransible|
end
end