vagrantfile: add support for docker provider

Signed-off-by: Mikhail Ushanov <gm.mephisto@gmail.com>
This commit is contained in:
Mikhail Ushanov 2018-10-12 15:34:17 +03:00
parent 62d6cace47
commit d75bab9523
1 changed files with 6 additions and 0 deletions

6
Vagrantfile vendored
View File

@ -73,6 +73,12 @@ def configureProviders(vmCfg, cpus: "2", memory: "2048")
end
end
vmCfg.vm.provider "docker" do |d, override|
d.build_dir = "."
d.has_ssh = true
override.vm.box = nil
end
return vmCfg
end