Commit ce87a2c159a815145d32234f8476f7c3dc3765ef

Authored by Caroline Salib
1 parent e4d17908
Exists in master

Alterado vagrantfile para buscar a box via url ao invés de local;

Portabilis/ieducar#165
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
Vagrantfile
... ... @@ -3,12 +3,12 @@ VAGRANTFILE_API_VERSION = "2"
3 3  
4 4 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
5 5 config.vm.box = "ieducar"
6   - config.vm.box = "https://s3-us-west-2.amazonaws.com/portabilis2/public/ieducar/ieducar.box"
  6 + config.vm.box_url = "https://s3-us-west-2.amazonaws.com/portabilis2/public/ieducar/ieducar.box"
7 7  
8 8 #Compartilhando portas
9 9 config.vm.network "forwarded_port", guest: 80, host: 8080
10 10 config.vm.network "forwarded_port", guest: 5433, host: 5433
11   -
  11 +
12 12 # config.vm.provider "virtualbox" do |v|
13 13 # v.gui = true
14 14 # v.name = "ieducar"
... ...