Create a Docker CE environment on Debian 10

This commit is contained in:
2020-09-04 18:26:22 -04:00
committed by Kris Lamoureux
commit f8238c4690
6 changed files with 185 additions and 0 deletions

4
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,4 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian/buster64"
config.vm.provision "shell", path: "install-docker.sh"
end