Skip to content

Instantly share code, notes, and snippets.

@fh
Created October 21, 2013 09:34
Show Gist options
  • Save fh/7081139 to your computer and use it in GitHub Desktop.
Save fh/7081139 to your computer and use it in GitHub Desktop.
how to get vagrant cachier up and runing
vagrant plugin install vagrant-cachier
cat << 'EOF' > ~/.vagrant.d/Vagrantfile
Vagrant.configure("2") do |config|
config.cache.auto_detect = true
end
EOF
# for composer support: https://github.com/fgrehm/vagrant-cachier/pull/48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment