Sha256: 2e109cec23c6af39c52adbec268200582412cc62d044fbebb3b205bf1dba677a

Contents?: true

Size: 342 Bytes

Versions: 2

Compression:

Stored size: 342 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, project_name: "myproject", run: "always"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-docker-compose-0.0.4 example/Vagrantfile
vagrant-docker-compose-0.0.3 example/Vagrantfile