Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created April 23, 2013 01:22
Show Gist options
  • Save eminetto/5440093 to your computer and use it in GitHub Desktop.
Save eminetto/5440093 to your computer and use it in GitHub Desktop.
Vagrantfile para uma máquina
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.network :forwarded_port, guest: 80, host: 8080
config.vm.network :forwarded_port, guest: 3306, host: 3306
config.vm.network :forwarded_port, guest: 5432, host: 5432
config.vm.provision :shell, :path => "install.sh"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment