Created
October 21, 2013 09:34
-
-
Save fh/7081139 to your computer and use it in GitHub Desktop.
how to get vagrant cachier up and runing
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
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