Sha256: 1de34b331930f25f332efffe6b88310e67b0a6c60f6152b65b3ae367cf952f21

Contents?: true

Size: 329 Bytes

Versions: 4

Compression:

Stored size: 329 Bytes

Contents

Vagrant.configure("2") do |config|
  config.vm.define "ecco-test" do |ubuntu|
    ubuntu.vm.hostname = "ecco-test"
    ubuntu.vm.box = "ubuntu/trusty64"
    ubuntu.vm.provision :ansible do |ansible|
      ansible.playbook = "vagrant/playbook.yml"
    end

    ubuntu.vm.network :forwarded_port, host: 3306, guest: 3306
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ecco-0.6.0-java Vagrantfile
ecco-0.5.0-java Vagrantfile
ecco-0.4.1-java Vagrantfile
ecco-0.4.0-java Vagrantfile