vagrant-docker-compose 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5719f78a211c2e93115b316c4730e0c6ba1f0b43
4
- data.tar.gz: 3b9f8ecac2ee72bdd1889bec135d3f986ca913f7
3
+ metadata.gz: ccdf79c4420cdb644162f13c84101718d8fe37c7
4
+ data.tar.gz: 25c207398d09c632180cf0a90ccb4f5b397ac607
5
5
  SHA512:
6
- metadata.gz: 144f8ae1e5a6f2b4286570543aad4010a3deec3fa16a2bd9e743cc5ff4fcf41b65652f9a51bc22424e77222e61a60e46e21c72974e1af193646c606f4622d37f
7
- data.tar.gz: 70b77f91b465d91247be867116edba0a7a5ba47419c3ee35f3ea2d0a4b6ec8545e5619a61d4bf57b840e376fca958661dfe9cd8a77f549be9f01bd95bd26d1bf
6
+ metadata.gz: e16c8877373addf1adcd5cb91039b871f1c6b39c42f48f16f73ec1539a00a0e39f63c7dfaa01cdb7bfccdecc63f5c7226ab50b762c26587cad414c58f6c7d4a0
7
+ data.tar.gz: 46ddb49a16982196f9e06324300e5552564f3d296b0d58dc369c87d1aecf972f507a633d619caf1b9db9a09bb5f9bec086b13b132187df3e19a64aebc6be6d6b
data/README.md CHANGED
@@ -104,7 +104,7 @@ docker-compose --x-networking -f [yml] up -d --timeout 20
104
104
  ### Other configs
105
105
 
106
106
  * `yml` – one or more [Compose files](https://docs.docker.com/compose/compose-file/) (YAML), may be a `String` for a single file, or `Array` for multiple.
107
- * `compose_version` – defaults to `1.6.2`.
107
+ * `compose_version` – defaults to `1.8.0`.
108
108
  * `project_name` – compose will default to naming the project `vagrant`.
109
109
  * `env` – a `Hash` of environment variables to value that are passed to the `docker-compose` commands, defaults to an empty `Hash`.
110
110
  * `executable_symlink_path` – the location the executable will be symlinked to, defaults to `/usr/local/bin/docker-compose`.
@@ -28,7 +28,7 @@ module VagrantPlugins
28
28
 
29
29
  def finalize!
30
30
  @project_name = nil if @project_name == UNSET_VALUE
31
- @compose_version = "1.6.2" if @compose_version == UNSET_VALUE
31
+ @compose_version = "1.8.0" if @compose_version == UNSET_VALUE
32
32
  @env = {} if @env == UNSET_VALUE
33
33
  @executable_symlink_path = "/usr/local/bin/docker-compose" if @executable_symlink_path == UNSET_VALUE
34
34
  @executable_install_path = "#{@executable_symlink_path}-#{@compose_version}" if @executable_install_path == UNSET_VALUE
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module DockerComposeProvisioner
3
- VERSION = "1.1.0"
3
+ VERSION = "1.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-docker-compose
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leigh McCulloch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-14 00:00:00.000000000 Z
11
+ date: 2016-09-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A Vagrant provisioner for docker compose.
14
14
  email: