Created
September 16, 2012 07:06
-
-
Save favrik/3731380 to your computer and use it in GitHub Desktop.
Chess.com Vagrantfile
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::Config.run do |config| | |
config.vm.box = "chessdev" | |
config.vm.guest = :freebsd | |
config.vm.box_url = "http://images.chesscomfiles-4.com/images/package.box" | |
config.vm.network :hostonly, "10.10.10.10" | |
# This makes the VM appear as another physical device on your network, which is perfect | |
# if you need to test on other devices like iphone, android, another desktop/laptop. | |
#config.vm.network :bridged | |
config.vm.share_folder "v-root", "/www/sites/www.c.com", "../", :nfs => true | |
# How much RAM to give to the guest, configure at will | |
#config.vm.customize ["modifyvm", :id, "--memory", "512"] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated my fork again, this time with a shell provisioning script and some other goodies. Not sure what you want to do with any of it but it's there :P