docker-api 1.8.4 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/docker/image.rb +4 -4
- data/lib/docker/util.rb +9 -1
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +1 -3
- data/spec/docker/util_spec.rb +23 -2
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +16 -16
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +6 -6
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +6 -6
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +6 -6
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +97 -69
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +12 -12
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +12 -12
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +19 -19
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +14 -14
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +9 -122
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +24 -24
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +24 -24
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +12 -12
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +5 -5
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +15 -15
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +14 -82732
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +13 -13
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +13 -13
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +49 -34
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +39 -39
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +14 -14
- data/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 +38 -38
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +21 -21
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +52 -37
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +7 -7
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +15 -15
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +9 -9
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +13 -13
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +19 -22
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +7 -7
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +25 -27
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +7 -7
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +7 -7
- data/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 +8 -7
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +21 -20
- data/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 +36 -38
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +5 -5
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +8 -8
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +10 -10
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +213 -30
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +45 -51
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +48 -100
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +30 -30
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +7 -7
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +32 -32
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +8 -8
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +43 -102
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +9 -9
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +18 -18
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +18 -18
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +12 -12
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +34 -22
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +6 -6
- metadata +2 -6
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +0 -156
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +0 -93
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.9/build?t=swipely%2Fbase2
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.8.4
|
12
12
|
Content-Type:
|
13
13
|
- application/tar
|
14
14
|
Transfer-Encoding:
|
@@ -21,27 +21,28 @@ http_interactions:
|
|
21
21
|
Content-Type:
|
22
22
|
- application/json
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Fri, 28 Feb 2014 21:40:08 GMT
|
25
25
|
Connection:
|
26
26
|
- close
|
27
27
|
Transfer-Encoding:
|
28
28
|
- ''
|
29
29
|
body:
|
30
30
|
encoding: UTF-8
|
31
|
-
string: "{\"stream\":\"Step 0 : from base\\n\"}{\"stream\":\" ---\\u003e
|
32
|
-
|
33
|
-
---\\u003e
|
31
|
+
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
32
|
+
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add / /\\n\"}\r\n{\"stream\":\"
|
33
|
+
---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 36729bf9cd69\\n\"}\r\n{\"stream\":\"Successfully
|
34
|
+
built 36729bf9cd69\\n\"}\r\n"
|
34
35
|
http_version:
|
35
|
-
recorded_at:
|
36
|
+
recorded_at: Fri, 28 Feb 2014 21:40:08 GMT
|
36
37
|
- request:
|
37
38
|
method: post
|
38
|
-
uri: unix:///var/run/docker.sock/v1.
|
39
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/create
|
39
40
|
body:
|
40
41
|
encoding: UTF-8
|
41
|
-
string: "{\"Image\":\"
|
42
|
+
string: "{\"Image\":\"36729bf9cd69\",\"Cmd\":[\"cat\",\"/Dockerfile\"]}"
|
42
43
|
headers:
|
43
44
|
User-Agent:
|
44
|
-
- Swipely/Docker-API 1.
|
45
|
+
- Swipely/Docker-API 1.8.4
|
45
46
|
Content-Type:
|
46
47
|
- application/json
|
47
48
|
response:
|
@@ -52,7 +53,7 @@ http_interactions:
|
|
52
53
|
Content-Type:
|
53
54
|
- application/json
|
54
55
|
Date:
|
55
|
-
-
|
56
|
+
- Fri, 28 Feb 2014 21:40:08 GMT
|
56
57
|
Content-Length:
|
57
58
|
- '90'
|
58
59
|
Connection:
|
@@ -60,18 +61,18 @@ http_interactions:
|
|
60
61
|
body:
|
61
62
|
encoding: UTF-8
|
62
63
|
string: |
|
63
|
-
{"Id":"
|
64
|
+
{"Id":"05904073890bad4e07d9d9aa50c618915abafa8f4fe69f757c4b02f18c4b1ba1","Warnings":null}
|
64
65
|
http_version:
|
65
|
-
recorded_at:
|
66
|
+
recorded_at: Fri, 28 Feb 2014 21:40:08 GMT
|
66
67
|
- request:
|
67
68
|
method: post
|
68
|
-
uri: unix:///var/run/docker.sock/v1.
|
69
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/05904073890bad4e07d9d9aa50c618915abafa8f4fe69f757c4b02f18c4b1ba1/start
|
69
70
|
body:
|
70
71
|
encoding: UTF-8
|
71
72
|
string: "{}"
|
72
73
|
headers:
|
73
74
|
User-Agent:
|
74
|
-
- Swipely/Docker-API 1.
|
75
|
+
- Swipely/Docker-API 1.8.4
|
75
76
|
Content-Type:
|
76
77
|
- application/json
|
77
78
|
response:
|
@@ -80,7 +81,7 @@ http_interactions:
|
|
80
81
|
message:
|
81
82
|
headers:
|
82
83
|
Date:
|
83
|
-
-
|
84
|
+
- Fri, 28 Feb 2014 21:40:09 GMT
|
84
85
|
Content-Length:
|
85
86
|
- '0'
|
86
87
|
Content-Type:
|
@@ -91,16 +92,16 @@ http_interactions:
|
|
91
92
|
encoding: UTF-8
|
92
93
|
string: ''
|
93
94
|
http_version:
|
94
|
-
recorded_at:
|
95
|
+
recorded_at: Fri, 28 Feb 2014 21:40:09 GMT
|
95
96
|
- request:
|
96
97
|
method: post
|
97
|
-
uri: unix:///var/run/docker.sock/v1.
|
98
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/05904073890bad4e07d9d9aa50c618915abafa8f4fe69f757c4b02f18c4b1ba1/attach?stderr=true&stdout=true&stream=true
|
98
99
|
body:
|
99
100
|
encoding: US-ASCII
|
100
101
|
string: ''
|
101
102
|
headers:
|
102
103
|
User-Agent:
|
103
|
-
- Swipely/Docker-API 1.
|
104
|
+
- Swipely/Docker-API 1.8.4
|
104
105
|
Content-Type:
|
105
106
|
- text/plain
|
106
107
|
response:
|
@@ -115,16 +116,16 @@ http_interactions:
|
|
115
116
|
string: !binary |-
|
116
117
|
AQAAAAAAABJmcm9tIGJhc2UKYWRkIC8gLwo=
|
117
118
|
http_version:
|
118
|
-
recorded_at:
|
119
|
+
recorded_at: Fri, 28 Feb 2014 21:40:09 GMT
|
119
120
|
- request:
|
120
121
|
method: get
|
121
|
-
uri: unix:///var/run/docker.sock/v1.
|
122
|
+
uri: unix:///var/run/docker.sock/v1.9/images/json
|
122
123
|
body:
|
123
124
|
encoding: US-ASCII
|
124
125
|
string: ''
|
125
126
|
headers:
|
126
127
|
User-Agent:
|
127
|
-
- Swipely/Docker-API 1.
|
128
|
+
- Swipely/Docker-API 1.8.4
|
128
129
|
Content-Type:
|
129
130
|
- text/plain
|
130
131
|
response:
|
@@ -132,10 +133,10 @@ http_interactions:
|
|
132
133
|
code: 200
|
133
134
|
message:
|
134
135
|
headers:
|
135
|
-
Date:
|
136
|
-
- Wed, 12 Feb 2014 17:06:43 GMT
|
137
136
|
Content-Type:
|
138
|
-
-
|
137
|
+
- application/json
|
138
|
+
Date:
|
139
|
+
- Fri, 28 Feb 2014 21:40:09 GMT
|
139
140
|
Connection:
|
140
141
|
- close
|
141
142
|
Transfer-Encoding:
|
@@ -143,19 +144,16 @@ http_interactions:
|
|
143
144
|
body:
|
144
145
|
encoding: UTF-8
|
145
146
|
string: |-
|
146
|
-
[{"Created":
|
147
|
-
,{"Created":
|
148
|
-
,{"Created":
|
149
|
-
,{"Created":
|
150
|
-
,{"Created":
|
151
|
-
,{"Created":
|
152
|
-
,{"Created":
|
153
|
-
,{"Created":
|
154
|
-
,{"Created":
|
155
|
-
,{"Created":1392224748,"Id":"291b17ca54f04278c166b1313f9ec211fa27596a6f5a20855fcd8739b8f26116","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
156
|
-
,{"Created":1392224744,"Id":"328de6c59bef1db641600ea40668bbd57f6966a146bebe9640030dea13d0008c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
157
|
-
,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl","base2:latest"],"Size":175306985,"VirtualSize":350613943}
|
147
|
+
[{"Created":1393623013,"Id":"36729bf9cd69ac074ea60cae252bb68e811814edc67ca283c369246cdf8a0db3","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["swipely/base2:latest"],"Size":18,"VirtualSize":175307053}
|
148
|
+
,{"Created":1393623011,"Id":"40995bb92b66862cbb6735ec5b0d2874c13c99e13d257386c763ab491a608d2c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["swipely/base:latest"],"Size":7,"VirtualSize":175307042}
|
149
|
+
,{"Created":1393622997,"Id":"8eeaeb204828c986cffb38b91c9750a7e93c4d60297b30deb2ffd9d6444eb5d7","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["nahiluhmot/base2:latest"],"Size":7,"VirtualSize":175307042}
|
150
|
+
,{"Created":1393622992,"Id":"ac74549ba478cf73bfca3cfdfd5f61624859ab7a942491b4deb85f96553edddb","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
151
|
+
,{"Created":1393622989,"Id":"50d7d1e75f19b08e53029c4a9786c434ec6cafeca47a8625d7a72391ad08c073","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
152
|
+
,{"Created":1393622986,"Id":"7152d6b36451bcdbc72a150984117bf9e4d90f74ac1ea17ee53ee66083f75055","ParentId":"b11e8415856766b3d31dc90e9a01257c4eb805292e09bb28d5aeaff0d234e1db","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":328,"VirtualSize":175307401}
|
153
|
+
,{"Created":1393622981,"Id":"3a016dd557a79d40d70ad9b41c0629fbd13e8094aa3adee1c69fec1d2891ae4b","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
154
|
+
,{"Created":1393622978,"Id":"ec54e7edec81632a90f1844fb706ca5f57bc476d08ffcf51cb5feb9d37a7c39b","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":93736,"VirtualSize":175400771}
|
155
|
+
,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl","base2:latest"],"Size":77,"VirtualSize":175307035}
|
158
156
|
]
|
159
157
|
http_version:
|
160
|
-
recorded_at:
|
158
|
+
recorded_at: Fri, 28 Feb 2014 21:40:09 GMT
|
161
159
|
recorded_with: VCR 2.8.0
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.8.4
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,14 +19,14 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 28 Feb 2014 21:30:06 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
26
26
|
- ''
|
27
27
|
body:
|
28
28
|
encoding: UTF-8
|
29
|
-
string: "{\"status\":\"Pulling repository base\"}{\"status\":\"Pulling image
|
29
|
+
string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
|
30
30
|
(ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
31
31
|
image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
32
32
|
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
@@ -34,5 +34,5 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at:
|
37
|
+
recorded_at: Fri, 28 Feb 2014 21:30:07 GMT
|
38
38
|
recorded_with: VCR 2.8.0
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.9/images/base/json
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.8.4
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -16,17 +16,17 @@ http_interactions:
|
|
16
16
|
code: 200
|
17
17
|
message:
|
18
18
|
headers:
|
19
|
+
Content-Type:
|
20
|
+
- application/json
|
19
21
|
Date:
|
20
|
-
-
|
22
|
+
- Fri, 28 Feb 2014 21:30:07 GMT
|
21
23
|
Content-Length:
|
22
|
-
- '
|
23
|
-
Content-Type:
|
24
|
-
- text/plain; charset=utf-8
|
24
|
+
- '643'
|
25
25
|
Connection:
|
26
26
|
- close
|
27
27
|
body:
|
28
28
|
encoding: UTF-8
|
29
|
-
string: "{\"id\":\"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc\",\"parent\":\"27cf784147099545\",\"created\":\"2013-03-23T22:24:18.818426-07:00\",\"container\":\"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0\",\"container_config\":{\"Hostname\":\"\",\"Domainname\":\"\",\"User\":\"\",\"Memory\":0,\"MemorySwap\":0,\"CpuShares\":0,\"AttachStdin\":false,\"AttachStdout\":false,\"AttachStderr\":false,\"PortSpecs\":null,\"ExposedPorts\":null,\"Tty\":true,\"OpenStdin\":true,\"StdinOnce\":false,\"Env\":null,\"Cmd\":[\"/bin/bash\"],\"Dns\":null,\"Image\":\"base\",\"Volumes\":null,\"VolumesFrom\":\"\",\"WorkingDir\":\"\",\"Entrypoint\":null,\"NetworkDisabled\":false,\"OnBuild\":null},\"Size\":
|
29
|
+
string: "{\"id\":\"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc\",\"parent\":\"27cf784147099545\",\"created\":\"2013-03-23T22:24:18.818426-07:00\",\"container\":\"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0\",\"container_config\":{\"Hostname\":\"\",\"Domainname\":\"\",\"User\":\"\",\"Memory\":0,\"MemorySwap\":0,\"CpuShares\":0,\"AttachStdin\":false,\"AttachStdout\":false,\"AttachStderr\":false,\"PortSpecs\":null,\"ExposedPorts\":null,\"Tty\":true,\"OpenStdin\":true,\"StdinOnce\":false,\"Env\":null,\"Cmd\":[\"/bin/bash\"],\"Dns\":null,\"Image\":\"base\",\"Volumes\":null,\"VolumesFrom\":\"\",\"WorkingDir\":\"\",\"Entrypoint\":null,\"NetworkDisabled\":false,\"OnBuild\":null},\"Size\":77}"
|
30
30
|
http_version:
|
31
|
-
recorded_at:
|
31
|
+
recorded_at: Fri, 28 Feb 2014 21:30:07 GMT
|
32
32
|
recorded_with: VCR 2.8.0
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.8.
|
11
|
+
- Swipely/Docker-API 1.8.4
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 28 Feb 2014 21:30:00 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -34,16 +34,16 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at:
|
37
|
+
recorded_at: Fri, 28 Feb 2014 21:30:01 GMT
|
38
38
|
- request:
|
39
39
|
method: get
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.9/images/b750fe79269d/history
|
41
41
|
body:
|
42
42
|
encoding: US-ASCII
|
43
43
|
string: ''
|
44
44
|
headers:
|
45
45
|
User-Agent:
|
46
|
-
- Swipely/Docker-API 1.8.
|
46
|
+
- Swipely/Docker-API 1.8.4
|
47
47
|
Content-Type:
|
48
48
|
- text/plain
|
49
49
|
response:
|
@@ -54,17 +54,17 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- application/json
|
56
56
|
Date:
|
57
|
-
-
|
57
|
+
- Fri, 28 Feb 2014 21:30:01 GMT
|
58
58
|
Content-Length:
|
59
|
-
- '
|
59
|
+
- '324'
|
60
60
|
Connection:
|
61
61
|
- close
|
62
62
|
body:
|
63
63
|
encoding: UTF-8
|
64
64
|
string: |-
|
65
|
-
[{"Created":1364102658,"CreatedBy":"/bin/bash","Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","Size":77,"Tags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"]}
|
65
|
+
[{"Created":1364102658,"CreatedBy":"/bin/bash","Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","Size":77,"Tags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl","base2:latest"]}
|
66
66
|
,{"Created":1364068391,"CreatedBy":"","Id":"27cf784147099545","Size":175306958,"Tags":null}
|
67
67
|
]
|
68
68
|
http_version:
|
69
|
-
recorded_at:
|
69
|
+
recorded_at: Fri, 28 Feb 2014 21:30:01 GMT
|
70
70
|
recorded_with: VCR 2.8.0
|
@@ -2,14 +2,14 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.9/build
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: !binary |-
|
9
9
|
RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
10
10
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
11
11
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
|
12
|
-
|
12
|
+
ADEyMzA0MTc3NjYyADAxMzMwNAAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
13
13
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
14
14
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
15
15
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
55
55
|
headers:
|
56
56
|
User-Agent:
|
57
|
-
- Swipely/Docker-API 1.
|
57
|
+
- Swipely/Docker-API 1.8.4
|
58
58
|
Content-Type:
|
59
59
|
- application/json
|
60
60
|
response:
|
@@ -65,32 +65,215 @@ http_interactions:
|
|
65
65
|
Content-Type:
|
66
66
|
- application/json
|
67
67
|
Date:
|
68
|
-
-
|
68
|
+
- Fri, 28 Feb 2014 21:29:22 GMT
|
69
69
|
Connection:
|
70
70
|
- close
|
71
71
|
Transfer-Encoding:
|
72
72
|
- ''
|
73
73
|
body:
|
74
74
|
encoding: UTF-8
|
75
|
-
string: "{\"stream\":\"Step 0 : from base\\n\"}{\"status\":\"Pulling repository
|
76
|
-
base\"}{\"status\":\"Pulling image (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
75
|
+
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"status\":\"Pulling repository
|
76
|
+
base\"}\r\n{\"status\":\"Pulling image (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
77
77
|
image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
78
|
-
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"
|
79
|
-
|
78
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
79
|
+
metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
80
|
+
fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":94863360,\"start\":1393622963},\"progress\":\"[\\u003e
|
81
|
+
\ ] 528.4 kB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":94863360,\"start\":1393622963},\"progress\":\"[\\u003e
|
82
|
+
\ ] 1.057 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":94863360,\"start\":1393622963},\"progress\":\"[\\u003e
|
83
|
+
\ ] 1.585 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=\\u003e
|
84
|
+
\ ] 2.114 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=\\u003e
|
85
|
+
\ ] 2.642 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=\\u003e
|
86
|
+
\ ] 3.17 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=\\u003e
|
87
|
+
\ ] 3.699 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==\\u003e
|
88
|
+
\ ] 4.227 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==\\u003e
|
89
|
+
\ ] 4.755 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==\\u003e
|
90
|
+
\ ] 5.284 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===\\u003e
|
91
|
+
\ ] 5.812 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===\\u003e
|
92
|
+
\ ] 6.341 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===\\u003e
|
93
|
+
\ ] 6.869 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===\\u003e
|
94
|
+
\ ] 7.397 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====\\u003e
|
95
|
+
\ ] 7.926 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====\\u003e
|
96
|
+
\ ] 8.454 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====\\u003e
|
97
|
+
\ ] 8.983 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====\\u003e
|
98
|
+
\ ] 9.511 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====\\u003e
|
99
|
+
\ ] 10.04 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====\\u003e
|
100
|
+
\ ] 10.57 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====\\u003e
|
101
|
+
\ ] 11.1 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======\\u003e
|
102
|
+
\ ] 11.62 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======\\u003e
|
103
|
+
\ ] 12.15 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======\\u003e
|
104
|
+
\ ] 12.68 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======\\u003e
|
105
|
+
\ ] 13.21 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======\\u003e
|
106
|
+
\ ] 13.74 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======\\u003e
|
107
|
+
\ ] 14.27 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======\\u003e
|
108
|
+
\ ] 14.79 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========\\u003e
|
109
|
+
\ ] 15.32 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========\\u003e
|
110
|
+
\ ] 15.85 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========\\u003e
|
111
|
+
\ ] 16.38 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========\\u003e
|
112
|
+
\ ] 16.91 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========\\u003e
|
113
|
+
\ ] 17.44 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========\\u003e
|
114
|
+
\ ] 17.97 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========\\u003e
|
115
|
+
\ ] 18.49 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========\\u003e
|
116
|
+
\ ] 19.02 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========\\u003e
|
117
|
+
\ ] 19.55 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========\\u003e
|
118
|
+
\ ] 20.08 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========\\u003e
|
119
|
+
\ ] 20.61 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========\\u003e
|
120
|
+
\ ] 21.14 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========\\u003e
|
121
|
+
\ ] 21.66 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========\\u003e
|
122
|
+
\ ] 22.19 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========\\u003e
|
123
|
+
\ ] 22.72 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============\\u003e
|
124
|
+
\ ] 23.25 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============\\u003e
|
125
|
+
\ ] 23.78 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============\\u003e
|
126
|
+
\ ] 24.31 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============\\u003e
|
127
|
+
\ ] 24.83 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============\\u003e
|
128
|
+
\ ] 25.36 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============\\u003e
|
129
|
+
\ ] 25.89 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============\\u003e
|
130
|
+
\ ] 26.42 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============\\u003e
|
131
|
+
\ ] 26.95 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============\\u003e
|
132
|
+
\ ] 27.48 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============\\u003e
|
133
|
+
\ ] 28 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============\\u003e
|
134
|
+
\ ] 28.53 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============\\u003e
|
135
|
+
\ ] 29.06 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============\\u003e
|
136
|
+
\ ] 29.59 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============\\u003e
|
137
|
+
\ ] 30.12 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================\\u003e
|
138
|
+
\ ] 30.65 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================\\u003e
|
139
|
+
\ ] 31.17 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================\\u003e
|
140
|
+
\ ] 31.7 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================\\u003e
|
141
|
+
\ ] 32.23 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================\\u003e
|
142
|
+
\ ] 32.76 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================\\u003e
|
143
|
+
\ ] 33.29 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================\\u003e
|
144
|
+
\ ] 33.82 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==================\\u003e
|
145
|
+
\ ] 34.34 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==================\\u003e
|
146
|
+
\ ] 34.87 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==================\\u003e
|
147
|
+
\ ] 35.4 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==================\\u003e
|
148
|
+
\ ] 35.93 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===================\\u003e
|
149
|
+
\ ] 36.46 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===================\\u003e
|
150
|
+
\ ] 36.99 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===================\\u003e
|
151
|
+
\ ] 37.52 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====================\\u003e
|
152
|
+
\ ] 38.04 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====================\\u003e
|
153
|
+
\ ] 38.57 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====================\\u003e
|
154
|
+
\ ] 39.1 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====================\\u003e
|
155
|
+
\ ] 39.63 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====================\\u003e
|
156
|
+
\ ] 40.16 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====================\\u003e
|
157
|
+
\ ] 40.69 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====================\\u003e
|
158
|
+
\ ] 41.21 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======================\\u003e
|
159
|
+
\ ] 41.74 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======================\\u003e
|
160
|
+
\ ] 42.27 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======================\\u003e
|
161
|
+
\ ] 42.8 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======================\\u003e
|
162
|
+
\ ] 43.33 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======================\\u003e
|
163
|
+
\ ] 43.86 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44383585,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======================\\u003e
|
164
|
+
\ ] 44.38 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44908544,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======================\\u003e
|
165
|
+
\ ] 44.91 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45436928,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======================\\u003e
|
166
|
+
\ ] 45.44 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45965312,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========================\\u003e
|
167
|
+
\ ] 45.97 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46493696,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========================\\u003e
|
168
|
+
\ ] 46.49 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022080,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========================\\u003e
|
169
|
+
\ ] 47.02 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47550464,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========================\\u003e
|
170
|
+
\ ] 47.55 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48078848,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========================\\u003e
|
171
|
+
\ ] 48.08 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48607232,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========================\\u003e
|
172
|
+
\ ] 48.61 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49135616,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========================\\u003e
|
173
|
+
\ ] 49.14 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49664000,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========================\\u003e
|
174
|
+
\ ] 49.66 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50189521,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========================\\u003e
|
175
|
+
\ ] 50.19 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50716672,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========================\\u003e
|
176
|
+
\ ] 50.72 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51245056,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========================\\u003e
|
177
|
+
\ ] 51.25 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51769791,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========================\\u003e
|
178
|
+
\ ] 51.77 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52297728,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========================\\u003e
|
179
|
+
\ ] 52.3 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52826112,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========================\\u003e
|
180
|
+
\ ] 52.83 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53350594,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============================\\u003e
|
181
|
+
\ ] 53.35 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53878346,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============================\\u003e
|
182
|
+
\ ] 53.88 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54403072,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============================\\u003e
|
183
|
+
\ ] 54.4 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54931701,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============================\\u003e
|
184
|
+
\ ] 54.93 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55459840,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============================\\u003e
|
185
|
+
\ ] 55.46 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55988224,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============================\\u003e
|
186
|
+
\ ] 55.99 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56515076,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============================\\u003e
|
187
|
+
\ ] 56.52 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57041490,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============================\\u003e
|
188
|
+
\ ] 57.04 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57567530,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============================\\u003e
|
189
|
+
\ ] 57.57 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58097101,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============================\\u003e
|
190
|
+
\ ] 58.1 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58621952,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============================\\u003e
|
191
|
+
\ ] 58.62 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59150825,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============================\\u003e
|
192
|
+
\ ] 59.15 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59679759,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============================\\u003e
|
193
|
+
\ ] 59.68 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60206135,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============================\\u003e
|
194
|
+
\ ] 60.21 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60731390,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================================\\u003e
|
195
|
+
\ ] 60.73 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61256241,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================================\\u003e
|
196
|
+
\ ] 61.26 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61783624,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================================\\u003e
|
197
|
+
\ ] 61.78 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62308352,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================================\\u003e
|
198
|
+
\ ] 62.31 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62835962,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================================\\u003e
|
199
|
+
\ ] 62.84 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63365985,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================================\\u003e
|
200
|
+
\ ] 63.37 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63897600,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================================\\u003e
|
201
|
+
\ ] 63.9 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64425984,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================================\\u003e
|
202
|
+
\ ] 64.43 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64951547,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==================================\\u003e
|
203
|
+
\ ] 64.95 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65477287,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==================================\\u003e
|
204
|
+
\ ] 65.48 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66002838,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==================================\\u003e
|
205
|
+
\ ] 66 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66527232,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===================================\\u003e
|
206
|
+
\ ] 66.53 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67058428,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===================================\\u003e
|
207
|
+
\ ] 67.06 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67585551,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===================================\\u003e
|
208
|
+
\ ] 67.59 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68113131,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===================================\\u003e
|
209
|
+
\ ] 68.11 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68639112,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====================================\\u003e
|
210
|
+
\ ] 68.64 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69167384,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====================================\\u003e
|
211
|
+
\ ] 69.17 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69692312,\"total\":94863360,\"start\":1393622963},\"progress\":\"[====================================\\u003e
|
212
|
+
\ ] 69.69 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70218071,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====================================\\u003e
|
213
|
+
\ ] 70.22 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70743386,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====================================\\u003e
|
214
|
+
\ ] 70.74 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71270400,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====================================\\u003e
|
215
|
+
\ ] 71.27 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71798784,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=====================================\\u003e
|
216
|
+
\ ] 71.8 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72324928,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======================================\\u003e
|
217
|
+
\ ] 72.32 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72851258,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======================================\\u003e
|
218
|
+
\ ] 72.85 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73375744,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======================================\\u003e
|
219
|
+
\ ] 73.38 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73904091,\"total\":94863360,\"start\":1393622963},\"progress\":\"[======================================\\u003e
|
220
|
+
\ ] 73.9 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74428416,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======================================\\u003e
|
221
|
+
\ ] 74.43 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74952715,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======================================\\u003e
|
222
|
+
\ ] 74.95 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75478532,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=======================================\\u003e
|
223
|
+
\ ] 75.48 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76006647,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========================================\\u003e
|
224
|
+
\ ] 76.01 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76533760,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========================================\\u003e
|
225
|
+
\ ] 76.53 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77067779,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========================================\\u003e
|
226
|
+
\ ] 77.07 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77594624,\"total\":94863360,\"start\":1393622963},\"progress\":\"[========================================\\u003e
|
227
|
+
\ ] 77.59 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78124063,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========================================\\u003e
|
228
|
+
\ ] 78.12 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78651392,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========================================\\u003e
|
229
|
+
\ ] 78.65 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79184834,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=========================================\\u003e
|
230
|
+
\ ] 79.18 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79711231,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========================================\\u003e
|
231
|
+
\ ] 79.71 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80239069,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========================================\\u003e
|
232
|
+
\ ] 80.24 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80764928,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========================================\\u003e
|
233
|
+
\ ] 80.76 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81290784,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==========================================\\u003e
|
234
|
+
\ ] 81.29 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81819342,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========================================\\u003e
|
235
|
+
\ ] 81.82 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82344206,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========================================\\u003e
|
236
|
+
\ ] 82.34 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82869115,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========================================\\u003e
|
237
|
+
\ ] 82.87 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83393910,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===========================================\\u003e
|
238
|
+
\ ] 83.39 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83918848,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============================================\\u003e
|
239
|
+
\ ] 83.92 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84447232,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============================================\\u003e
|
240
|
+
\ ] 84.45 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84975616,\"total\":94863360,\"start\":1393622963},\"progress\":\"[============================================\\u003e
|
241
|
+
\ ] 84.98 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85506859,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============================================\\u003e
|
242
|
+
\ ] 85.51 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86032106,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============================================\\u003e
|
243
|
+
\ ] 86.03 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86559316,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============================================\\u003e
|
244
|
+
\ ] 86.56 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87086158,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=============================================\\u003e
|
245
|
+
\ ] 87.09 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87612662,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============================================\\u003e
|
246
|
+
\ ] 87.61 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88138808,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============================================\\u003e
|
247
|
+
\ ] 88.14 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88666236,\"total\":94863360,\"start\":1393622963},\"progress\":\"[==============================================\\u003e
|
248
|
+
\ ] 88.67 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89191986,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============================================\\u003e
|
249
|
+
\ ] 89.19 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89718784,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============================================\\u003e
|
250
|
+
\ ] 89.72 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90247168,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============================================\\u003e
|
251
|
+
\ ] 90.25 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90775552,\"total\":94863360,\"start\":1393622963},\"progress\":\"[===============================================\\u003e
|
252
|
+
\ ] 90.78 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91307188,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================================================\\u003e
|
253
|
+
\ ] 91.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91833442,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================================================\\u003e
|
254
|
+
\ ] 91.83 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92360704,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================================================\\u003e
|
255
|
+
\ ] 92.36 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92889088,\"total\":94863360,\"start\":1393622963},\"progress\":\"[================================================\\u003e
|
256
|
+
\ ] 92.89 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93419433,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================================================\\u003e
|
257
|
+
] 93.42 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93945856,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================================================\\u003e
|
258
|
+
] 93.95 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94474240,\"total\":94863360,\"start\":1393622963},\"progress\":\"[=================================================\\u003e
|
259
|
+
] 94.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
260
|
+
metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
261
|
+
fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4106,\"total\":10240,\"start\":1393622976},\"progress\":\"[====================\\u003e
|
262
|
+
\ ] 4.106 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
80
263
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
81
264
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"stream\":\" ---\\u003e
|
82
|
-
b750fe79269d\\n\"}{\"stream\":\"Successfully built b750fe79269d\\n\"}"
|
265
|
+
b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
|
83
266
|
http_version:
|
84
|
-
recorded_at:
|
267
|
+
recorded_at: Fri, 28 Feb 2014 21:29:36 GMT
|
85
268
|
- request:
|
86
269
|
method: post
|
87
|
-
uri: unix:///var/run/docker.sock/v1.
|
270
|
+
uri: unix:///var/run/docker.sock/v1.9/images/b750fe79269d/insert?path=%2Fstallman&url=http%3A%2F%2Fstallman.org
|
88
271
|
body:
|
89
272
|
encoding: US-ASCII
|
90
273
|
string: ''
|
91
274
|
headers:
|
92
275
|
User-Agent:
|
93
|
-
- Swipely/Docker-API 1.
|
276
|
+
- Swipely/Docker-API 1.8.4
|
94
277
|
Content-Type:
|
95
278
|
- text/plain
|
96
279
|
response:
|
@@ -101,26 +284,26 @@ http_interactions:
|
|
101
284
|
Content-Type:
|
102
285
|
- application/json
|
103
286
|
Date:
|
104
|
-
-
|
287
|
+
- Fri, 28 Feb 2014 21:29:38 GMT
|
105
288
|
Content-Length:
|
106
|
-
- '
|
289
|
+
- '210'
|
107
290
|
Connection:
|
108
291
|
- close
|
109
292
|
body:
|
110
293
|
encoding: UTF-8
|
111
|
-
string: "{\"status\":\"Downloading\",\"progressDetail\":{\"current\":
|
112
|
-
kB\",\"id\":\"b750fe79269d\"}{\"status\":\"
|
294
|
+
string: "{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93736,\"total\":-1,\"start\":1393622977},\"progress\":\"93.74
|
295
|
+
kB\",\"id\":\"b750fe79269d\"}{\"status\":\"ec54e7edec81632a90f1844fb706ca5f57bc476d08ffcf51cb5feb9d37a7c39b\"}\r\n"
|
113
296
|
http_version:
|
114
|
-
recorded_at:
|
297
|
+
recorded_at: Fri, 28 Feb 2014 21:29:38 GMT
|
115
298
|
- request:
|
116
299
|
method: post
|
117
|
-
uri: unix:///var/run/docker.sock/v1.
|
300
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/create
|
118
301
|
body:
|
119
302
|
encoding: UTF-8
|
120
|
-
string: "{\"Image\":\"
|
303
|
+
string: "{\"Image\":\"ec54e7edec81632a90f1844fb706ca5f57bc476d08ffcf51cb5feb9d37a7c39b\",\"Cmd\":[\"ls\",\"/\"]}"
|
121
304
|
headers:
|
122
305
|
User-Agent:
|
123
|
-
- Swipely/Docker-API 1.
|
306
|
+
- Swipely/Docker-API 1.8.4
|
124
307
|
Content-Type:
|
125
308
|
- application/json
|
126
309
|
response:
|
@@ -131,7 +314,7 @@ http_interactions:
|
|
131
314
|
Content-Type:
|
132
315
|
- application/json
|
133
316
|
Date:
|
134
|
-
-
|
317
|
+
- Fri, 28 Feb 2014 21:29:39 GMT
|
135
318
|
Content-Length:
|
136
319
|
- '90'
|
137
320
|
Connection:
|
@@ -139,18 +322,18 @@ http_interactions:
|
|
139
322
|
body:
|
140
323
|
encoding: UTF-8
|
141
324
|
string: |
|
142
|
-
{"Id":"
|
325
|
+
{"Id":"68eacec0e17645b561cecc11dcc97073f02a70a761bcb45370be154fdd210aa2","Warnings":null}
|
143
326
|
http_version:
|
144
|
-
recorded_at:
|
327
|
+
recorded_at: Fri, 28 Feb 2014 21:29:39 GMT
|
145
328
|
- request:
|
146
329
|
method: post
|
147
|
-
uri: unix:///var/run/docker.sock/v1.
|
330
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/68eacec0e17645b561cecc11dcc97073f02a70a761bcb45370be154fdd210aa2/start
|
148
331
|
body:
|
149
332
|
encoding: UTF-8
|
150
333
|
string: "{}"
|
151
334
|
headers:
|
152
335
|
User-Agent:
|
153
|
-
- Swipely/Docker-API 1.
|
336
|
+
- Swipely/Docker-API 1.8.4
|
154
337
|
Content-Type:
|
155
338
|
- application/json
|
156
339
|
response:
|
@@ -159,7 +342,7 @@ http_interactions:
|
|
159
342
|
message:
|
160
343
|
headers:
|
161
344
|
Date:
|
162
|
-
-
|
345
|
+
- Fri, 28 Feb 2014 21:29:40 GMT
|
163
346
|
Content-Length:
|
164
347
|
- '0'
|
165
348
|
Content-Type:
|
@@ -170,16 +353,16 @@ http_interactions:
|
|
170
353
|
encoding: UTF-8
|
171
354
|
string: ''
|
172
355
|
http_version:
|
173
|
-
recorded_at:
|
356
|
+
recorded_at: Fri, 28 Feb 2014 21:29:40 GMT
|
174
357
|
- request:
|
175
358
|
method: post
|
176
|
-
uri: unix:///var/run/docker.sock/v1.
|
359
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/68eacec0e17645b561cecc11dcc97073f02a70a761bcb45370be154fdd210aa2/attach?stderr=true&stdout=true&stream=true
|
177
360
|
body:
|
178
361
|
encoding: US-ASCII
|
179
362
|
string: ''
|
180
363
|
headers:
|
181
364
|
User-Agent:
|
182
|
-
- Swipely/Docker-API 1.
|
365
|
+
- Swipely/Docker-API 1.8.4
|
183
366
|
Content-Type:
|
184
367
|
- text/plain
|
185
368
|
response:
|
@@ -196,5 +379,5 @@ http_interactions:
|
|
196
379
|
Cm1udApvcHQKcHJvYwpyb290CnJ1bgpzYmluCnNlbGludXgKc3J2CnN0YWxs
|
197
380
|
bWFuCnN5cwp0bXAKdXNyCnZhcgo=
|
198
381
|
http_version:
|
199
|
-
recorded_at:
|
382
|
+
recorded_at: Fri, 28 Feb 2014 21:29:40 GMT
|
200
383
|
recorded_with: VCR 2.8.0
|