docker-api 1.10.11 → 1.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.cane +1 -0
- data/README.md +6 -4
- data/docker-api.gemspec +1 -1
- data/lib/docker.rb +6 -0
- data/lib/docker/container.rb +60 -2
- data/lib/docker/image.rb +22 -4
- data/lib/docker/version.rb +1 -1
- data/lib/excon/middlewares/hijack.rb +38 -0
- data/spec/docker/container_spec.rb +40 -0
- data/spec/docker/image_spec.rb +16 -0
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +65 -0
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +62 -0
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +229 -0
- metadata +11 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33761a492e5f028a4763c43ed5817e60528b322d
|
4
|
+
data.tar.gz: fb6aecb4c3868e6687feef8804812774bc223231
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a63b8c76795698e418404d37e059932f48d9e37fee3b28cba3e779e537564058426ad5afe9d84f8398385514fae60fddfd1ad4daa2313c5d0a71ef74fca62ceb
|
7
|
+
data.tar.gz: da843f4c78637af6d8b74976b66ff4a4a5b9df6fddb3fe28a20ead6e19e4bb691694583398300ea77a59e7ecc075931bf33b5de437488cc79c4b94ef34d451c3
|
data/.cane
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
--abc-max 16
|
data/README.md
CHANGED
@@ -238,7 +238,7 @@ container.wait(15)
|
|
238
238
|
|
239
239
|
# Attach to the Container. Currently, the below options are the only valid ones.
|
240
240
|
# By default, :stream, :stdout, and :stderr are set.
|
241
|
-
container.attach(:stream => true, :stdout => true, :stderr => true, :logs => true)
|
241
|
+
container.attach(:stream => true, :stdin => nil, :stdout => true, :stderr => true, :logs => true)
|
242
242
|
# => [["bin\nboot\ndev\netc\nhome\nlib\nlib64\nmedia\nmnt\nopt\nproc\nroot\nrun\nsbin\nselinux\nsrv\nsys\ntmp\nusr\nvar", []]
|
243
243
|
|
244
244
|
# If you wish to stream the attach method, a block may be supplied.
|
@@ -247,6 +247,11 @@ container.tap(&:start).attach { |stream, chunk| puts "#{stream}: #{chunk}" }
|
|
247
247
|
stderr: 2013/10/30 17:16:24 Unable to locate find / -name *
|
248
248
|
# => [[], ["2013/10/30 17:16:24 Unable to locate find / -name *\n"]]
|
249
249
|
|
250
|
+
# If you want to attach to stdin of the container, supply an IO-like object:
|
251
|
+
container = Docker::Container.create('Image' => 'base', 'Cmd' => ['cat'], 'OpenStdin' => true, 'StdinOnce' => true)
|
252
|
+
container.tap(&:start).attach(stdin: StringIO.new("foo\nbar\n"))
|
253
|
+
# => [["foo\nbar\n"], []]
|
254
|
+
|
250
255
|
# Create an Image from a Container's changes.
|
251
256
|
container.commit
|
252
257
|
# => Docker::Image { :id => eaeb8d00efdf, :connection => Docker::Connection { :url => http://localhost, :options => {:port=>4243} } }
|
@@ -300,6 +305,3 @@ image 'repo:new_tag' => 'repo:tag' do
|
|
300
305
|
image.tag('repo' => 'repo', 'tag' => 'new_tag')
|
301
306
|
end
|
302
307
|
```
|
303
|
-
|
304
|
-
## Known Issues
|
305
|
-
- `Docker::Container#attach` cannot attach to STDIN
|
data/docker-api.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
|
|
14
14
|
gem.name = "docker-api"
|
15
15
|
gem.require_paths = %w{lib}
|
16
16
|
gem.version = Docker::VERSION
|
17
|
-
gem.add_dependency 'excon', '>= 0.
|
17
|
+
gem.add_dependency 'excon', '>= 0.34.0'
|
18
18
|
gem.add_dependency 'json'
|
19
19
|
gem.add_dependency 'archive-tar-minitar'
|
20
20
|
gem.add_development_dependency 'rake'
|
data/lib/docker.rb
CHANGED
@@ -8,6 +8,12 @@ require 'archive/tar/minitar'
|
|
8
8
|
require 'uri'
|
9
9
|
require 'open-uri'
|
10
10
|
|
11
|
+
# Add the Hijack middleware at the top of the middleware stack so it can
|
12
|
+
# potentially hijack HTTP sockets (when attaching to stdin) before other
|
13
|
+
# middlewares try and parse the response.
|
14
|
+
require 'excon/middlewares/hijack'
|
15
|
+
Excon.defaults[:middlewares].unshift Excon::Middleware::Hijack
|
16
|
+
|
11
17
|
# The top-level module for this gem. It's purpose is to hold global
|
12
18
|
# configuration variables that are used as defaults in other classes.
|
13
19
|
module Docker
|
data/lib/docker/container.rb
CHANGED
@@ -40,15 +40,29 @@ class Docker::Container
|
|
40
40
|
|
41
41
|
# Attach to a container's standard streams / logs.
|
42
42
|
def attach(options = {}, &block)
|
43
|
+
stdin = options.delete(:stdin)
|
44
|
+
|
43
45
|
opts = {
|
44
46
|
:stream => true, :stdout => true, :stderr => true
|
45
47
|
}.merge(options)
|
46
48
|
# Creates list to store stdout and stderr messages
|
47
49
|
msgs = Docker::Messages.new
|
50
|
+
|
51
|
+
excon_params = {}
|
52
|
+
|
53
|
+
if stdin
|
54
|
+
# If attaching to stdin, we must hijack the underlying TCP connection
|
55
|
+
# so we can stream stdin to the remote Docker process
|
56
|
+
opts[:stdin] = true
|
57
|
+
excon_params[:hijack_block] = hijack_for(stdin, block, msgs)
|
58
|
+
else
|
59
|
+
excon_params[:response_block] = attach_for(block, msgs)
|
60
|
+
end
|
61
|
+
|
48
62
|
connection.post(
|
49
63
|
path_for(:attach),
|
50
64
|
opts,
|
51
|
-
|
65
|
+
excon_params
|
52
66
|
)
|
53
67
|
[msgs.stdout_messages, msgs.stderr_messages]
|
54
68
|
end
|
@@ -80,6 +94,10 @@ class Docker::Container
|
|
80
94
|
end
|
81
95
|
end
|
82
96
|
|
97
|
+
def logs(opts = {})
|
98
|
+
connection.get(path_for(:logs), opts)
|
99
|
+
end
|
100
|
+
|
83
101
|
# #start! and #kill! both perform the associated action and
|
84
102
|
# return the Container. #start and #kill do the same,
|
85
103
|
# but rescue from ServerErrors.
|
@@ -154,6 +172,42 @@ class Docker::Container
|
|
154
172
|
"/containers/#{self.id}/#{resource}"
|
155
173
|
end
|
156
174
|
|
175
|
+
def hijack_for(stdin, block, msg_stack)
|
176
|
+
attach_block = attach_for(block, msg_stack)
|
177
|
+
|
178
|
+
lambda do |socket|
|
179
|
+
debug "hijack: hijacking the HTTP socket"
|
180
|
+
threads = []
|
181
|
+
|
182
|
+
debug "hijack: starting stdin copy thread"
|
183
|
+
threads << Thread.start do
|
184
|
+
debug "hijack: copying stdin => socket"
|
185
|
+
IO.copy_stream stdin, socket
|
186
|
+
|
187
|
+
debug "hijack: closing write end of hijacked socket"
|
188
|
+
socket.close_write
|
189
|
+
end
|
190
|
+
|
191
|
+
debug "hijack: starting hijacked socket read thread"
|
192
|
+
threads << Thread.start do
|
193
|
+
debug "hijack: reading from hijacked socket"
|
194
|
+
|
195
|
+
begin
|
196
|
+
while chunk = socket.readpartial(512)
|
197
|
+
debug "hijack: got #{chunk.bytesize} bytes from hijacked socket"
|
198
|
+
attach_block.call chunk, nil, nil
|
199
|
+
end
|
200
|
+
rescue EOFError
|
201
|
+
end
|
202
|
+
|
203
|
+
debug "hijack: killing stdin copy thread"
|
204
|
+
threads.first.kill
|
205
|
+
end
|
206
|
+
|
207
|
+
threads.each(&:join)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
157
211
|
# Method that takes chunks and calls the attached block for each mux'd message
|
158
212
|
def attach_for(block, msg_stack)
|
159
213
|
messages = Docker::Messages.new
|
@@ -172,6 +226,10 @@ class Docker::Container
|
|
172
226
|
end
|
173
227
|
end
|
174
228
|
|
175
|
-
|
229
|
+
def debug(msg)
|
230
|
+
Docker.logger.debug(msg) if Docker.logger
|
231
|
+
end
|
232
|
+
|
233
|
+
private :path_for, :attach_for, :debug
|
176
234
|
private_class_method :new
|
177
235
|
end
|
data/lib/docker/image.rb
CHANGED
@@ -174,18 +174,24 @@ class Docker::Image
|
|
174
174
|
#
|
175
175
|
# If a block is passed, chunks of output produced by Docker will be passed
|
176
176
|
# to that block.
|
177
|
-
def build_from_dir(dir, opts = {}, connection = Docker.connection,
|
177
|
+
def build_from_dir(dir, opts = {}, connection = Docker.connection,
|
178
|
+
creds = nil, &block)
|
179
|
+
|
178
180
|
tar = Docker::Util.create_dir_tar(dir)
|
179
181
|
|
182
|
+
headers = build_headers(creds)
|
183
|
+
|
180
184
|
# The response_block passed to Excon will build up this body variable.
|
181
185
|
body = ""
|
182
186
|
connection.post(
|
183
187
|
'/build', opts,
|
184
|
-
:headers =>
|
185
|
-
'Transfer-Encoding' => 'chunked' },
|
188
|
+
:headers => headers,
|
186
189
|
:response_block => response_block_for_build(body, &block)
|
187
190
|
) { tar.read(Excon.defaults[:chunk_size]).to_s }
|
188
|
-
|
191
|
+
|
192
|
+
new(connection,
|
193
|
+
'id' => Docker::Util.extract_id(body),
|
194
|
+
:headers => headers)
|
189
195
|
ensure
|
190
196
|
unless tar.nil?
|
191
197
|
tar.close
|
@@ -196,6 +202,18 @@ class Docker::Image
|
|
196
202
|
|
197
203
|
private
|
198
204
|
|
205
|
+
# A method to build auth headers and merge them into headers sent
|
206
|
+
# by build_from_dir.
|
207
|
+
def self.build_headers(creds)
|
208
|
+
credentials = creds || Docker.creds || {}
|
209
|
+
auth_header = Docker::Util.build_auth_header(credentials.to_json)
|
210
|
+
|
211
|
+
headers = { 'Content-Type' => 'application/tar',
|
212
|
+
'Transfer-Encoding' => 'chunked' }
|
213
|
+
headers = headers.merge(auth_header) if auth_header
|
214
|
+
headers
|
215
|
+
end
|
216
|
+
|
199
217
|
# Convenience method to return the path for a particular resource.
|
200
218
|
def path_for(resource)
|
201
219
|
"/images/#{self.id}/#{resource}"
|
data/lib/docker/version.rb
CHANGED
@@ -0,0 +1,38 @@
|
|
1
|
+
module Excon
|
2
|
+
module Middleware
|
3
|
+
# Hijack is an Excon middleware which parses response headers and then
|
4
|
+
# yields the underlying TCP socket for raw TCP communication (used to
|
5
|
+
# attach to STDIN of containers).
|
6
|
+
class Hijack < Base
|
7
|
+
def response_call(datum)
|
8
|
+
if datum[:hijack_block]
|
9
|
+
# Need to process the response headers here rather than in
|
10
|
+
# Excon::Middleware::ResponseParser as the response parser will
|
11
|
+
# block trying to read the body.
|
12
|
+
socket = datum[:connection].send(:socket)
|
13
|
+
|
14
|
+
# c.f. Excon::Response.parse
|
15
|
+
until match = /^HTTP\/\d+\.\d+\s(\d{3})\s/.match(socket.readline); end
|
16
|
+
status = match[1].to_i
|
17
|
+
|
18
|
+
datum[:response] = {
|
19
|
+
:body => '',
|
20
|
+
:headers => Excon::Headers.new,
|
21
|
+
:status => status,
|
22
|
+
:remote_ip => socket.respond_to?(:remote_ip) &&
|
23
|
+
socket.remote_ip,
|
24
|
+
:local_port => socket.respond_to?(:local_port) &&
|
25
|
+
socket.local_port,
|
26
|
+
:local_address => socket.respond_to?(:local_address) &&
|
27
|
+
socket.local_address
|
28
|
+
}
|
29
|
+
|
30
|
+
Excon::Response.parse_headers(socket, datum)
|
31
|
+
datum[:hijack_block].call socket.instance_variable_get(:@socket)
|
32
|
+
end
|
33
|
+
|
34
|
+
@stack.response_call(datum)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -33,6 +33,26 @@ describe Docker::Container do
|
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
+
describe '#logs' do
|
37
|
+
subject { described_class.create('Cmd' => "echo hello", 'Image' => 'base') }
|
38
|
+
|
39
|
+
context "when not selecting any stream" do
|
40
|
+
let(:non_destination) { subject.logs }
|
41
|
+
it 'returns the error message', :vcr do
|
42
|
+
non_destination.should be_a(String)
|
43
|
+
non_destination.should be =~ /You must choose at least one/
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
context "when selecting stdout" do
|
48
|
+
let(:stdout) { subject.logs(stdout: 1) }
|
49
|
+
it 'returns blank logs', :vcr do
|
50
|
+
stdout.should be_a(String)
|
51
|
+
stdout.should eq ""
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
36
56
|
describe '#create' do
|
37
57
|
subject {
|
38
58
|
described_class.create({'Cmd' => %w[true], 'Image' => 'base'}.merge(opts))
|
@@ -173,6 +193,26 @@ describe Docker::Container do
|
|
173
193
|
end
|
174
194
|
end
|
175
195
|
|
196
|
+
describe '#attach with stdin' do
|
197
|
+
# Because this uses HTTP socket hijacking, it is not compatible with
|
198
|
+
# VCR, so it is currently pending until a good way to test it without
|
199
|
+
# a running Docker daemon is discovered
|
200
|
+
it 'yields the output' do
|
201
|
+
pending 'HTTP socket hijacking not compatible with VCR'
|
202
|
+
container = described_class.create(
|
203
|
+
'Cmd' => %w[cat],
|
204
|
+
'Image' => 'base',
|
205
|
+
'OpenStdin' => true,
|
206
|
+
'StdinOnce' => true
|
207
|
+
)
|
208
|
+
chunk = nil
|
209
|
+
container.attach(stdin: StringIO.new("foo\nbar\n")) do |stream, c|
|
210
|
+
chunk ||= c
|
211
|
+
end
|
212
|
+
expect(chunk).to eq("foo\nbar\n")
|
213
|
+
end
|
214
|
+
end
|
215
|
+
|
176
216
|
describe '#start' do
|
177
217
|
subject {
|
178
218
|
described_class.create(
|
data/spec/docker/image_spec.rb
CHANGED
@@ -458,6 +458,22 @@ describe Docker::Image do
|
|
458
458
|
expect(build_output).to match(/Step 0 : from base/)
|
459
459
|
end
|
460
460
|
end
|
461
|
+
|
462
|
+
context 'with credentials passed' do
|
463
|
+
let(:creds) {
|
464
|
+
{
|
465
|
+
:username => 'nahiluhmot',
|
466
|
+
:password => '*********',
|
467
|
+
:email => 'hulihan.tom159@gmail.com'
|
468
|
+
}
|
469
|
+
}
|
470
|
+
|
471
|
+
before { Docker.creds = creds }
|
472
|
+
|
473
|
+
it 'sends Docker.creds', :vcr do
|
474
|
+
image.info[:headers].keys.should include('X-Registry-Auth')
|
475
|
+
end
|
476
|
+
end
|
461
477
|
end
|
462
478
|
end
|
463
479
|
end
|
data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: "{\"Cmd\":\"echo Hello, world\",\"Image\":\"base\"}"
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Swipely/Docker-API 1.10.10
|
12
|
+
Content-Type:
|
13
|
+
- application/json
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 201
|
17
|
+
message:
|
18
|
+
headers:
|
19
|
+
Content-Type:
|
20
|
+
- application/json
|
21
|
+
Date:
|
22
|
+
- Fri, 23 May 2014 05:11:24 GMT
|
23
|
+
Content-Length:
|
24
|
+
- '90'
|
25
|
+
Connection:
|
26
|
+
- close
|
27
|
+
body:
|
28
|
+
encoding: UTF-8
|
29
|
+
string: |
|
30
|
+
{"Id":"d8f803cf10d6b2cc0613c5f26a7212e07cde5b018d7dcd84574aef0ca46210bd","Warnings":null}
|
31
|
+
http_version:
|
32
|
+
recorded_at: Fri, 23 May 2014 05:11:24 GMT
|
33
|
+
- request:
|
34
|
+
method: get
|
35
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/d8f803cf10d6b2cc0613c5f26a7212e07cde5b018d7dcd84574aef0ca46210bd/logs
|
36
|
+
body:
|
37
|
+
encoding: US-ASCII
|
38
|
+
string: ''
|
39
|
+
headers:
|
40
|
+
User-Agent:
|
41
|
+
- Swipely/Docker-API 1.10.10
|
42
|
+
Content-Type:
|
43
|
+
- text/plain
|
44
|
+
response:
|
45
|
+
status:
|
46
|
+
code: 200
|
47
|
+
message:
|
48
|
+
headers:
|
49
|
+
Date:
|
50
|
+
- Fri, 23 May 2014 05:11:24 GMT
|
51
|
+
Content-Type:
|
52
|
+
- application/octet-stream
|
53
|
+
Connection:
|
54
|
+
- close
|
55
|
+
Transfer-Encoding:
|
56
|
+
- ''
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: !binary |-
|
60
|
+
AgAAAAAAACRZb3UgbXVzdCBjaG9vc2UgYXQgbGVhc3Qgb25lIHN0cmVhbQoB
|
61
|
+
AAAAAAAAK0Vycm9yOiBZb3UgbXVzdCBjaG9vc2UgYXQgbGVhc3Qgb25lIHN0
|
62
|
+
cmVhbQo=
|
63
|
+
http_version:
|
64
|
+
recorded_at: Fri, 23 May 2014 05:11:24 GMT
|
65
|
+
recorded_with: VCR 2.9.0
|
@@ -0,0 +1,62 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/create
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: "{\"Cmd\":\"echo Hello, world\",\"Image\":\"base\"}"
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Swipely/Docker-API 1.10.10
|
12
|
+
Content-Type:
|
13
|
+
- application/json
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 201
|
17
|
+
message:
|
18
|
+
headers:
|
19
|
+
Content-Type:
|
20
|
+
- application/json
|
21
|
+
Date:
|
22
|
+
- Fri, 23 May 2014 05:11:24 GMT
|
23
|
+
Content-Length:
|
24
|
+
- '90'
|
25
|
+
Connection:
|
26
|
+
- close
|
27
|
+
body:
|
28
|
+
encoding: UTF-8
|
29
|
+
string: |
|
30
|
+
{"Id":"c41c2fc48cc0909dce654c8d99fab131784e300d3f0599212ae1e0ee87b0ba09","Warnings":null}
|
31
|
+
http_version:
|
32
|
+
recorded_at: Fri, 23 May 2014 05:11:24 GMT
|
33
|
+
- request:
|
34
|
+
method: get
|
35
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/c41c2fc48cc0909dce654c8d99fab131784e300d3f0599212ae1e0ee87b0ba09/logs?stdout=1
|
36
|
+
body:
|
37
|
+
encoding: US-ASCII
|
38
|
+
string: ''
|
39
|
+
headers:
|
40
|
+
User-Agent:
|
41
|
+
- Swipely/Docker-API 1.10.10
|
42
|
+
Content-Type:
|
43
|
+
- text/plain
|
44
|
+
response:
|
45
|
+
status:
|
46
|
+
code: 200
|
47
|
+
message:
|
48
|
+
headers:
|
49
|
+
Date:
|
50
|
+
- Fri, 23 May 2014 05:11:24 GMT
|
51
|
+
Content-Length:
|
52
|
+
- '0'
|
53
|
+
Content-Type:
|
54
|
+
- text/plain; charset=utf-8
|
55
|
+
Connection:
|
56
|
+
- close
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: ''
|
60
|
+
http_version:
|
61
|
+
recorded_at: Fri, 23 May 2014 05:11:24 GMT
|
62
|
+
recorded_with: VCR 2.9.0
|
@@ -0,0 +1,229 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/build
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Swipely/Docker-API 1.10.10
|
12
|
+
Content-Type:
|
13
|
+
- application/tar
|
14
|
+
Transfer-Encoding:
|
15
|
+
- chunked
|
16
|
+
X-Registry-Auth:
|
17
|
+
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKioqKiIsImVtYWlsIjoiaHVsaWhhbi50b20xNTlAZ21haWwuY29tIn0=
|
18
|
+
X-Registry-Config:
|
19
|
+
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKioqKiIsImVtYWlsIjoiaHVsaWhhbi50b20xNTlAZ21haWwuY29tIn0=
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message:
|
24
|
+
headers:
|
25
|
+
Content-Type:
|
26
|
+
- application/json
|
27
|
+
Date:
|
28
|
+
- Sat, 24 May 2014 08:02:05 GMT
|
29
|
+
Connection:
|
30
|
+
- close
|
31
|
+
Transfer-Encoding:
|
32
|
+
- ''
|
33
|
+
body:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"status\":\"Pulling repository
|
36
|
+
base\"}\r\n{\"status\":\"Pulling image (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
37
|
+
image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
38
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
39
|
+
metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
40
|
+
fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":94863360,\"start\":1400918528},\"progress\":\"[\\u003e
|
41
|
+
\ ] 528.4 kB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":94863360,\"start\":1400918528},\"progress\":\"[\\u003e
|
42
|
+
\ ] 1.057 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":94863360,\"start\":1400918528},\"progress\":\"[\\u003e
|
43
|
+
\ ] 1.585 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=\\u003e
|
44
|
+
\ ] 2.114 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=\\u003e
|
45
|
+
\ ] 2.642 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=\\u003e
|
46
|
+
\ ] 3.17 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=\\u003e
|
47
|
+
\ ] 3.699 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==\\u003e
|
48
|
+
\ ] 4.227 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==\\u003e
|
49
|
+
\ ] 4.755 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==\\u003e
|
50
|
+
\ ] 5.284 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===\\u003e
|
51
|
+
\ ] 5.812 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===\\u003e
|
52
|
+
\ ] 6.341 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===\\u003e
|
53
|
+
\ ] 6.869 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===\\u003e
|
54
|
+
\ ] 7.397 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====\\u003e
|
55
|
+
\ ] 7.926 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====\\u003e
|
56
|
+
\ ] 8.454 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====\\u003e
|
57
|
+
\ ] 8.983 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====\\u003e
|
58
|
+
\ ] 9.511 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====\\u003e
|
59
|
+
\ ] 10.04 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====\\u003e
|
60
|
+
\ ] 10.57 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====\\u003e
|
61
|
+
\ ] 11.1 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======\\u003e
|
62
|
+
\ ] 11.62 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======\\u003e
|
63
|
+
\ ] 12.15 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======\\u003e
|
64
|
+
\ ] 12.68 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======\\u003e
|
65
|
+
\ ] 13.21 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======\\u003e
|
66
|
+
\ ] 13.74 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======\\u003e
|
67
|
+
\ ] 14.27 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======\\u003e
|
68
|
+
\ ] 14.79 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========\\u003e
|
69
|
+
\ ] 15.32 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========\\u003e
|
70
|
+
\ ] 15.85 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========\\u003e
|
71
|
+
\ ] 16.38 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========\\u003e
|
72
|
+
\ ] 16.91 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========\\u003e
|
73
|
+
\ ] 17.44 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========\\u003e
|
74
|
+
\ ] 17.97 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========\\u003e
|
75
|
+
\ ] 18.49 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========\\u003e
|
76
|
+
\ ] 19.02 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========\\u003e
|
77
|
+
\ ] 19.55 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========\\u003e
|
78
|
+
\ ] 20.08 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========\\u003e
|
79
|
+
\ ] 20.61 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========\\u003e
|
80
|
+
\ ] 21.14 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========\\u003e
|
81
|
+
\ ] 21.66 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========\\u003e
|
82
|
+
\ ] 22.19 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========\\u003e
|
83
|
+
\ ] 22.72 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============\\u003e
|
84
|
+
\ ] 23.25 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============\\u003e
|
85
|
+
\ ] 23.78 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============\\u003e
|
86
|
+
\ ] 24.31 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============\\u003e
|
87
|
+
\ ] 24.83 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============\\u003e
|
88
|
+
\ ] 25.36 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============\\u003e
|
89
|
+
\ ] 25.89 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============\\u003e
|
90
|
+
\ ] 26.42 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============\\u003e
|
91
|
+
\ ] 26.95 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============\\u003e
|
92
|
+
\ ] 27.48 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============\\u003e
|
93
|
+
\ ] 28 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============\\u003e
|
94
|
+
\ ] 28.53 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============\\u003e
|
95
|
+
\ ] 29.06 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============\\u003e
|
96
|
+
\ ] 29.59 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============\\u003e
|
97
|
+
\ ] 30.12 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================\\u003e
|
98
|
+
\ ] 30.65 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================\\u003e
|
99
|
+
\ ] 31.17 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================\\u003e
|
100
|
+
\ ] 31.7 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================\\u003e
|
101
|
+
\ ] 32.23 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================\\u003e
|
102
|
+
\ ] 32.76 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================\\u003e
|
103
|
+
\ ] 33.29 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================\\u003e
|
104
|
+
\ ] 33.82 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================\\u003e
|
105
|
+
\ ] 34.34 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================\\u003e
|
106
|
+
\ ] 34.87 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================\\u003e
|
107
|
+
\ ] 35.4 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================\\u003e
|
108
|
+
\ ] 35.93 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================\\u003e
|
109
|
+
\ ] 36.46 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================\\u003e
|
110
|
+
\ ] 36.99 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================\\u003e
|
111
|
+
\ ] 37.52 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================\\u003e
|
112
|
+
\ ] 38.04 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================\\u003e
|
113
|
+
\ ] 38.57 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================\\u003e
|
114
|
+
\ ] 39.1 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================\\u003e
|
115
|
+
\ ] 39.63 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================\\u003e
|
116
|
+
\ ] 40.16 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================\\u003e
|
117
|
+
\ ] 40.69 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================\\u003e
|
118
|
+
\ ] 41.21 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================\\u003e
|
119
|
+
\ ] 41.74 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================\\u003e
|
120
|
+
\ ] 42.27 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================\\u003e
|
121
|
+
\ ] 42.8 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================\\u003e
|
122
|
+
\ ] 43.33 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================\\u003e
|
123
|
+
\ ] 43.86 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44383585,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================\\u003e
|
124
|
+
\ ] 44.38 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44908544,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================\\u003e
|
125
|
+
\ ] 44.91 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45436928,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================\\u003e
|
126
|
+
\ ] 45.44 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45965312,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================\\u003e
|
127
|
+
\ ] 45.97 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46493696,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================\\u003e
|
128
|
+
\ ] 46.49 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022080,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================\\u003e
|
129
|
+
\ ] 47.02 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47550464,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================\\u003e
|
130
|
+
\ ] 47.55 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48078848,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================\\u003e
|
131
|
+
\ ] 48.08 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48607232,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================\\u003e
|
132
|
+
\ ] 48.61 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49135616,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================\\u003e
|
133
|
+
\ ] 49.14 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49664000,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================\\u003e
|
134
|
+
\ ] 49.66 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50189521,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================\\u003e
|
135
|
+
\ ] 50.19 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50716672,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================\\u003e
|
136
|
+
\ ] 50.72 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51245056,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================\\u003e
|
137
|
+
\ ] 51.25 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51769791,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================\\u003e
|
138
|
+
\ ] 51.77 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52297728,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================\\u003e
|
139
|
+
\ ] 52.3 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52826112,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================\\u003e
|
140
|
+
\ ] 52.83 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53350594,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================\\u003e
|
141
|
+
\ ] 53.35 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53878346,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================\\u003e
|
142
|
+
\ ] 53.88 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54403072,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================\\u003e
|
143
|
+
\ ] 54.4 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54931701,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================\\u003e
|
144
|
+
\ ] 54.93 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55459840,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================\\u003e
|
145
|
+
\ ] 55.46 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55988224,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================\\u003e
|
146
|
+
\ ] 55.99 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56515076,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================\\u003e
|
147
|
+
\ ] 56.52 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57041490,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================\\u003e
|
148
|
+
\ ] 57.04 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57567530,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================\\u003e
|
149
|
+
\ ] 57.57 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58097101,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================\\u003e
|
150
|
+
\ ] 58.1 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58621952,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================\\u003e
|
151
|
+
\ ] 58.62 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59150825,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================\\u003e
|
152
|
+
\ ] 59.15 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59679759,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================\\u003e
|
153
|
+
\ ] 59.68 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60206135,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================\\u003e
|
154
|
+
\ ] 60.21 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60731390,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================\\u003e
|
155
|
+
\ ] 60.73 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61256241,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================\\u003e
|
156
|
+
\ ] 61.26 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61783624,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================\\u003e
|
157
|
+
\ ] 61.78 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62308352,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================\\u003e
|
158
|
+
\ ] 62.31 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62835962,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================\\u003e
|
159
|
+
\ ] 62.84 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63365985,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================\\u003e
|
160
|
+
\ ] 63.37 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63897600,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================\\u003e
|
161
|
+
\ ] 63.9 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64425984,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================\\u003e
|
162
|
+
\ ] 64.43 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64951547,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================================\\u003e
|
163
|
+
\ ] 64.95 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65477287,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================================\\u003e
|
164
|
+
\ ] 65.48 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66002838,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================================\\u003e
|
165
|
+
\ ] 66 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66527232,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================================\\u003e
|
166
|
+
\ ] 66.53 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67058428,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================================\\u003e
|
167
|
+
\ ] 67.06 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67585551,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================================\\u003e
|
168
|
+
\ ] 67.59 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68113131,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================================\\u003e
|
169
|
+
\ ] 68.11 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68639112,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================================\\u003e
|
170
|
+
\ ] 68.64 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69167384,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================================\\u003e
|
171
|
+
\ ] 69.17 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69692312,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================================\\u003e
|
172
|
+
\ ] 69.69 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70218071,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================================\\u003e
|
173
|
+
\ ] 70.22 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70743386,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================================\\u003e
|
174
|
+
\ ] 70.74 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71270400,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================================\\u003e
|
175
|
+
\ ] 71.27 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71798784,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================================\\u003e
|
176
|
+
\ ] 71.8 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72324928,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================================\\u003e
|
177
|
+
\ ] 72.32 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72851258,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================================\\u003e
|
178
|
+
\ ] 72.85 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73375744,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================================\\u003e
|
179
|
+
\ ] 73.38 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73904091,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================================\\u003e
|
180
|
+
\ ] 73.9 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74428416,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================================\\u003e
|
181
|
+
\ ] 74.43 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74952715,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================================\\u003e
|
182
|
+
\ ] 74.95 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75478532,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================================\\u003e
|
183
|
+
\ ] 75.48 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76006647,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================================\\u003e
|
184
|
+
\ ] 76.01 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76533760,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================================\\u003e
|
185
|
+
\ ] 76.53 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77067779,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================================\\u003e
|
186
|
+
\ ] 77.07 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77594624,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================================\\u003e
|
187
|
+
\ ] 77.59 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78124063,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================================\\u003e
|
188
|
+
\ ] 78.12 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78651392,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================================\\u003e
|
189
|
+
\ ] 78.65 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79184834,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================================\\u003e
|
190
|
+
\ ] 79.18 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79711231,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================================\\u003e
|
191
|
+
\ ] 79.71 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80239069,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================================\\u003e
|
192
|
+
\ ] 80.24 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80764928,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================================\\u003e
|
193
|
+
\ ] 80.76 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81290784,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================================\\u003e
|
194
|
+
\ ] 81.29 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81819342,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================================\\u003e
|
195
|
+
\ ] 81.82 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82344206,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================================\\u003e
|
196
|
+
\ ] 82.34 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82869115,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================================\\u003e
|
197
|
+
\ ] 82.87 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83393910,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================================\\u003e
|
198
|
+
\ ] 83.39 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83918848,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================================\\u003e
|
199
|
+
\ ] 83.92 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84447232,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================================\\u003e
|
200
|
+
\ ] 84.45 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84975616,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================================\\u003e
|
201
|
+
\ ] 84.98 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85506859,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================================\\u003e
|
202
|
+
\ ] 85.51 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86032106,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================================\\u003e
|
203
|
+
\ ] 86.03 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86559316,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================================\\u003e
|
204
|
+
\ ] 86.56 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87086158,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================================\\u003e
|
205
|
+
\ ] 87.09 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87612662,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================================\\u003e
|
206
|
+
\ ] 87.61 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88138808,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================================\\u003e
|
207
|
+
\ ] 88.14 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88666236,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================================\\u003e
|
208
|
+
\ ] 88.67 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89191986,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================================\\u003e
|
209
|
+
\ ] 89.19 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89718784,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================================\\u003e
|
210
|
+
\ ] 89.72 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90247168,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================================\\u003e
|
211
|
+
\ ] 90.25 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90775552,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================================\\u003e
|
212
|
+
\ ] 90.78 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91307188,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================================\\u003e
|
213
|
+
\ ] 91.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91833442,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================================\\u003e
|
214
|
+
\ ] 91.83 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92360704,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================================\\u003e
|
215
|
+
\ ] 92.36 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92889088,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================================\\u003e
|
216
|
+
\ ] 92.89 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93419433,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================================\\u003e
|
217
|
+
] 93.42 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93945856,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================================\\u003e
|
218
|
+
] 93.95 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94474240,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================================\\u003e
|
219
|
+
] 94.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
220
|
+
metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
221
|
+
fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4106,\"total\":10240,\"start\":1400918542},\"progress\":\"[====================\\u003e
|
222
|
+
\ ] 4.106 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
223
|
+
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
224
|
+
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"stream\":\" ---\\u003e
|
225
|
+
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add / /\\n\"}\r\n{\"stream\":\"
|
226
|
+
---\\u003e 044e630f5aaf\\n\"}\r\n{\"stream\":\"Successfully built 044e630f5aaf\\n\"}\r\n"
|
227
|
+
http_version:
|
228
|
+
recorded_at: Sat, 24 May 2014 08:02:26 GMT
|
229
|
+
recorded_with: VCR 2.9.0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docker-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swipely, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: excon
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.34.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 0.34.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: json
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -178,6 +178,7 @@ files:
|
|
178
178
|
- lib/docker/rake_task.rb
|
179
179
|
- lib/docker/util.rb
|
180
180
|
- lib/docker/version.rb
|
181
|
+
- lib/excon/middlewares/hijack.rb
|
181
182
|
- spec/docker/connection_spec.rb
|
182
183
|
- spec/docker/container_spec.rb
|
183
184
|
- spec/docker/event_spec.rb
|
@@ -208,6 +209,8 @@ files:
|
|
208
209
|
- spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml
|
209
210
|
- spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml
|
210
211
|
- spec/vcr/Docker_Container/_kill/kills_the_container.yml
|
212
|
+
- spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml
|
213
|
+
- spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml
|
211
214
|
- spec/vcr/Docker_Container/_restart/restarts_the_container.yml
|
212
215
|
- spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml
|
213
216
|
- spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml
|
@@ -223,6 +226,7 @@ files:
|
|
223
226
|
- spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml
|
224
227
|
- spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml
|
225
228
|
- spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml
|
229
|
+
- spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml
|
226
230
|
- spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml
|
227
231
|
- spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml
|
228
232
|
- spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml
|
@@ -303,6 +307,8 @@ test_files:
|
|
303
307
|
- spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml
|
304
308
|
- spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml
|
305
309
|
- spec/vcr/Docker_Container/_kill/kills_the_container.yml
|
310
|
+
- spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml
|
311
|
+
- spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml
|
306
312
|
- spec/vcr/Docker_Container/_restart/restarts_the_container.yml
|
307
313
|
- spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml
|
308
314
|
- spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml
|
@@ -318,6 +324,7 @@ test_files:
|
|
318
324
|
- spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml
|
319
325
|
- spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml
|
320
326
|
- spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml
|
327
|
+
- spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml
|
321
328
|
- spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml
|
322
329
|
- spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml
|
323
330
|
- spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml
|