Last active
December 26, 2015 15:59
-
-
Save chokkoyamada/7176957 to your computer and use it in GitHub Desktop.
simple vagrant config ~/Documents/vagrant ᐅ vagrant --version
Vagrant version 1.2.7
~/Documents/vagrant ᐅ ruby -v
ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-darwin12.4.0]
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::configure("2") do |config| | |
config.vm.define :server do |server| | |
server.vm.box = "centos63" | |
server.vm.network :private_network, ip:"192.168.33.11" | |
end | |
config.vm.define :client do |client| | |
client.vm.box = "centos63" | |
client.vm.network :private_network, ip:"192.168.33.12" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment