docker-compose 1.1.0 → 1.1.1

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: d2c9409ad4a71952fcc96bcaec61e18cfd37ff45
4
- data.tar.gz: a172e5b93540a6f12d7b7b701ef5091b616db739
3
+ metadata.gz: 5e5fae7656fe6fd3633f225843b3aab2a0843563
4
+ data.tar.gz: a8adf58de89c5a150bdf772cb29f802d2c785a9b
5
5
  SHA512:
6
- metadata.gz: 91490526a3237fc1847c70277333ad4628ebd190f3a7be201946739902a158884d5176e80493abf4e68a215be5fb40c7880526fa600c006eb4d0f6d6353df11d
7
- data.tar.gz: 14625c637f31bc5793c0c3beaab606544dd4a0f77dc374bfd8eae4ad4a3ff1f4f962990cdf6283940e65f30a312ad3987e7531f7127bb80d9110282cc7cc68ee
6
+ metadata.gz: 9b0019e63cf179057e5331a6239fd0ae5d42b50cbe5123d688b95d0038729de0fccb9376a9487448ef329761603e23d73654aff777641e04cdb85f99a0770b97
7
+ data.tar.gz: 5350dc449cef6884959ad3d49965e9ba4a2f5e8c47fe51f9cb6cd36de7e5128620d20e0b86e7a91500c6eea11081a73f9641f459005efb4adaf5df393fd08356
@@ -1,3 +1,16 @@
1
+ 1.1
2
+ ---
3
+
4
+ #### New features
5
+
6
+ Add `scale` command to Session methods.
7
+
8
+
9
+ 1.0
10
+ ---
11
+
12
+ No significant changes; the 1.0 increment is to indicate that Docker::Compose now has test coverage, and that we intend to maintain a stable API until 2.0.
13
+
1
14
  0.6
2
15
  ---
3
16
 
@@ -121,9 +121,10 @@ module Docker::Compose
121
121
  # running the services that they depend on
122
122
  # @param [Array] env a list of environment variables (see: -e flag)
123
123
  # @param [Boolean] rm remove the container when done
124
+ # @param [Boolean] no_tty disable pseudo-tty allocation (see: -T flag)
124
125
  # @raise [Error] if command fails
125
- def run(service, *cmd, detached: false, no_deps: false, env: [], rm: false)
126
- o = opts(detached: [detached, false], no_deps: [no_deps, false], env: [env, []], rm: [rm, false])
126
+ def run(service, *cmd, detached: false, no_deps: false, env: [], rm: false, no_tty: false)
127
+ o = opts(d: [detached, false], no_deps: [no_deps, false], env: [env, []], rm: [rm, false], T: [no_tty, false])
127
128
  env_params = env.map { |v| { e: v } }
128
129
  run!('run', o, *env_params, service, cmd)
129
130
  end
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  module Docker
3
3
  module Compose
4
- VERSION = '1.1.0'
4
+ VERSION = '1.1.1'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docker-compose
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Spataro