Skip to content

Instantly share code, notes, and snippets.

@favrik
Created September 16, 2012 07:06
Show Gist options
  • Save favrik/3731380 to your computer and use it in GitHub Desktop.
Save favrik/3731380 to your computer and use it in GitHub Desktop.
Chess.com Vagrantfile
# -*- 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
@favrik
Copy link
Author

favrik commented Oct 3, 2012

Added your suggestions @ShonM

@ShonM
Copy link

ShonM commented Oct 4, 2012

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment