Commit 5cd1b79aaecfd31dedb22f081c2314f07c321544
1 parent
7759b584
Exists in
master
Adicionado arquivo Vagrantfile para download da box do ieducar;
Showing
1 changed file
with
20 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,20 @@ | @@ -0,0 +1,20 @@ | ||
1 | + | ||
2 | +VAGRANTFILE_API_VERSION = "2" | ||
3 | + | ||
4 | +Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
5 | + config.vm.box = "ieducar" | ||
6 | + config.vm.box = "https://s3-us-west-2.amazonaws.com/portabilis2/public/ieducar/ieducar.box" | ||
7 | + | ||
8 | + #Compartilhando portas | ||
9 | + config.vm.network "forwarded_port", guest: 80, host: 8080 | ||
10 | + config.vm.network "forwarded_port", guest: 5433, host: 5433 | ||
11 | + | ||
12 | +# config.vm.provider "virtualbox" do |v| | ||
13 | +# v.gui = true | ||
14 | +# v.name = "ieducar" | ||
15 | +# v.memory = 1024 | ||
16 | +# end | ||
17 | + | ||
18 | + #Compartilhando pasta do repositório | ||
19 | + config.vm.synced_folder ".", "/home/vagrant/ieducar" | ||
20 | +end |