Created
August 20, 2014 00:18
-
-
Save jdstapleton/a3012be27650b1368f2c to your computer and use it in GitHub Desktop.
~/.vagrant.d/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
| Vagrant.configure("2") do |config| | |
| config.vm.synced_folder "~/.m2", "/home/vagrant/.m2" | |
| if Vagrant.has_plugin?("vagrant-cachier") | |
| # Configure cached packages to be shared between instances of the same base box. | |
| # More info on the "Usage" link above | |
| config.cache.scope = :box | |
| config.cache.enable :generic, { | |
| "www" => { cache_dir: "/var/cache/www" }, | |
| } | |
| # If you are using VirtualBox, you might want to use that to enable NFS for | |
| # shared folders. This is also very useful for vagrant-libvirt if you want | |
| # bi-directional sync | |
| #config.cache.synced_folder_opts = { | |
| # type: :nfs, | |
| # # The nolock option can be useful for an NFSv3 client that wants to avoid the | |
| # # NLM sideband protocol. Without this option, apt-get might hang if it tries | |
| # # to lock files needed for /var/cache/* operations. All of this can be avoided | |
| # # by using NFSv4 everywhere. Please note that the tcp option is not the default. | |
| # mount_options: ['rw', 'vers=3', 'tcp', 'nolock'] | |
| #} | |
| end | |
| end |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
vagrant plugin install vagrant-cachier