vagrant/Vagrantfile

11 lines
349 B
Ruby
Raw Normal View History

2014-08-08 19:30:06 +00:00
# This Vagrantfile can be used to develop Vagrant. Note that VirtualBox
# doesn't run in VirtualBox so you can't actually _run_ Vagrant within
# the VM created by this Vagrantfile, but you can use it to develop the
# Ruby, run unit tests, etc.
Vagrant.configure("2") do |config|
config.vm.provider "docker" do |d|
d.image = "nginx"
end
2014-08-08 19:30:06 +00:00
end