Skip to content

Commit

Permalink
Fix Vagrantfile to not always use docker box
Browse files Browse the repository at this point in the history
  • Loading branch information
cblecker committed Oct 14, 2016
1 parent dfa8e53 commit 8ca6309
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision "shell", inline: $script, privileged: false
config.vm.synced_folder '.', '/opt/gopath/src/github.com/hashicorp/terraform'

config.vm.provider "docker" do |v, override|
override.vm.box = "tknerr/baseimage-ubuntu-14.04"
end

["vmware_fusion", "vmware_workstation"].each do |p|
config.vm.provider p do |v|
v.vmx["memsize"] = "4096"
v.vmx["numvcpus"] = "2"
end
end

config.vm.provider "docker" do
config.vm.box = "tknerr/baseimage-ubuntu-14.04"
end

config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 2
Expand Down

0 comments on commit 8ca6309

Please sign in to comment.