Skip to content

Instantly share code, notes, and snippets.

@alvarezgarcia
Created April 12, 2017 01:04
Show Gist options
  • Save alvarezgarcia/e633098781a480e4713e3b4645f1eac5 to your computer and use it in GitHub Desktop.
Save alvarezgarcia/e633098781a480e4713e3b4645f1eac5 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile para Inventory
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "debian/jessie64"
config.vm.provider "virtualbox" do |v|
v.memory = 1024
end
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.network "forwarded_port", guest: 8000, host: 8081
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment