Sha256: 36357d525b06cbd1b728e52cad0a760a17de91de7f5453503ef714af324304d1

Contents?: true

Size: 837 Bytes

Versions: 7

Compression:

Stored size: 837 Bytes

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure('2') do |config|

  config.vm.provider "virtualbox" do |v|
    v.name = File.basename(__dir__)
  end

  config.vm.box = 'jnetocurti/postgresql-9.6_wildfly-10'
  config.vm.network :forwarded_port, guest: 5432, host: 5432
  config.vm.network :private_network, ip: '192.168.1.78'

  config.vm.provision 'shell', privileged: true, inline: <<-SHELL
    set -euo pipefail
    IFS=$'\n\t'

    sh /vagrant/script/vagrant/init.sh
    sh /vagrant/script/vagrant/make.sh
    sh /vagrant/script/vagrant/git.sh
    sh /vagrant/script/vagrant/pg.sh
  SHELL

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rack-app-sequel-0.6.1 Vagrantfile
rack-app-sequel-0.6.0 Vagrantfile
rack-app-sequel-0.5.0 Vagrantfile
rack-app-sequel-0.4.0 Vagrantfile
rack-app-sequel-0.3.0 Vagrantfile
rack-app-sequel-0.2.0 Vagrantfile
rack-app-sequel-0.1.0 Vagrantfile