docker-api 1.9.1 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/lib/docker/container.rb +20 -3
- data/lib/docker/image.rb +2 -2
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +3 -3
- data/spec/docker/image_spec.rb +1 -1
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +1 -1
- 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 +63 -93
- 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 +4 -4
- 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 -9
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +21 -21
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +22 -22
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +11 -11
- 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 +17 -15
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +3 -3
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +11 -11
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +11 -11
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +34 -47
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +39 -35
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +15 -15
- 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 +37 -37
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +20 -19
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +37 -50
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +26 -115
- 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 +29 -15
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +5 -5
- 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 +28 -20
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +5 -5
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +5 -5
- 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 +6 -6
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +18 -19
- 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 +39 -31
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +4 -4
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +4 -4
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +8 -8
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +26 -209
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +51 -35
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +90 -40
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +26 -26
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +5 -5
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +28 -28
- 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 +49 -33
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +25 -18
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +16 -16
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +16 -16
- 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 +8 -8
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +24 -23
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +8 -8
- metadata +2 -2
@@ -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.10/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.9.1
|
12
12
|
Content-Type:
|
13
13
|
- application/tar
|
14
14
|
Transfer-Encoding:
|
@@ -21,7 +21,7 @@ http_interactions:
|
|
21
21
|
Content-Type:
|
22
22
|
- application/json
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Wed, 12 Mar 2014 13:32:19 GMT
|
25
25
|
Connection:
|
26
26
|
- close
|
27
27
|
Transfer-Encoding:
|
@@ -30,19 +30,19 @@ http_interactions:
|
|
30
30
|
encoding: UTF-8
|
31
31
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
32
32
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add / /\\n\"}\r\n{\"stream\":\"
|
33
|
-
---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e
|
34
|
-
built
|
33
|
+
---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 3755956b65f4\\n\"}\r\n{\"stream\":\"Successfully
|
34
|
+
built 3755956b65f4\\n\"}\r\n"
|
35
35
|
http_version:
|
36
|
-
recorded_at:
|
36
|
+
recorded_at: Wed, 12 Mar 2014 13:32:19 GMT
|
37
37
|
- request:
|
38
38
|
method: post
|
39
|
-
uri: unix:///var/run/docker.sock/v1.
|
39
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/create
|
40
40
|
body:
|
41
41
|
encoding: UTF-8
|
42
|
-
string: "{\"Image\":\"
|
42
|
+
string: "{\"Image\":\"3755956b65f4\",\"Cmd\":[\"cat\",\"/Dockerfile\"]}"
|
43
43
|
headers:
|
44
44
|
User-Agent:
|
45
|
-
- Swipely/Docker-API 1.
|
45
|
+
- Swipely/Docker-API 1.9.1
|
46
46
|
Content-Type:
|
47
47
|
- application/json
|
48
48
|
response:
|
@@ -53,7 +53,7 @@ http_interactions:
|
|
53
53
|
Content-Type:
|
54
54
|
- application/json
|
55
55
|
Date:
|
56
|
-
-
|
56
|
+
- Wed, 12 Mar 2014 13:32:20 GMT
|
57
57
|
Content-Length:
|
58
58
|
- '90'
|
59
59
|
Connection:
|
@@ -61,18 +61,18 @@ http_interactions:
|
|
61
61
|
body:
|
62
62
|
encoding: UTF-8
|
63
63
|
string: |
|
64
|
-
{"Id":"
|
64
|
+
{"Id":"6c609c7557b0bb9064a4de9f9d4d05e152f9c221d56b2b69cf35cad18ed943a9","Warnings":null}
|
65
65
|
http_version:
|
66
|
-
recorded_at:
|
66
|
+
recorded_at: Wed, 12 Mar 2014 13:32:20 GMT
|
67
67
|
- request:
|
68
68
|
method: post
|
69
|
-
uri: unix:///var/run/docker.sock/v1.
|
69
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/6c609c7557b0bb9064a4de9f9d4d05e152f9c221d56b2b69cf35cad18ed943a9/start
|
70
70
|
body:
|
71
71
|
encoding: UTF-8
|
72
72
|
string: "{}"
|
73
73
|
headers:
|
74
74
|
User-Agent:
|
75
|
-
- Swipely/Docker-API 1.
|
75
|
+
- Swipely/Docker-API 1.9.1
|
76
76
|
Content-Type:
|
77
77
|
- application/json
|
78
78
|
response:
|
@@ -81,7 +81,7 @@ http_interactions:
|
|
81
81
|
message:
|
82
82
|
headers:
|
83
83
|
Date:
|
84
|
-
-
|
84
|
+
- Wed, 12 Mar 2014 13:32:20 GMT
|
85
85
|
Content-Length:
|
86
86
|
- '0'
|
87
87
|
Content-Type:
|
@@ -92,16 +92,16 @@ http_interactions:
|
|
92
92
|
encoding: UTF-8
|
93
93
|
string: ''
|
94
94
|
http_version:
|
95
|
-
recorded_at:
|
95
|
+
recorded_at: Wed, 12 Mar 2014 13:32:20 GMT
|
96
96
|
- request:
|
97
97
|
method: post
|
98
|
-
uri: unix:///var/run/docker.sock/v1.
|
98
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/6c609c7557b0bb9064a4de9f9d4d05e152f9c221d56b2b69cf35cad18ed943a9/attach?stderr=true&stdout=true&stream=true
|
99
99
|
body:
|
100
100
|
encoding: US-ASCII
|
101
101
|
string: ''
|
102
102
|
headers:
|
103
103
|
User-Agent:
|
104
|
-
- Swipely/Docker-API 1.
|
104
|
+
- Swipely/Docker-API 1.9.1
|
105
105
|
Content-Type:
|
106
106
|
- text/plain
|
107
107
|
response:
|
@@ -116,16 +116,16 @@ http_interactions:
|
|
116
116
|
string: !binary |-
|
117
117
|
AQAAAAAAABJmcm9tIGJhc2UKYWRkIC8gLwo=
|
118
118
|
http_version:
|
119
|
-
recorded_at:
|
119
|
+
recorded_at: Wed, 12 Mar 2014 13:32:20 GMT
|
120
120
|
- request:
|
121
121
|
method: get
|
122
|
-
uri: unix:///var/run/docker.sock/v1.
|
122
|
+
uri: unix:///var/run/docker.sock/v1.10/images/json
|
123
123
|
body:
|
124
124
|
encoding: US-ASCII
|
125
125
|
string: ''
|
126
126
|
headers:
|
127
127
|
User-Agent:
|
128
|
-
- Swipely/Docker-API 1.
|
128
|
+
- Swipely/Docker-API 1.9.1
|
129
129
|
Content-Type:
|
130
130
|
- text/plain
|
131
131
|
response:
|
@@ -136,7 +136,7 @@ http_interactions:
|
|
136
136
|
Content-Type:
|
137
137
|
- application/json
|
138
138
|
Date:
|
139
|
-
-
|
139
|
+
- Wed, 12 Mar 2014 13:32:20 GMT
|
140
140
|
Connection:
|
141
141
|
- close
|
142
142
|
Transfer-Encoding:
|
@@ -144,16 +144,24 @@ http_interactions:
|
|
144
144
|
body:
|
145
145
|
encoding: UTF-8
|
146
146
|
string: |-
|
147
|
-
[{"Created":
|
148
|
-
,{"Created":
|
149
|
-
,{"Created":
|
150
|
-
,{"Created":
|
151
|
-
,{"Created":
|
152
|
-
,{"Created":
|
153
|
-
,{"Created":
|
154
|
-
,{"Created":
|
147
|
+
[{"Created":1394631138,"Id":"3755956b65f41e7ad8d541b736acf8edf332c950357ec82189f5b1a8e1700eed","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["swipely/base2:latest"],"Size":18,"VirtualSize":175307053}
|
148
|
+
,{"Created":1394631136,"Id":"60ea3f3c3d1a52caee756886cf45d289613951ce434530a80c75b999125d886d","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["swipely/base:latest"],"Size":69,"VirtualSize":175307104}
|
149
|
+
,{"Created":1394631126,"Id":"c5d4fa6351af82e8996ee25569165bdbc02c3525fe6b3a59a527495e3f6a057e","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["nahiluhmot/base2:latest"],"Size":69,"VirtualSize":175307104}
|
150
|
+
,{"Created":1394631122,"Id":"d0942d483d0165ac12349291309b216b0b8ae653b3589bc451a26e46cdfbfa4f","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
151
|
+
,{"Created":1394631119,"Id":"6d2c00eb782a1de80c2466d92f573404734d567a0a18549d0a466cd7bdd12ec0","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
152
|
+
,{"Created":1394631117,"Id":"ecc20c6798796473052dda1b1a6fb8848297a8fc53602312780feee743170b6b","ParentId":"1a7d30c2eb9387e99941b1a777b6f4e0f27115967a21a6c6b567fae59a2735b8","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":328,"VirtualSize":175307401}
|
153
|
+
,{"Created":1394631113,"Id":"2dc4b846cfcb793cfe7784086fdcc5ef8927db1004814493da8fdcfe2ee4cf5c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
154
|
+
,{"Created":1394631111,"Id":"cdd6204a56c3f61206af7f7f54250ef32345239d69ed4eb5a0c33d5607ec131b","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":87916,"VirtualSize":175394951}
|
155
|
+
,{"Created":1394631105,"Id":"11967a8e57f5a4535fc81770a3645f10ec7abf92f22308fcb15288bd30a043f7","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":69,"VirtualSize":175307104}
|
156
|
+
,{"Created":1394631103,"Id":"8564cd49afd7c8c41e5230408f71d3a4214d8cb6f91004ac89fccebc98843516","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":69,"VirtualSize":175307104}
|
157
|
+
,{"Created":1394631080,"Id":"2e0a9a843f663c7a7159aef66386b60e3e5db6eb48dce592844f8716b4d3f3f9","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":104,"VirtualSize":175307139}
|
158
|
+
,{"Created":1391448676,"Id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","ParentId":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","RepoTags":["ubuntu:13.10","ubuntu:saucy"],"Size":182125825,"VirtualSize":182125825}
|
159
|
+
,{"Created":1391448539,"Id":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","ParentId":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","RepoTags":["ubuntu:13.04","ubuntu:raring"],"Size":170192839,"VirtualSize":170192839}
|
160
|
+
,{"Created":1391448413,"Id":"5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794","ParentId":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","RepoTags":["ubuntu:12.10","ubuntu:quantal"],"Size":161412295,"VirtualSize":161412295}
|
161
|
+
,{"Created":1391448301,"Id":"9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232","ParentId":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","RepoTags":["ubuntu:10.04","ubuntu:lucid"],"Size":182964289,"VirtualSize":182964289}
|
162
|
+
,{"Created":1391448149,"Id":"9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6","ParentId":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","RepoTags":["ubuntu:precise","ubuntu:12.04","ubuntu:latest"],"Size":204705001,"VirtualSize":204705001}
|
155
163
|
,{"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}
|
156
164
|
]
|
157
165
|
http_version:
|
158
|
-
recorded_at:
|
166
|
+
recorded_at: Wed, 12 Mar 2014 13:32:20 GMT
|
159
167
|
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.10/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.9.1
|
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
|
+
- Wed, 12 Mar 2014 13:32:12 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -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: Wed, 12 Mar 2014 13:32:13 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.10/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.9.1
|
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
|
+
- Wed, 12 Mar 2014 13:32:13 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '643'
|
25
25
|
Connection:
|
@@ -28,5 +28,5 @@ http_interactions:
|
|
28
28
|
encoding: UTF-8
|
29
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: Wed, 12 Mar 2014 13:32:13 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.10/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.9.1
|
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
|
+
- Wed, 12 Mar 2014 13:32:09 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: Wed, 12 Mar 2014 13:32:10 GMT
|
38
38
|
- request:
|
39
39
|
method: get
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.10/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.
|
46
|
+
- Swipely/Docker-API 1.9.1
|
47
47
|
Content-Type:
|
48
48
|
- text/plain
|
49
49
|
response:
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- application/json
|
56
56
|
Date:
|
57
|
-
-
|
57
|
+
- Wed, 12 Mar 2014 13:32:10 GMT
|
58
58
|
Content-Length:
|
59
59
|
- '324'
|
60
60
|
Connection:
|
@@ -66,5 +66,5 @@ http_interactions:
|
|
66
66
|
,{"Created":1364068391,"CreatedBy":"","Id":"27cf784147099545","Size":175306958,"Tags":null}
|
67
67
|
]
|
68
68
|
http_version:
|
69
|
-
recorded_at:
|
69
|
+
recorded_at: Wed, 12 Mar 2014 13:32:10 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.10/build
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: !binary |-
|
9
9
|
RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
10
10
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
11
11
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
|
12
|
-
|
12
|
+
ADEyMzEwMDYwNzA0ADAxMzI2NQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
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.9.1
|
58
58
|
Content-Type:
|
59
59
|
- application/json
|
60
60
|
response:
|
@@ -65,7 +65,7 @@ http_interactions:
|
|
65
65
|
Content-Type:
|
66
66
|
- application/json
|
67
67
|
Date:
|
68
|
-
-
|
68
|
+
- Wed, 12 Mar 2014 13:31:48 GMT
|
69
69
|
Connection:
|
70
70
|
- close
|
71
71
|
Transfer-Encoding:
|
@@ -75,205 +75,22 @@ http_interactions:
|
|
75
75
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"status\":\"Pulling repository
|
76
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
|
-
|
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
|
78
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
79
|
+
complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Download
|
263
80
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
264
81
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"stream\":\" ---\\u003e
|
265
82
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
|
266
83
|
http_version:
|
267
|
-
recorded_at:
|
84
|
+
recorded_at: Wed, 12 Mar 2014 13:31:49 GMT
|
268
85
|
- request:
|
269
86
|
method: post
|
270
|
-
uri: unix:///var/run/docker.sock/v1.
|
87
|
+
uri: unix:///var/run/docker.sock/v1.10/images/b750fe79269d/insert?path=%2Fstallman&url=http%3A%2F%2Fstallman.org
|
271
88
|
body:
|
272
89
|
encoding: US-ASCII
|
273
90
|
string: ''
|
274
91
|
headers:
|
275
92
|
User-Agent:
|
276
|
-
- Swipely/Docker-API 1.
|
93
|
+
- Swipely/Docker-API 1.9.1
|
277
94
|
Content-Type:
|
278
95
|
- text/plain
|
279
96
|
response:
|
@@ -284,26 +101,26 @@ http_interactions:
|
|
284
101
|
Content-Type:
|
285
102
|
- application/json
|
286
103
|
Date:
|
287
|
-
-
|
104
|
+
- Wed, 12 Mar 2014 13:31:51 GMT
|
288
105
|
Content-Length:
|
289
106
|
- '210'
|
290
107
|
Connection:
|
291
108
|
- close
|
292
109
|
body:
|
293
110
|
encoding: UTF-8
|
294
|
-
string: "{\"status\":\"Downloading\",\"progressDetail\":{\"current\":
|
295
|
-
kB\",\"id\":\"b750fe79269d\"}{\"status\":\"
|
111
|
+
string: "{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87916,\"total\":-1,\"start\":1394631110},\"progress\":\"87.92
|
112
|
+
kB\",\"id\":\"b750fe79269d\"}{\"status\":\"cdd6204a56c3f61206af7f7f54250ef32345239d69ed4eb5a0c33d5607ec131b\"}\r\n"
|
296
113
|
http_version:
|
297
|
-
recorded_at:
|
114
|
+
recorded_at: Wed, 12 Mar 2014 13:31:51 GMT
|
298
115
|
- request:
|
299
116
|
method: post
|
300
|
-
uri: unix:///var/run/docker.sock/v1.
|
117
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/create
|
301
118
|
body:
|
302
119
|
encoding: UTF-8
|
303
|
-
string: "{\"Image\":\"
|
120
|
+
string: "{\"Image\":\"cdd6204a56c3f61206af7f7f54250ef32345239d69ed4eb5a0c33d5607ec131b\",\"Cmd\":[\"ls\",\"/\"]}"
|
304
121
|
headers:
|
305
122
|
User-Agent:
|
306
|
-
- Swipely/Docker-API 1.
|
123
|
+
- Swipely/Docker-API 1.9.1
|
307
124
|
Content-Type:
|
308
125
|
- application/json
|
309
126
|
response:
|
@@ -314,7 +131,7 @@ http_interactions:
|
|
314
131
|
Content-Type:
|
315
132
|
- application/json
|
316
133
|
Date:
|
317
|
-
-
|
134
|
+
- Wed, 12 Mar 2014 13:31:51 GMT
|
318
135
|
Content-Length:
|
319
136
|
- '90'
|
320
137
|
Connection:
|
@@ -322,18 +139,18 @@ http_interactions:
|
|
322
139
|
body:
|
323
140
|
encoding: UTF-8
|
324
141
|
string: |
|
325
|
-
{"Id":"
|
142
|
+
{"Id":"c2aeae908a170159e139b436f65fdbefd2f35bdb3eed43a9cf7c9605c14b2a24","Warnings":null}
|
326
143
|
http_version:
|
327
|
-
recorded_at:
|
144
|
+
recorded_at: Wed, 12 Mar 2014 13:31:51 GMT
|
328
145
|
- request:
|
329
146
|
method: post
|
330
|
-
uri: unix:///var/run/docker.sock/v1.
|
147
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/c2aeae908a170159e139b436f65fdbefd2f35bdb3eed43a9cf7c9605c14b2a24/start
|
331
148
|
body:
|
332
149
|
encoding: UTF-8
|
333
150
|
string: "{}"
|
334
151
|
headers:
|
335
152
|
User-Agent:
|
336
|
-
- Swipely/Docker-API 1.
|
153
|
+
- Swipely/Docker-API 1.9.1
|
337
154
|
Content-Type:
|
338
155
|
- application/json
|
339
156
|
response:
|
@@ -342,7 +159,7 @@ http_interactions:
|
|
342
159
|
message:
|
343
160
|
headers:
|
344
161
|
Date:
|
345
|
-
-
|
162
|
+
- Wed, 12 Mar 2014 13:31:51 GMT
|
346
163
|
Content-Length:
|
347
164
|
- '0'
|
348
165
|
Content-Type:
|
@@ -353,16 +170,16 @@ http_interactions:
|
|
353
170
|
encoding: UTF-8
|
354
171
|
string: ''
|
355
172
|
http_version:
|
356
|
-
recorded_at:
|
173
|
+
recorded_at: Wed, 12 Mar 2014 13:31:51 GMT
|
357
174
|
- request:
|
358
175
|
method: post
|
359
|
-
uri: unix:///var/run/docker.sock/v1.
|
176
|
+
uri: unix:///var/run/docker.sock/v1.10/containers/c2aeae908a170159e139b436f65fdbefd2f35bdb3eed43a9cf7c9605c14b2a24/attach?stderr=true&stdout=true&stream=true
|
360
177
|
body:
|
361
178
|
encoding: US-ASCII
|
362
179
|
string: ''
|
363
180
|
headers:
|
364
181
|
User-Agent:
|
365
|
-
- Swipely/Docker-API 1.
|
182
|
+
- Swipely/Docker-API 1.9.1
|
366
183
|
Content-Type:
|
367
184
|
- text/plain
|
368
185
|
response:
|
@@ -379,5 +196,5 @@ http_interactions:
|
|
379
196
|
Cm1udApvcHQKcHJvYwpyb290CnJ1bgpzYmluCnNlbGludXgKc3J2CnN0YWxs
|
380
197
|
bWFuCnN5cwp0bXAKdXNyCnZhcgo=
|
381
198
|
http_version:
|
382
|
-
recorded_at:
|
199
|
+
recorded_at: Wed, 12 Mar 2014 13:31:52 GMT
|
383
200
|
recorded_with: VCR 2.8.0
|