vagrant-docker-compose 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/vagrant-docker-compose/config.rb +1 -1
- data/lib/vagrant-docker-compose/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ccdf79c4420cdb644162f13c84101718d8fe37c7
|
4
|
+
data.tar.gz: 25c207398d09c632180cf0a90ccb4f5b397ac607
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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
|
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.
|
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-
|
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:
|