11 lines
349 B
Ruby
11 lines
349 B
Ruby
# 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
|
|
end
|