Skip to content

Instantly share code, notes, and snippets.

@vi2co
Created January 31, 2018 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vi2co/95f6da7faf93aa18d69ab711f0c3a82d to your computer and use it in GitHub Desktop.
Save vi2co/95f6da7faf93aa18d69ab711f0c3a82d to your computer and use it in GitHub Desktop.
Vagrant.configure(2) do |config|
config.ssh.insert_key = false
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
config.vm.define "dns" do |dns|
dns.vm.box = "ubuntu/trusty64"
dns.vm.network :private_network, ip: "10.12.10.5"
end
config.vm.define "tst" do |tst|
tst.vm.box = "ubuntu/trusty64"
tst.vm.network :private_network, ip: "10.12.10.5"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment