5 lines
132 B
Ruby
5 lines
132 B
Ruby
|
Vagrant.configure("2") do |config|
|
||
|
config.vm.box = "debian/buster64"
|
||
|
config.vm.provision "shell", path: "install-docker.sh"
|
||
|
end
|