Add Vagrantfile
This commit is contained in:
parent
a0786869e3
commit
e26b687e9a
17
Vagrantfile
vendored
Normal file
17
Vagrantfile
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# -*- 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'
|
||||||
|
end
|
||||||
|
|
||||||
|
# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
|
||||||
|
config.vm.define :dransible do |dransible|
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
Loading…
Reference in a new issue