Sha256: a8e8300c48617d66cb86bdc365e4194e2ae3415a13d70e0d78f2ca52021d6e03

Contents?: true

Size: 315 Bytes

Versions: 2

Compression:

Stored size: 315 Bytes

Contents

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

Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu/trusty64"

  config.vm.network(:forwarded_port, guest: 8080, host: 8080)

  config.vm.provision :docker
  config.vm.provision :docker_compose, yml: "/vagrant/docker-compose.yml", rebuild: true, run: "always"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-docker-compose-0.0.2 example/Vagrantfile
vagrant-docker-compose-0.0.1 example/Vagrantfile