From 5cd1b79aaecfd31dedb22f081c2314f07c321544 Mon Sep 17 00:00:00 2001 From: Caroline Salib Canto Date: Wed, 5 Aug 2015 13:50:46 -0300 Subject: [PATCH] Adicionado arquivo Vagrantfile para download da box do ieducar; --- Vagrantfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+), 0 deletions(-) create mode 100755 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100755 index 0000000..08f331b --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,20 @@ + +VAGRANTFILE_API_VERSION = "2" + +Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| + config.vm.box = "ieducar" + config.vm.box = "https://s3-us-west-2.amazonaws.com/portabilis2/public/ieducar/ieducar.box" + + #Compartilhando portas + config.vm.network "forwarded_port", guest: 80, host: 8080 + config.vm.network "forwarded_port", guest: 5433, host: 5433 + +# config.vm.provider "virtualbox" do |v| +# v.gui = true +# v.name = "ieducar" +# v.memory = 1024 +# end + + #Compartilhando pasta do repositório + config.vm.synced_folder ".", "/home/vagrant/ieducar" +end -- libgit2 0.21.2