docker-api 1.15.0 → 1.16.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 +26 -1
- data/Rakefile +37 -0
- data/TESTING.md +61 -0
- data/lib/docker.rb +8 -1
- data/lib/docker/container.rb +44 -80
- data/lib/docker/exec.rb +98 -0
- data/lib/docker/image.rb +4 -3
- data/lib/docker/util.rb +79 -0
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +192 -56
- data/spec/docker/event_spec.rb +4 -4
- data/spec/docker/exec_spec.rb +197 -0
- data/spec/docker/image_spec.rb +131 -102
- data/spec/docker_spec.rb +37 -27
- data/spec/fixtures/build_from_dir/Dockerfile +2 -2
- data/spec/fixtures/export.tar +0 -0
- data/spec/fixtures/top/Dockerfile +2 -2
- data/spec/spec_helper.rb +10 -0
- data/spec/support/vcr.rb +5 -0
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -8
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +46 -139
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +62 -20
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +62 -20
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +71 -28
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +69 -23
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +134 -0
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +73 -290
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +51 -211
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +36 -17
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +30 -9
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -23
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +151 -0
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +153 -0
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +153 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +100 -0
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +152 -0
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +263 -28
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +36 -17
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +36 -17
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +55 -53
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +74 -96
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +34 -15
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +98 -45
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +88 -56
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +39 -22
- 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 +212 -60
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +45 -30
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +54 -83
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +46 -30
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +103 -40
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +81 -57
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +39 -22
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +39 -22
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +128 -0
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +155 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +152 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +152 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +151 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +151 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +151 -0
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +86 -200
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +10 -14
- 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 +147 -39
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +10 -14
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +12 -14
- 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 +118 -16
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +118 -14
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +109 -37
- 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 +214 -60
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +41 -2631
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +12 -19
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +17 -198
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +26 -30
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +246 -22
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +35 -10
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +1249 -74
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +84 -94
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +70 -92
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +125 -98
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +13 -60
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +190 -135
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +15 -198
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +169 -264
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +175 -4543
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +90 -206
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +300 -0
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +77 -207
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +77 -207
- 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 +160 -0
- 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 +16 -197
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +151 -73
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +42 -196
- metadata +67 -41
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +0 -58
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/returns_the_error_message.yml +0 -163
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +0 -58
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +0 -41
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +0 -276
@@ -1,58 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/create
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["true"],"Image":"base"}'
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.11.2
|
12
|
-
Content-Type:
|
13
|
-
- application/json
|
14
|
-
response:
|
15
|
-
status:
|
16
|
-
code: 201
|
17
|
-
message:
|
18
|
-
headers:
|
19
|
-
Content-Type:
|
20
|
-
- application/json
|
21
|
-
Date:
|
22
|
-
- Thu, 26 Jun 2014 19:47:30 GMT
|
23
|
-
Content-Length:
|
24
|
-
- '90'
|
25
|
-
Connection:
|
26
|
-
- close
|
27
|
-
body:
|
28
|
-
encoding: UTF-8
|
29
|
-
string: |
|
30
|
-
{"Id":"7ab57bdc4f66047b1f2b58ae4c4387c82bce8bf1ce9296924b6854765e858da6","Warnings":null}
|
31
|
-
http_version:
|
32
|
-
recorded_at: Thu, 26 Jun 2014 19:47:30 GMT
|
33
|
-
- request:
|
34
|
-
method: post
|
35
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/7ab57bdc4f66047b1f2b58ae4c4387c82bce8bf1ce9296924b6854765e858da6/start
|
36
|
-
body:
|
37
|
-
encoding: UTF-8
|
38
|
-
string: '{}'
|
39
|
-
headers:
|
40
|
-
User-Agent:
|
41
|
-
- Swipely/Docker-API 1.11.2
|
42
|
-
Content-Type:
|
43
|
-
- application/json
|
44
|
-
response:
|
45
|
-
status:
|
46
|
-
code: 204
|
47
|
-
message:
|
48
|
-
headers:
|
49
|
-
Date:
|
50
|
-
- Thu, 26 Jun 2014 19:47:30 GMT
|
51
|
-
Connection:
|
52
|
-
- close
|
53
|
-
body:
|
54
|
-
encoding: UTF-8
|
55
|
-
string: ''
|
56
|
-
http_version:
|
57
|
-
recorded_at: Thu, 26 Jun 2014 19:47:30 GMT
|
58
|
-
recorded_with: VCR 2.9.2
|
@@ -1,163 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/create
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: ! '{"Cmd":"echo hello","Image":"base"}'
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.13.6
|
12
|
-
Content-Type:
|
13
|
-
- application/json
|
14
|
-
response:
|
15
|
-
status:
|
16
|
-
code: 201
|
17
|
-
message:
|
18
|
-
headers:
|
19
|
-
!binary "Q29udGVudC1UeXBl":
|
20
|
-
- !binary |-
|
21
|
-
YXBwbGljYXRpb24vanNvbg==
|
22
|
-
!binary "RGF0ZQ==":
|
23
|
-
- !binary |-
|
24
|
-
TW9uLCAyNyBPY3QgMjAxNCAxNDo0NDo0NiBHTVQ=
|
25
|
-
!binary "Q29udGVudC1MZW5ndGg=":
|
26
|
-
- !binary |-
|
27
|
-
OTA=
|
28
|
-
body:
|
29
|
-
encoding: US-ASCII
|
30
|
-
string: ! '{"Id":"3fdba310d24ef8a2daeaa082cde837623c38a29bcf8c7ac47e955448a9a44070","Warnings":null}
|
31
|
-
|
32
|
-
'
|
33
|
-
http_version:
|
34
|
-
recorded_at: Mon, 27 Oct 2014 14:44:46 GMT
|
35
|
-
- request:
|
36
|
-
method: get
|
37
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/3fdba310d24ef8a2daeaa082cde837623c38a29bcf8c7ac47e955448a9a44070/logs
|
38
|
-
body:
|
39
|
-
encoding: US-ASCII
|
40
|
-
string: ''
|
41
|
-
headers:
|
42
|
-
User-Agent:
|
43
|
-
- Swipely/Docker-API 1.13.6
|
44
|
-
Content-Type:
|
45
|
-
- text/plain
|
46
|
-
response:
|
47
|
-
status:
|
48
|
-
code: 400
|
49
|
-
message:
|
50
|
-
headers:
|
51
|
-
!binary "Q29udGVudC1UeXBl":
|
52
|
-
- !binary |-
|
53
|
-
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
54
|
-
!binary "RGF0ZQ==":
|
55
|
-
- !binary |-
|
56
|
-
TW9uLCAyNyBPY3QgMjAxNCAxNDo0NDo0NiBHTVQ=
|
57
|
-
!binary "Q29udGVudC1MZW5ndGg=":
|
58
|
-
- !binary |-
|
59
|
-
NTI=
|
60
|
-
body:
|
61
|
-
encoding: US-ASCII
|
62
|
-
string: ! 'Bad parameters: you must choose at least one stream
|
63
|
-
|
64
|
-
'
|
65
|
-
http_version:
|
66
|
-
recorded_at: Mon, 27 Oct 2014 14:44:46 GMT
|
67
|
-
- request:
|
68
|
-
method: get
|
69
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/3fdba310d24ef8a2daeaa082cde837623c38a29bcf8c7ac47e955448a9a44070/logs
|
70
|
-
body:
|
71
|
-
encoding: US-ASCII
|
72
|
-
string: ''
|
73
|
-
headers:
|
74
|
-
User-Agent:
|
75
|
-
- Swipely/Docker-API 1.13.6
|
76
|
-
Content-Type:
|
77
|
-
- text/plain
|
78
|
-
response:
|
79
|
-
status:
|
80
|
-
code: 400
|
81
|
-
message:
|
82
|
-
headers:
|
83
|
-
!binary "Q29udGVudC1UeXBl":
|
84
|
-
- !binary |-
|
85
|
-
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
86
|
-
!binary "RGF0ZQ==":
|
87
|
-
- !binary |-
|
88
|
-
TW9uLCAyNyBPY3QgMjAxNCAxNDo0NDo0NiBHTVQ=
|
89
|
-
!binary "Q29udGVudC1MZW5ndGg=":
|
90
|
-
- !binary |-
|
91
|
-
NTI=
|
92
|
-
body:
|
93
|
-
encoding: US-ASCII
|
94
|
-
string: ! 'Bad parameters: you must choose at least one stream
|
95
|
-
|
96
|
-
'
|
97
|
-
http_version:
|
98
|
-
recorded_at: Mon, 27 Oct 2014 14:44:46 GMT
|
99
|
-
- request:
|
100
|
-
method: get
|
101
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/3fdba310d24ef8a2daeaa082cde837623c38a29bcf8c7ac47e955448a9a44070/logs
|
102
|
-
body:
|
103
|
-
encoding: US-ASCII
|
104
|
-
string: ''
|
105
|
-
headers:
|
106
|
-
User-Agent:
|
107
|
-
- Swipely/Docker-API 1.13.6
|
108
|
-
Content-Type:
|
109
|
-
- text/plain
|
110
|
-
response:
|
111
|
-
status:
|
112
|
-
code: 400
|
113
|
-
message:
|
114
|
-
headers:
|
115
|
-
!binary "Q29udGVudC1UeXBl":
|
116
|
-
- !binary |-
|
117
|
-
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
118
|
-
!binary "RGF0ZQ==":
|
119
|
-
- !binary |-
|
120
|
-
TW9uLCAyNyBPY3QgMjAxNCAxNDo0NDo0NiBHTVQ=
|
121
|
-
!binary "Q29udGVudC1MZW5ndGg=":
|
122
|
-
- !binary |-
|
123
|
-
NTI=
|
124
|
-
body:
|
125
|
-
encoding: US-ASCII
|
126
|
-
string: ! 'Bad parameters: you must choose at least one stream
|
127
|
-
|
128
|
-
'
|
129
|
-
http_version:
|
130
|
-
recorded_at: Mon, 27 Oct 2014 14:44:46 GMT
|
131
|
-
- request:
|
132
|
-
method: get
|
133
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/3fdba310d24ef8a2daeaa082cde837623c38a29bcf8c7ac47e955448a9a44070/logs
|
134
|
-
body:
|
135
|
-
encoding: US-ASCII
|
136
|
-
string: ''
|
137
|
-
headers:
|
138
|
-
User-Agent:
|
139
|
-
- Swipely/Docker-API 1.13.6
|
140
|
-
Content-Type:
|
141
|
-
- text/plain
|
142
|
-
response:
|
143
|
-
status:
|
144
|
-
code: 400
|
145
|
-
message:
|
146
|
-
headers:
|
147
|
-
!binary "Q29udGVudC1UeXBl":
|
148
|
-
- !binary |-
|
149
|
-
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
150
|
-
!binary "RGF0ZQ==":
|
151
|
-
- !binary |-
|
152
|
-
TW9uLCAyNyBPY3QgMjAxNCAxNDo0NDo0NiBHTVQ=
|
153
|
-
!binary "Q29udGVudC1MZW5ndGg=":
|
154
|
-
- !binary |-
|
155
|
-
NTI=
|
156
|
-
body:
|
157
|
-
encoding: US-ASCII
|
158
|
-
string: ! 'Bad parameters: you must choose at least one stream
|
159
|
-
|
160
|
-
'
|
161
|
-
http_version:
|
162
|
-
recorded_at: Mon, 27 Oct 2014 14:44:46 GMT
|
163
|
-
recorded_with: VCR 2.9.2
|
@@ -1,58 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/create
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["sleep","5"],"Image":"base"}'
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.11.2
|
12
|
-
Content-Type:
|
13
|
-
- application/json
|
14
|
-
response:
|
15
|
-
status:
|
16
|
-
code: 201
|
17
|
-
message:
|
18
|
-
headers:
|
19
|
-
Content-Type:
|
20
|
-
- application/json
|
21
|
-
Date:
|
22
|
-
- Thu, 26 Jun 2014 19:46:41 GMT
|
23
|
-
Content-Length:
|
24
|
-
- '90'
|
25
|
-
Connection:
|
26
|
-
- close
|
27
|
-
body:
|
28
|
-
encoding: UTF-8
|
29
|
-
string: |
|
30
|
-
{"Id":"acd7aa98b5ff2e1496f5351b1198442d60fa0e184cb1d14eba16741c5d43e752","Warnings":null}
|
31
|
-
http_version:
|
32
|
-
recorded_at: Thu, 26 Jun 2014 19:46:41 GMT
|
33
|
-
- request:
|
34
|
-
method: post
|
35
|
-
uri: unix:///var/run/docker.sock/v1.12/containers/acd7aa98b5ff2e1496f5351b1198442d60fa0e184cb1d14eba16741c5d43e752/start
|
36
|
-
body:
|
37
|
-
encoding: UTF-8
|
38
|
-
string: '{}'
|
39
|
-
headers:
|
40
|
-
User-Agent:
|
41
|
-
- Swipely/Docker-API 1.11.2
|
42
|
-
Content-Type:
|
43
|
-
- application/json
|
44
|
-
response:
|
45
|
-
status:
|
46
|
-
code: 204
|
47
|
-
message:
|
48
|
-
headers:
|
49
|
-
Date:
|
50
|
-
- Thu, 26 Jun 2014 19:46:42 GMT
|
51
|
-
Connection:
|
52
|
-
- close
|
53
|
-
body:
|
54
|
-
encoding: UTF-8
|
55
|
-
string: ''
|
56
|
-
http_version:
|
57
|
-
recorded_at: Thu, 26 Jun 2014 19:46:42 GMT
|
58
|
-
recorded_with: VCR 2.9.2
|
@@ -1,41 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.12/build
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.11.2
|
12
|
-
Content-Type:
|
13
|
-
- application/tar
|
14
|
-
Transfer-Encoding:
|
15
|
-
- chunked
|
16
|
-
X-Registry-Auth:
|
17
|
-
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKioqKiIsImVtYWlsIjoiaHVsaWhhbi50b20xNTlAZ21haWwuY29tIn0=
|
18
|
-
X-Registry-Config:
|
19
|
-
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKioqKiIsImVtYWlsIjoiaHVsaWhhbi50b20xNTlAZ21haWwuY29tIn0=
|
20
|
-
response:
|
21
|
-
status:
|
22
|
-
code: 200
|
23
|
-
message:
|
24
|
-
headers:
|
25
|
-
Content-Type:
|
26
|
-
- application/json
|
27
|
-
Date:
|
28
|
-
- Thu, 26 Jun 2014 20:37:17 GMT
|
29
|
-
Connection:
|
30
|
-
- close
|
31
|
-
Transfer-Encoding:
|
32
|
-
- ''
|
33
|
-
body:
|
34
|
-
encoding: UTF-8
|
35
|
-
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
36
|
-
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add / /\\n\"}\r\n{\"stream\":\"
|
37
|
-
---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e bd7ca82afb11\\n\"}\r\n{\"stream\":\"Successfully
|
38
|
-
built bd7ca82afb11\\n\"}\r\n"
|
39
|
-
http_version:
|
40
|
-
recorded_at: Thu, 26 Jun 2014 20:37:17 GMT
|
41
|
-
recorded_with: VCR 2.9.2
|
@@ -1,276 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.12/images/create?fromImage=base
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.13.6
|
12
|
-
Content-Type:
|
13
|
-
- text/plain
|
14
|
-
response:
|
15
|
-
status:
|
16
|
-
code: 200
|
17
|
-
message:
|
18
|
-
headers:
|
19
|
-
Content-Type:
|
20
|
-
- application/json
|
21
|
-
Date:
|
22
|
-
- Wed, 29 Oct 2014 22:05:55 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
|
26
|
-
(ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
27
|
-
image (ubuntu-quantl) from base, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
28
|
-
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
29
|
-
metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
30
|
-
fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528881,\"total\":94863360,\"start\":1414620356},\"progress\":\"[\\u003e
|
31
|
-
\ ] 528.9 kB/94.86 MB 3m34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1069553,\"total\":94863360,\"start\":1414620356},\"progress\":\"[\\u003e
|
32
|
-
\ ] 1.07 MB/94.86 MB 1m53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1610225,\"total\":94863360,\"start\":1414620356},\"progress\":\"[\\u003e
|
33
|
-
\ ] 1.61 MB/94.86 MB 1m19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2150897,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=\\u003e
|
34
|
-
\ ] 2.151 MB/94.86 MB 1m0s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2691569,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=\\u003e
|
35
|
-
\ ] 2.692 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3232241,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=\\u003e
|
36
|
-
\ ] 3.232 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3772913,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=\\u003e
|
37
|
-
\ ] 3.773 MB/94.86 MB 58s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4313585,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==\\u003e
|
38
|
-
\ ] 4.314 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4838153,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==\\u003e
|
39
|
-
\ ] 4.838 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5378825,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==\\u003e
|
40
|
-
\ ] 5.379 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5919497,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===\\u003e
|
41
|
-
\ ] 5.919 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6460169,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===\\u003e
|
42
|
-
\ ] 6.46 MB/94.86 MB 52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7000841,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===\\u003e
|
43
|
-
\ ] 7.001 MB/94.86 MB 51s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7541513,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===\\u003e
|
44
|
-
\ ] 7.542 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8082185,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====\\u003e
|
45
|
-
\ ] 8.082 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8618422,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====\\u003e
|
46
|
-
\ ] 8.618 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9159094,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====\\u003e
|
47
|
-
\ ] 9.159 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9699766,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====\\u003e
|
48
|
-
\ ] 9.7 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10240438,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====\\u003e
|
49
|
-
\ ] 10.24 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10781110,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====\\u003e
|
50
|
-
\ ] 10.78 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11305740,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====\\u003e
|
51
|
-
\ ] 11.31 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11846410,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======\\u003e
|
52
|
-
\ ] 11.85 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12387082,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======\\u003e
|
53
|
-
\ ] 12.39 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12927754,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======\\u003e
|
54
|
-
\ ] 12.93 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13468426,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======\\u003e
|
55
|
-
\ ] 13.47 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14009098,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======\\u003e
|
56
|
-
\ ] 14.01 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14549770,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======\\u003e
|
57
|
-
\ ] 14.55 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15090442,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======\\u003e
|
58
|
-
\ ] 15.09 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15631114,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========\\u003e
|
59
|
-
\ ] 15.63 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16166447,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========\\u003e
|
60
|
-
\ ] 16.17 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16707119,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========\\u003e
|
61
|
-
\ ] 16.71 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17247791,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========\\u003e
|
62
|
-
\ ] 17.25 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17788463,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========\\u003e
|
63
|
-
\ ] 17.79 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18329135,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========\\u003e
|
64
|
-
\ ] 18.33 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18869807,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========\\u003e
|
65
|
-
\ ] 18.87 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19410479,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========\\u003e
|
66
|
-
\ ] 19.41 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19951151,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========\\u003e
|
67
|
-
\ ] 19.95 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20491823,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========\\u003e
|
68
|
-
\ ] 20.49 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21032495,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========\\u003e
|
69
|
-
\ ] 21.03 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21573167,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========\\u003e
|
70
|
-
\ ] 21.57 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22113839,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========\\u003e
|
71
|
-
\ ] 22.11 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22654511,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========\\u003e
|
72
|
-
\ ] 22.65 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23195183,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============\\u003e
|
73
|
-
\ ] 23.2 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23735855,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============\\u003e
|
74
|
-
\ ] 23.74 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24276527,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============\\u003e
|
75
|
-
\ ] 24.28 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24817199,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============\\u003e
|
76
|
-
\ ] 24.82 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25357871,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============\\u003e
|
77
|
-
\ ] 25.36 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25898543,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============\\u003e
|
78
|
-
\ ] 25.9 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26434377,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============\\u003e
|
79
|
-
\ ] 26.43 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26975049,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============\\u003e
|
80
|
-
\ ] 26.98 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27515721,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============\\u003e
|
81
|
-
\ ] 27.52 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28056393,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============\\u003e
|
82
|
-
\ ] 28.06 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28597065,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============\\u003e
|
83
|
-
\ ] 28.6 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29137737,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============\\u003e
|
84
|
-
\ ] 29.14 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29678409,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============\\u003e
|
85
|
-
\ ] 29.68 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30219081,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============\\u003e
|
86
|
-
\ ] 30.22 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30759753,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================\\u003e
|
87
|
-
\ ] 30.76 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31300425,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================\\u003e
|
88
|
-
\ ] 31.3 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31841097,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================\\u003e
|
89
|
-
\ ] 31.84 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32381769,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================\\u003e
|
90
|
-
\ ] 32.38 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32922441,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================\\u003e
|
91
|
-
\ ] 32.92 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33463113,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================\\u003e
|
92
|
-
\ ] 33.46 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34003785,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================\\u003e
|
93
|
-
\ ] 34 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34544457,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==================\\u003e
|
94
|
-
\ ] 34.54 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35085129,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==================\\u003e
|
95
|
-
\ ] 35.09 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35625801,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==================\\u003e
|
96
|
-
\ ] 35.63 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36166473,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===================\\u003e
|
97
|
-
\ ] 36.17 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36707145,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===================\\u003e
|
98
|
-
\ ] 36.71 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37247817,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===================\\u003e
|
99
|
-
\ ] 37.25 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37788489,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===================\\u003e
|
100
|
-
\ ] 37.79 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38329161,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====================\\u003e
|
101
|
-
\ ] 38.33 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38869833,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====================\\u003e
|
102
|
-
\ ] 38.87 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39410505,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====================\\u003e
|
103
|
-
\ ] 39.41 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39951177,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====================\\u003e
|
104
|
-
\ ] 39.95 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40491849,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====================\\u003e
|
105
|
-
\ ] 40.49 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41032521,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====================\\u003e
|
106
|
-
\ ] 41.03 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41573193,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====================\\u003e
|
107
|
-
\ ] 41.57 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42113865,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======================\\u003e
|
108
|
-
\ ] 42.11 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42654537,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======================\\u003e
|
109
|
-
\ ] 42.65 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43195209,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======================\\u003e
|
110
|
-
\ ] 43.2 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43735881,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======================\\u003e
|
111
|
-
\ ] 43.74 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44276553,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======================\\u003e
|
112
|
-
\ ] 44.28 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44817225,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======================\\u003e
|
113
|
-
\ ] 44.82 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45357897,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======================\\u003e
|
114
|
-
\ ] 45.36 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45898569,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========================\\u003e
|
115
|
-
\ ] 45.9 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46439241,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========================\\u003e
|
116
|
-
\ ] 46.44 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46979913,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========================\\u003e
|
117
|
-
\ ] 46.98 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47520585,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========================\\u003e
|
118
|
-
\ ] 47.52 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48061257,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========================\\u003e
|
119
|
-
\ ] 48.06 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48601929,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========================\\u003e
|
120
|
-
\ ] 48.6 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49142601,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========================\\u003e
|
121
|
-
\ ] 49.14 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49683273,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========================\\u003e
|
122
|
-
\ ] 49.68 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50223945,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========================\\u003e
|
123
|
-
\ ] 50.22 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50764617,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========================\\u003e
|
124
|
-
\ ] 50.76 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51305289,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========================\\u003e
|
125
|
-
\ ] 51.31 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51845961,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========================\\u003e
|
126
|
-
\ ] 51.85 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52386633,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========================\\u003e
|
127
|
-
\ ] 52.39 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52927305,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========================\\u003e
|
128
|
-
\ ] 52.93 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53467977,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============================\\u003e
|
129
|
-
\ ] 53.47 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54008649,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============================\\u003e
|
130
|
-
\ ] 54.01 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54549321,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============================\\u003e
|
131
|
-
\ ] 54.55 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55089993,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============================\\u003e
|
132
|
-
\ ] 55.09 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55630665,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============================\\u003e
|
133
|
-
\ ] 55.63 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56171337,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============================\\u003e
|
134
|
-
\ ] 56.17 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56712009,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============================\\u003e
|
135
|
-
\ ] 56.71 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57252681,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============================\\u003e
|
136
|
-
\ ] 57.25 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57793353,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============================\\u003e
|
137
|
-
\ ] 57.79 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58334025,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============================\\u003e
|
138
|
-
\ ] 58.33 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58874697,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============================\\u003e
|
139
|
-
\ ] 58.87 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59415369,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============================\\u003e
|
140
|
-
\ ] 59.42 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59956041,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============================\\u003e
|
141
|
-
\ ] 59.96 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60496713,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============================\\u003e
|
142
|
-
\ ] 60.5 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61037385,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================================\\u003e
|
143
|
-
\ ] 61.04 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61578057,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================================\\u003e
|
144
|
-
\ ] 61.58 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62115984,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================================\\u003e
|
145
|
-
\ ] 62.12 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62656655,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================================\\u003e
|
146
|
-
\ ] 62.66 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63197327,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================================\\u003e
|
147
|
-
\ ] 63.2 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63737999,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================================\\u003e
|
148
|
-
\ ] 63.74 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64278671,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================================\\u003e
|
149
|
-
\ ] 64.28 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64819343,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==================================\\u003e
|
150
|
-
\ ] 64.82 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65360015,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==================================\\u003e
|
151
|
-
\ ] 65.36 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65900687,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==================================\\u003e
|
152
|
-
\ ] 65.9 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66441359,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===================================\\u003e
|
153
|
-
\ ] 66.44 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66982031,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===================================\\u003e
|
154
|
-
\ ] 66.98 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67522703,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===================================\\u003e
|
155
|
-
\ ] 67.52 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68060003,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===================================\\u003e
|
156
|
-
\ ] 68.06 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68600675,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====================================\\u003e
|
157
|
-
\ ] 68.6 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69141347,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====================================\\u003e
|
158
|
-
\ ] 69.14 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69682019,\"total\":94863360,\"start\":1414620356},\"progress\":\"[====================================\\u003e
|
159
|
-
\ ] 69.68 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70222691,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====================================\\u003e
|
160
|
-
\ ] 70.22 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70763363,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====================================\\u003e
|
161
|
-
\ ] 70.76 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71304035,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====================================\\u003e
|
162
|
-
\ ] 71.3 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71844707,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=====================================\\u003e
|
163
|
-
\ ] 71.84 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72379633,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======================================\\u003e
|
164
|
-
\ ] 72.38 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72920305,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======================================\\u003e
|
165
|
-
\ ] 72.92 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73460977,\"total\":94863360,\"start\":1414620356},\"progress\":\"[======================================\\u003e
|
166
|
-
\ ] 73.46 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74001649,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======================================\\u003e
|
167
|
-
\ ] 74 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74542321,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======================================\\u003e
|
168
|
-
\ ] 74.54 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75082993,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======================================\\u003e
|
169
|
-
\ ] 75.08 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75623665,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=======================================\\u003e
|
170
|
-
\ ] 75.62 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76164337,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========================================\\u003e
|
171
|
-
\ ] 76.16 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76705009,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========================================\\u003e
|
172
|
-
\ ] 76.71 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77245681,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========================================\\u003e
|
173
|
-
\ ] 77.25 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77775577,\"total\":94863360,\"start\":1414620356},\"progress\":\"[========================================\\u003e
|
174
|
-
\ ] 77.78 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78316249,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========================================\\u003e
|
175
|
-
\ ] 78.32 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78856921,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========================================\\u003e
|
176
|
-
\ ] 78.86 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79397593,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=========================================\\u003e
|
177
|
-
\ ] 79.4 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79938265,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========================================\\u003e
|
178
|
-
\ ] 79.94 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80475265,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========================================\\u003e
|
179
|
-
\ ] 80.48 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81015937,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========================================\\u003e
|
180
|
-
\ ] 81.02 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81556609,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==========================================\\u003e
|
181
|
-
\ ] 81.56 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82097281,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========================================\\u003e
|
182
|
-
\ ] 82.1 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82637953,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========================================\\u003e
|
183
|
-
\ ] 82.64 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83178625,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===========================================\\u003e
|
184
|
-
\ ] 83.18 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83719297,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============================================\\u003e
|
185
|
-
\ ] 83.72 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84259969,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============================================\\u003e
|
186
|
-
\ ] 84.26 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84800641,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============================================\\u003e
|
187
|
-
\ ] 84.8 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85341313,\"total\":94863360,\"start\":1414620356},\"progress\":\"[============================================\\u003e
|
188
|
-
\ ] 85.34 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85881985,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============================================\\u003e
|
189
|
-
\ ] 85.88 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86422657,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============================================\\u003e
|
190
|
-
\ ] 86.42 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86963329,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=============================================\\u003e
|
191
|
-
\ ] 86.96 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87504001,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============================================\\u003e
|
192
|
-
\ ] 87.5 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88044673,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============================================\\u003e
|
193
|
-
\ ] 88.04 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88585345,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============================================\\u003e
|
194
|
-
\ ] 88.59 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89126017,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==============================================\\u003e
|
195
|
-
\ ] 89.13 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89666689,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============================================\\u003e
|
196
|
-
\ ] 89.67 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90207361,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============================================\\u003e
|
197
|
-
\ ] 90.21 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90748033,\"total\":94863360,\"start\":1414620356},\"progress\":\"[===============================================\\u003e
|
198
|
-
\ ] 90.75 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91288705,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================================================\\u003e
|
199
|
-
\ ] 91.29 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91829377,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================================================\\u003e
|
200
|
-
\ ] 91.83 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92370049,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================================================\\u003e
|
201
|
-
\ ] 92.37 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92910721,\"total\":94863360,\"start\":1414620356},\"progress\":\"[================================================\\u003e
|
202
|
-
\ ] 92.91 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93451393,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================================================\\u003e
|
203
|
-
] 93.45 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93984003,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================================================\\u003e
|
204
|
-
] 93.98 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94512146,\"total\":94863360,\"start\":1414620356},\"progress\":\"[=================================================\\u003e
|
205
|
-
] 94.51 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414620356},\"progress\":\"[==================================================\\u003e]
|
206
|
-
94.86 MB/94.86 MB\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
207
|
-
metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
208
|
-
fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3646,\"total\":10240,\"start\":1414620381},\"progress\":\"[=================\\u003e
|
209
|
-
\ ] 3.646 kB/10.24 kB 1s\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
210
|
-
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
211
|
-
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Status:
|
212
|
-
Downloaded newer image for base\"}\r\n"
|
213
|
-
http_version:
|
214
|
-
recorded_at: Wed, 29 Oct 2014 22:06:21 GMT
|
215
|
-
- request:
|
216
|
-
method: delete
|
217
|
-
uri: unix:///var/run/docker.sock/v1.12/images/b750fe79269d?force=true
|
218
|
-
body:
|
219
|
-
encoding: US-ASCII
|
220
|
-
string: ''
|
221
|
-
headers:
|
222
|
-
User-Agent:
|
223
|
-
- Swipely/Docker-API 1.13.6
|
224
|
-
Content-Type:
|
225
|
-
- text/plain
|
226
|
-
response:
|
227
|
-
status:
|
228
|
-
code: 200
|
229
|
-
message:
|
230
|
-
headers:
|
231
|
-
Content-Type:
|
232
|
-
- application/json
|
233
|
-
Date:
|
234
|
-
- Wed, 29 Oct 2014 22:06:22 GMT
|
235
|
-
Content-Length:
|
236
|
-
- '246'
|
237
|
-
body:
|
238
|
-
encoding: UTF-8
|
239
|
-
string: |-
|
240
|
-
[{"Untagged":"base:latest"}
|
241
|
-
,{"Untagged":"base:ubuntu-12.10"}
|
242
|
-
,{"Untagged":"base:ubuntu-quantal"}
|
243
|
-
,{"Untagged":"base:ubuntu-quantl"}
|
244
|
-
,{"Deleted":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc"}
|
245
|
-
,{"Deleted":"27cf784147099545"}
|
246
|
-
]
|
247
|
-
http_version:
|
248
|
-
recorded_at: Wed, 29 Oct 2014 22:06:22 GMT
|
249
|
-
- request:
|
250
|
-
method: get
|
251
|
-
uri: unix:///var/run/docker.sock/v1.12/images/json
|
252
|
-
body:
|
253
|
-
encoding: US-ASCII
|
254
|
-
string: ''
|
255
|
-
headers:
|
256
|
-
User-Agent:
|
257
|
-
- Swipely/Docker-API 1.13.6
|
258
|
-
Content-Type:
|
259
|
-
- text/plain
|
260
|
-
response:
|
261
|
-
status:
|
262
|
-
code: 200
|
263
|
-
message:
|
264
|
-
headers:
|
265
|
-
Content-Type:
|
266
|
-
- application/json
|
267
|
-
Date:
|
268
|
-
- Wed, 29 Oct 2014 22:06:22 GMT
|
269
|
-
Content-Length:
|
270
|
-
- '2'
|
271
|
-
body:
|
272
|
-
encoding: UTF-8
|
273
|
-
string: "[]"
|
274
|
-
http_version:
|
275
|
-
recorded_at: Wed, 29 Oct 2014 22:06:22 GMT
|
276
|
-
recorded_with: VCR 2.9.3
|