Created
January 31, 2018 14:19
-
-
Save vi2co/95f6da7faf93aa18d69ab711f0c3a82d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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