2013-08-17から1日間の記事一覧

Getting Started with Vagrant Again..

インストール Vagrantfile # -*- mode: ruby -*- # vi: set ft=ruby : VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "centos6.4-x86_64" config.vm.network :private_network, ip: "192.168.33.1…

Getting Started with Vagrant

クリーンな環境であれこれ試したい時にはやっぱりVM使って、いらなくなったら捨てちゃえばいいよねー。ということでVirtualBox + Vagrantをお試し。 環境 Host: MacBookAir OS X Mountain Lion Guest OS: CentOS 6.4 x86/64 VagrantのBase Boxを探す 今回はh…