diff options
Diffstat (limited to '')
-rw-r--r-- | Vagrantfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..82a660f --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,10 @@ +Vagrant.configure(2) do |config| + config.vm.hostname = 'netaddr-' + `whoami`.chomp.downcase + config.vm.box = "ubuntu/trusty64" + config.ssh.forward_agent = true + + config.vm.provider "virtualbox" do |v| + v.memory = 1024 + v.cpus = 2 + end +end |