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
data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml
ADDED
@@ -0,0 +1,151 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/containers/create"
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: '{"Cmd":["sleep","10"],"Image":"debian:wheezy"}'
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Swipely/Docker-API 1.15.0
|
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
|
+
- Mon, 01 Dec 2014 18:08:30 GMT
|
23
|
+
Content-Length:
|
24
|
+
- '90'
|
25
|
+
body:
|
26
|
+
encoding: UTF-8
|
27
|
+
string: |
|
28
|
+
{"Id":"d172c17eeddc40c2695f202c232379aa7fbdbc24a32ecce0f8d240f467390445","Warnings":null}
|
29
|
+
http_version:
|
30
|
+
recorded_at: Mon, 01 Dec 2014 18:08:30 GMT
|
31
|
+
- request:
|
32
|
+
method: post
|
33
|
+
uri: "<DOCKER_HOST>/v1.15/containers/d172c17eeddc40c2695f202c232379aa7fbdbc24a32ecce0f8d240f467390445/start"
|
34
|
+
body:
|
35
|
+
encoding: UTF-8
|
36
|
+
string: "{}"
|
37
|
+
headers:
|
38
|
+
User-Agent:
|
39
|
+
- Swipely/Docker-API 1.15.0
|
40
|
+
Content-Type:
|
41
|
+
- application/json
|
42
|
+
response:
|
43
|
+
status:
|
44
|
+
code: 204
|
45
|
+
message:
|
46
|
+
headers:
|
47
|
+
Date:
|
48
|
+
- Mon, 01 Dec 2014 18:08:31 GMT
|
49
|
+
body:
|
50
|
+
encoding: UTF-8
|
51
|
+
string: ''
|
52
|
+
http_version:
|
53
|
+
recorded_at: Mon, 01 Dec 2014 18:08:31 GMT
|
54
|
+
- request:
|
55
|
+
method: post
|
56
|
+
uri: "<DOCKER_HOST>/v1.15/containers/d172c17eeddc40c2695f202c232379aa7fbdbc24a32ecce0f8d240f467390445/exec"
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: '{"Cmd":["date"]}'
|
60
|
+
headers:
|
61
|
+
User-Agent:
|
62
|
+
- Swipely/Docker-API 1.15.0
|
63
|
+
Content-Type:
|
64
|
+
- application/json
|
65
|
+
response:
|
66
|
+
status:
|
67
|
+
code: 201
|
68
|
+
message:
|
69
|
+
headers:
|
70
|
+
Content-Type:
|
71
|
+
- application/json
|
72
|
+
Date:
|
73
|
+
- Mon, 01 Dec 2014 18:08:31 GMT
|
74
|
+
Content-Length:
|
75
|
+
- '74'
|
76
|
+
body:
|
77
|
+
encoding: UTF-8
|
78
|
+
string: |
|
79
|
+
{"Id":"3a4fa3af905f86f95ee741ea75f5fbc8f2f2661b7218eb0e49f917fad61d1b08"}
|
80
|
+
http_version:
|
81
|
+
recorded_at: Mon, 01 Dec 2014 18:08:31 GMT
|
82
|
+
- request:
|
83
|
+
method: post
|
84
|
+
uri: "<DOCKER_HOST>/v1.15/exec/3a4fa3af905f86f95ee741ea75f5fbc8f2f2661b7218eb0e49f917fad61d1b08/start"
|
85
|
+
body:
|
86
|
+
encoding: UTF-8
|
87
|
+
string: '{"Tty":false,"Detach":false}'
|
88
|
+
headers:
|
89
|
+
User-Agent:
|
90
|
+
- Swipely/Docker-API 1.15.0
|
91
|
+
Content-Type:
|
92
|
+
- application/json
|
93
|
+
response:
|
94
|
+
status:
|
95
|
+
code: 200
|
96
|
+
message:
|
97
|
+
headers:
|
98
|
+
Content-Type:
|
99
|
+
- application/vnd.docker.raw-stream
|
100
|
+
body:
|
101
|
+
encoding: UTF-8
|
102
|
+
string: ''
|
103
|
+
http_version:
|
104
|
+
recorded_at: Mon, 01 Dec 2014 18:08:31 GMT
|
105
|
+
- request:
|
106
|
+
method: post
|
107
|
+
uri: "<DOCKER_HOST>/v1.15/containers/d172c17eeddc40c2695f202c232379aa7fbdbc24a32ecce0f8d240f467390445/kill"
|
108
|
+
body:
|
109
|
+
encoding: US-ASCII
|
110
|
+
string: ''
|
111
|
+
headers:
|
112
|
+
User-Agent:
|
113
|
+
- Swipely/Docker-API 1.15.0
|
114
|
+
Content-Type:
|
115
|
+
- text/plain
|
116
|
+
response:
|
117
|
+
status:
|
118
|
+
code: 204
|
119
|
+
message:
|
120
|
+
headers:
|
121
|
+
Date:
|
122
|
+
- Mon, 01 Dec 2014 18:08:31 GMT
|
123
|
+
body:
|
124
|
+
encoding: UTF-8
|
125
|
+
string: ''
|
126
|
+
http_version:
|
127
|
+
recorded_at: Mon, 01 Dec 2014 18:08:31 GMT
|
128
|
+
- request:
|
129
|
+
method: delete
|
130
|
+
uri: "<DOCKER_HOST>/v1.15/containers/d172c17eeddc40c2695f202c232379aa7fbdbc24a32ecce0f8d240f467390445"
|
131
|
+
body:
|
132
|
+
encoding: US-ASCII
|
133
|
+
string: ''
|
134
|
+
headers:
|
135
|
+
User-Agent:
|
136
|
+
- Swipely/Docker-API 1.15.0
|
137
|
+
Content-Type:
|
138
|
+
- text/plain
|
139
|
+
response:
|
140
|
+
status:
|
141
|
+
code: 204
|
142
|
+
message:
|
143
|
+
headers:
|
144
|
+
Date:
|
145
|
+
- Mon, 01 Dec 2014 18:08:31 GMT
|
146
|
+
body:
|
147
|
+
encoding: UTF-8
|
148
|
+
string: ''
|
149
|
+
http_version:
|
150
|
+
recorded_at: Mon, 01 Dec 2014 18:08:31 GMT
|
151
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,151 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/containers/create"
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: '{"Cmd":["sleep","10"],"Image":"debian:wheezy"}'
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Swipely/Docker-API 1.15.0
|
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
|
+
- Mon, 01 Dec 2014 18:08:29 GMT
|
23
|
+
Content-Length:
|
24
|
+
- '90'
|
25
|
+
body:
|
26
|
+
encoding: UTF-8
|
27
|
+
string: |
|
28
|
+
{"Id":"513b70494a6b60f9e0b66c064b8c131043fa4ee043526b09c83a258f15bf4758","Warnings":null}
|
29
|
+
http_version:
|
30
|
+
recorded_at: Mon, 01 Dec 2014 18:08:29 GMT
|
31
|
+
- request:
|
32
|
+
method: post
|
33
|
+
uri: "<DOCKER_HOST>/v1.15/containers/513b70494a6b60f9e0b66c064b8c131043fa4ee043526b09c83a258f15bf4758/start"
|
34
|
+
body:
|
35
|
+
encoding: UTF-8
|
36
|
+
string: "{}"
|
37
|
+
headers:
|
38
|
+
User-Agent:
|
39
|
+
- Swipely/Docker-API 1.15.0
|
40
|
+
Content-Type:
|
41
|
+
- application/json
|
42
|
+
response:
|
43
|
+
status:
|
44
|
+
code: 204
|
45
|
+
message:
|
46
|
+
headers:
|
47
|
+
Date:
|
48
|
+
- Mon, 01 Dec 2014 18:08:30 GMT
|
49
|
+
body:
|
50
|
+
encoding: UTF-8
|
51
|
+
string: ''
|
52
|
+
http_version:
|
53
|
+
recorded_at: Mon, 01 Dec 2014 18:08:30 GMT
|
54
|
+
- request:
|
55
|
+
method: post
|
56
|
+
uri: "<DOCKER_HOST>/v1.15/containers/513b70494a6b60f9e0b66c064b8c131043fa4ee043526b09c83a258f15bf4758/exec"
|
57
|
+
body:
|
58
|
+
encoding: UTF-8
|
59
|
+
string: '{"Cmd":["date"]}'
|
60
|
+
headers:
|
61
|
+
User-Agent:
|
62
|
+
- Swipely/Docker-API 1.15.0
|
63
|
+
Content-Type:
|
64
|
+
- application/json
|
65
|
+
response:
|
66
|
+
status:
|
67
|
+
code: 201
|
68
|
+
message:
|
69
|
+
headers:
|
70
|
+
Content-Type:
|
71
|
+
- application/json
|
72
|
+
Date:
|
73
|
+
- Mon, 01 Dec 2014 18:08:30 GMT
|
74
|
+
Content-Length:
|
75
|
+
- '74'
|
76
|
+
body:
|
77
|
+
encoding: UTF-8
|
78
|
+
string: |
|
79
|
+
{"Id":"b61bcf29d54baaf3d37a3e49461b9b902554b06b868e20e20c129a48794d00bd"}
|
80
|
+
http_version:
|
81
|
+
recorded_at: Mon, 01 Dec 2014 18:08:30 GMT
|
82
|
+
- request:
|
83
|
+
method: post
|
84
|
+
uri: "<DOCKER_HOST>/v1.15/exec/b61bcf29d54baaf3d37a3e49461b9b902554b06b868e20e20c129a48794d00bd/start"
|
85
|
+
body:
|
86
|
+
encoding: UTF-8
|
87
|
+
string: '{"Tty":false,"Detach":false}'
|
88
|
+
headers:
|
89
|
+
User-Agent:
|
90
|
+
- Swipely/Docker-API 1.15.0
|
91
|
+
Content-Type:
|
92
|
+
- application/json
|
93
|
+
response:
|
94
|
+
status:
|
95
|
+
code: 200
|
96
|
+
message:
|
97
|
+
headers:
|
98
|
+
Content-Type:
|
99
|
+
- application/vnd.docker.raw-stream
|
100
|
+
body:
|
101
|
+
encoding: UTF-8
|
102
|
+
string: ''
|
103
|
+
http_version:
|
104
|
+
recorded_at: Mon, 01 Dec 2014 18:08:30 GMT
|
105
|
+
- request:
|
106
|
+
method: post
|
107
|
+
uri: "<DOCKER_HOST>/v1.15/containers/513b70494a6b60f9e0b66c064b8c131043fa4ee043526b09c83a258f15bf4758/kill"
|
108
|
+
body:
|
109
|
+
encoding: US-ASCII
|
110
|
+
string: ''
|
111
|
+
headers:
|
112
|
+
User-Agent:
|
113
|
+
- Swipely/Docker-API 1.15.0
|
114
|
+
Content-Type:
|
115
|
+
- text/plain
|
116
|
+
response:
|
117
|
+
status:
|
118
|
+
code: 204
|
119
|
+
message:
|
120
|
+
headers:
|
121
|
+
Date:
|
122
|
+
- Mon, 01 Dec 2014 18:08:30 GMT
|
123
|
+
body:
|
124
|
+
encoding: UTF-8
|
125
|
+
string: ''
|
126
|
+
http_version:
|
127
|
+
recorded_at: Mon, 01 Dec 2014 18:08:30 GMT
|
128
|
+
- request:
|
129
|
+
method: delete
|
130
|
+
uri: "<DOCKER_HOST>/v1.15/containers/513b70494a6b60f9e0b66c064b8c131043fa4ee043526b09c83a258f15bf4758"
|
131
|
+
body:
|
132
|
+
encoding: US-ASCII
|
133
|
+
string: ''
|
134
|
+
headers:
|
135
|
+
User-Agent:
|
136
|
+
- Swipely/Docker-API 1.15.0
|
137
|
+
Content-Type:
|
138
|
+
- text/plain
|
139
|
+
response:
|
140
|
+
status:
|
141
|
+
code: 204
|
142
|
+
message:
|
143
|
+
headers:
|
144
|
+
Date:
|
145
|
+
- Mon, 01 Dec 2014 18:08:30 GMT
|
146
|
+
body:
|
147
|
+
encoding: UTF-8
|
148
|
+
string: ''
|
149
|
+
http_version:
|
150
|
+
recorded_at: Mon, 01 Dec 2014 18:08:30 GMT
|
151
|
+
recorded_with: VCR 2.9.3
|
@@ -2,15 +2,17 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=debian%3Awheezy"
|
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.15.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
|
+
X-Registry-Auth:
|
15
|
+
- eyJ1c2VybmFtZSI6InRkdWZmaWVsZCIsInBhc3N3b3JkIjoiaTlCZj5KZ3ZmYmpZL3NKV01jVTkiLCJlbWFpbCI6ImdpdGh1YkB0b21kdWZmaWVsZC5jb20ifQ==
|
14
16
|
response:
|
15
17
|
status:
|
16
18
|
code: 200
|
@@ -19,208 +21,25 @@ http_interactions:
|
|
19
21
|
Content-Type:
|
20
22
|
- application/json
|
21
23
|
Date:
|
22
|
-
-
|
24
|
+
- Mon, 01 Dec 2014 18:08:55 GMT
|
23
25
|
body:
|
24
26
|
encoding: UTF-8
|
25
|
-
string: "{\"status\":\"
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":524904,\"total\":94863360,\"start\":1414620415},\"progress\":\"[\\u003e
|
31
|
-
\ ] 524.9 kB/94.86 MB 2m48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1065576,\"total\":94863360,\"start\":1414620415},\"progress\":\"[\\u003e
|
32
|
-
\ ] 1.066 MB/94.86 MB 1m32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1606248,\"total\":94863360,\"start\":1414620415},\"progress\":\"[\\u003e
|
33
|
-
\ ] 1.606 MB/94.86 MB 1m4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2146920,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=\\u003e
|
34
|
-
\ ] 2.147 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2687592,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=\\u003e
|
35
|
-
\ ] 2.688 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3228264,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=\\u003e
|
36
|
-
\ ] 3.228 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3768936,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=\\u003e
|
37
|
-
\ ] 3.769 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4309608,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==\\u003e
|
38
|
-
\ ] 4.31 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4850280,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==\\u003e
|
39
|
-
\ ] 4.85 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5390952,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==\\u003e
|
40
|
-
\ ] 5.391 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5931624,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===\\u003e
|
41
|
-
\ ] 5.932 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6472296,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===\\u003e
|
42
|
-
\ ] 6.472 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7012968,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===\\u003e
|
43
|
-
\ ] 7.013 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7553640,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===\\u003e
|
44
|
-
\ ] 7.554 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8094312,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====\\u003e
|
45
|
-
\ ] 8.094 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8634984,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====\\u003e
|
46
|
-
\ ] 8.635 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9175656,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====\\u003e
|
47
|
-
\ ] 9.176 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9716328,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====\\u003e
|
48
|
-
\ ] 9.716 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10257000,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====\\u003e
|
49
|
-
\ ] 10.26 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10797672,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====\\u003e
|
50
|
-
\ ] 10.8 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11338344,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====\\u003e
|
51
|
-
\ ] 11.34 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11879016,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======\\u003e
|
52
|
-
\ ] 11.88 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12419688,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======\\u003e
|
53
|
-
\ ] 12.42 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12960360,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======\\u003e
|
54
|
-
\ ] 12.96 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13492120,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======\\u003e
|
55
|
-
\ ] 13.49 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14032792,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======\\u003e
|
56
|
-
\ ] 14.03 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14573464,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======\\u003e
|
57
|
-
\ ] 14.57 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15114136,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======\\u003e
|
58
|
-
\ ] 15.11 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15654808,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========\\u003e
|
59
|
-
\ ] 15.65 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16195480,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========\\u003e
|
60
|
-
\ ] 16.2 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16736152,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========\\u003e
|
61
|
-
\ ] 16.74 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17276824,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========\\u003e
|
62
|
-
\ ] 17.28 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17817496,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========\\u003e
|
63
|
-
\ ] 17.82 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18342298,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========\\u003e
|
64
|
-
\ ] 18.34 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18882970,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========\\u003e
|
65
|
-
\ ] 18.88 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19423642,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========\\u003e
|
66
|
-
\ ] 19.42 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19964314,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========\\u003e
|
67
|
-
\ ] 19.96 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20504986,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========\\u003e
|
68
|
-
\ ] 20.5 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21045658,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========\\u003e
|
69
|
-
\ ] 21.05 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21586330,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========\\u003e
|
70
|
-
\ ] 21.59 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22127002,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========\\u003e
|
71
|
-
\ ] 22.13 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22667674,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========\\u003e
|
72
|
-
\ ] 22.67 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23208346,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============\\u003e
|
73
|
-
\ ] 23.21 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23749018,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============\\u003e
|
74
|
-
\ ] 23.75 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24289690,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============\\u003e
|
75
|
-
\ ] 24.29 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24830362,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============\\u003e
|
76
|
-
\ ] 24.83 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25371034,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============\\u003e
|
77
|
-
\ ] 25.37 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25911706,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============\\u003e
|
78
|
-
\ ] 25.91 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26452378,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============\\u003e
|
79
|
-
\ ] 26.45 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26993050,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============\\u003e
|
80
|
-
\ ] 26.99 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27533722,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============\\u003e
|
81
|
-
\ ] 27.53 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28074394,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============\\u003e
|
82
|
-
\ ] 28.07 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28615066,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============\\u003e
|
83
|
-
\ ] 28.62 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29155738,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============\\u003e
|
84
|
-
\ ] 29.16 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29696410,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============\\u003e
|
85
|
-
\ ] 29.7 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30237082,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============\\u003e
|
86
|
-
\ ] 30.24 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30777754,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================\\u003e
|
87
|
-
\ ] 30.78 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31318426,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================\\u003e
|
88
|
-
\ ] 31.32 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31859098,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================\\u003e
|
89
|
-
\ ] 31.86 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32399770,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================\\u003e
|
90
|
-
\ ] 32.4 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32940442,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================\\u003e
|
91
|
-
\ ] 32.94 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33481114,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================\\u003e
|
92
|
-
\ ] 33.48 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34021786,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================\\u003e
|
93
|
-
\ ] 34.02 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34562458,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==================\\u003e
|
94
|
-
\ ] 34.56 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35103130,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==================\\u003e
|
95
|
-
\ ] 35.1 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35643802,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==================\\u003e
|
96
|
-
\ ] 35.64 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36184474,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===================\\u003e
|
97
|
-
\ ] 36.18 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36725146,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===================\\u003e
|
98
|
-
\ ] 36.73 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37265818,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===================\\u003e
|
99
|
-
\ ] 37.27 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37806490,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===================\\u003e
|
100
|
-
\ ] 37.81 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38347162,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====================\\u003e
|
101
|
-
\ ] 38.35 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38887834,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====================\\u003e
|
102
|
-
\ ] 38.89 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39428506,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====================\\u003e
|
103
|
-
\ ] 39.43 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39969178,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====================\\u003e
|
104
|
-
\ ] 39.97 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40509850,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====================\\u003e
|
105
|
-
\ ] 40.51 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41050522,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====================\\u003e
|
106
|
-
\ ] 41.05 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41591194,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====================\\u003e
|
107
|
-
\ ] 41.59 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42131866,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======================\\u003e
|
108
|
-
\ ] 42.13 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42672538,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======================\\u003e
|
109
|
-
\ ] 42.67 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43213210,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======================\\u003e
|
110
|
-
\ ] 43.21 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43753882,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======================\\u003e
|
111
|
-
\ ] 43.75 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44294554,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======================\\u003e
|
112
|
-
\ ] 44.29 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44835226,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======================\\u003e
|
113
|
-
\ ] 44.84 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45375898,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======================\\u003e
|
114
|
-
\ ] 45.38 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45916570,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========================\\u003e
|
115
|
-
\ ] 45.92 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46457242,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========================\\u003e
|
116
|
-
\ ] 46.46 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46997914,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========================\\u003e
|
117
|
-
\ ] 47 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47538586,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========================\\u003e
|
118
|
-
\ ] 47.54 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48079258,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========================\\u003e
|
119
|
-
\ ] 48.08 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48619930,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========================\\u003e
|
120
|
-
\ ] 48.62 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49160602,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========================\\u003e
|
121
|
-
\ ] 49.16 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49701274,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========================\\u003e
|
122
|
-
\ ] 49.7 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50241946,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========================\\u003e
|
123
|
-
\ ] 50.24 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50782618,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========================\\u003e
|
124
|
-
\ ] 50.78 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51323290,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========================\\u003e
|
125
|
-
\ ] 51.32 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51863962,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========================\\u003e
|
126
|
-
\ ] 51.86 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52404634,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========================\\u003e
|
127
|
-
\ ] 52.4 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52945306,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========================\\u003e
|
128
|
-
\ ] 52.95 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53485978,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============================\\u003e
|
129
|
-
\ ] 53.49 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54026650,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============================\\u003e
|
130
|
-
\ ] 54.03 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54567322,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============================\\u003e
|
131
|
-
\ ] 54.57 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55107994,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============================\\u003e
|
132
|
-
\ ] 55.11 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55648666,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============================\\u003e
|
133
|
-
\ ] 55.65 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56189338,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============================\\u003e
|
134
|
-
\ ] 56.19 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56730010,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============================\\u003e
|
135
|
-
\ ] 56.73 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57270682,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============================\\u003e
|
136
|
-
\ ] 57.27 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57811354,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============================\\u003e
|
137
|
-
\ ] 57.81 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58352026,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============================\\u003e
|
138
|
-
\ ] 58.35 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58892698,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============================\\u003e
|
139
|
-
\ ] 58.89 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59433370,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============================\\u003e
|
140
|
-
\ ] 59.43 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59974042,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============================\\u003e
|
141
|
-
\ ] 59.97 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60514714,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============================\\u003e
|
142
|
-
\ ] 60.51 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61055386,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================================\\u003e
|
143
|
-
\ ] 61.06 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61596058,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================================\\u003e
|
144
|
-
\ ] 61.6 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62136730,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================================\\u003e
|
145
|
-
\ ] 62.14 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62677402,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================================\\u003e
|
146
|
-
\ ] 62.68 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63218074,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================================\\u003e
|
147
|
-
\ ] 63.22 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63758746,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================================\\u003e
|
148
|
-
\ ] 63.76 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64299418,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================================\\u003e
|
149
|
-
\ ] 64.3 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64840090,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==================================\\u003e
|
150
|
-
\ ] 64.84 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65380762,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==================================\\u003e
|
151
|
-
\ ] 65.38 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65921434,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==================================\\u003e
|
152
|
-
\ ] 65.92 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66462106,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===================================\\u003e
|
153
|
-
\ ] 66.46 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67002778,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===================================\\u003e
|
154
|
-
\ ] 67 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67543450,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===================================\\u003e
|
155
|
-
\ ] 67.54 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68084122,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===================================\\u003e
|
156
|
-
\ ] 68.08 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68624794,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====================================\\u003e
|
157
|
-
\ ] 68.62 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69165466,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====================================\\u003e
|
158
|
-
\ ] 69.17 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69706138,\"total\":94863360,\"start\":1414620415},\"progress\":\"[====================================\\u003e
|
159
|
-
\ ] 69.71 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70246810,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====================================\\u003e
|
160
|
-
\ ] 70.25 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70787482,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====================================\\u003e
|
161
|
-
\ ] 70.79 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71328154,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====================================\\u003e
|
162
|
-
\ ] 71.33 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71868826,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=====================================\\u003e
|
163
|
-
\ ] 71.87 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72409498,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======================================\\u003e
|
164
|
-
\ ] 72.41 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72950170,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======================================\\u003e
|
165
|
-
\ ] 72.95 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73490842,\"total\":94863360,\"start\":1414620415},\"progress\":\"[======================================\\u003e
|
166
|
-
\ ] 73.49 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74031514,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======================================\\u003e
|
167
|
-
\ ] 74.03 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74572186,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======================================\\u003e
|
168
|
-
\ ] 74.57 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75112858,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======================================\\u003e
|
169
|
-
\ ] 75.11 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75651352,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=======================================\\u003e
|
170
|
-
\ ] 75.65 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76192024,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========================================\\u003e
|
171
|
-
\ ] 76.19 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76732696,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========================================\\u003e
|
172
|
-
\ ] 76.73 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77273368,\"total\":94863360,\"start\":1414620415},\"progress\":\"[========================================\\u003e
|
173
|
-
\ ] 77.27 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77814040,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========================================\\u003e
|
174
|
-
\ ] 77.81 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78354712,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========================================\\u003e
|
175
|
-
\ ] 78.35 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78895384,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========================================\\u003e
|
176
|
-
\ ] 78.9 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79436056,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=========================================\\u003e
|
177
|
-
\ ] 79.44 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79976728,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========================================\\u003e
|
178
|
-
\ ] 79.98 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80517400,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========================================\\u003e
|
179
|
-
\ ] 80.52 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81058072,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==========================================\\u003e
|
180
|
-
\ ] 81.06 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81598744,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========================================\\u003e
|
181
|
-
\ ] 81.6 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82139416,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========================================\\u003e
|
182
|
-
\ ] 82.14 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82680088,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========================================\\u003e
|
183
|
-
\ ] 82.68 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83220760,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===========================================\\u003e
|
184
|
-
\ ] 83.22 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83761432,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============================================\\u003e
|
185
|
-
\ ] 83.76 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84302104,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============================================\\u003e
|
186
|
-
\ ] 84.3 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84842776,\"total\":94863360,\"start\":1414620415},\"progress\":\"[============================================\\u003e
|
187
|
-
\ ] 84.84 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85383448,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============================================\\u003e
|
188
|
-
\ ] 85.38 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85924120,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============================================\\u003e
|
189
|
-
\ ] 85.92 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86464792,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============================================\\u003e
|
190
|
-
\ ] 86.46 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87005464,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=============================================\\u003e
|
191
|
-
\ ] 87.01 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87546136,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============================================\\u003e
|
192
|
-
\ ] 87.55 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88086808,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============================================\\u003e
|
193
|
-
\ ] 88.09 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88627480,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============================================\\u003e
|
194
|
-
\ ] 88.63 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89168152,\"total\":94863360,\"start\":1414620415},\"progress\":\"[==============================================\\u003e
|
195
|
-
\ ] 89.17 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89708824,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============================================\\u003e
|
196
|
-
\ ] 89.71 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90249496,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============================================\\u003e
|
197
|
-
\ ] 90.25 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90790168,\"total\":94863360,\"start\":1414620415},\"progress\":\"[===============================================\\u003e
|
198
|
-
\ ] 90.79 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91330840,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================================================\\u003e
|
199
|
-
\ ] 91.33 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91866592,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================================================\\u003e
|
200
|
-
\ ] 91.87 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92407264,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================================================\\u003e
|
201
|
-
\ ] 92.41 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92947936,\"total\":94863360,\"start\":1414620415},\"progress\":\"[================================================\\u003e
|
202
|
-
\ ] 92.95 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93488608,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================================================\\u003e
|
203
|
-
] 93.49 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94029280,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================================================\\u003e
|
204
|
-
] 94.03 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94569952,\"total\":94863360,\"start\":1414620415},\"progress\":\"[=================================================\\u003e
|
205
|
-
] 94.57 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414620415},\"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\":1414620441},\"progress\":\"[=================\\u003e
|
209
|
-
\ ] 3.646 kB/10.24 kB 0\",\"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"
|
27
|
+
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
29
|
+
exists\",\"progressDetail\":{},\"id\":\"f10807909bc5\"}{\"status\":\"Already
|
30
|
+
exists\",\"progressDetail\":{},\"id\":\"f6fab3b798be\"}{\"status\":\"Status:
|
31
|
+
Image is up to date for debian:wheezy\"}\r\n"
|
213
32
|
http_version:
|
214
|
-
recorded_at:
|
33
|
+
recorded_at: Mon, 01 Dec 2014 18:08:55 GMT
|
215
34
|
- request:
|
216
35
|
method: get
|
217
|
-
uri:
|
36
|
+
uri: "<DOCKER_HOST>/v1.15/images/json?all=true"
|
218
37
|
body:
|
219
38
|
encoding: US-ASCII
|
220
39
|
string: ''
|
221
40
|
headers:
|
222
41
|
User-Agent:
|
223
|
-
- Swipely/Docker-API 1.
|
42
|
+
- Swipely/Docker-API 1.15.0
|
224
43
|
Content-Type:
|
225
44
|
- text/plain
|
226
45
|
response:
|
@@ -231,15 +50,82 @@ http_interactions:
|
|
231
50
|
Content-Type:
|
232
51
|
- application/json
|
233
52
|
Date:
|
234
|
-
-
|
235
|
-
Content-Length:
|
236
|
-
- '403'
|
53
|
+
- Mon, 01 Dec 2014 18:08:56 GMT
|
237
54
|
body:
|
238
55
|
encoding: UTF-8
|
239
56
|
string: |-
|
240
|
-
[{"Created":
|
241
|
-
,{"Created":
|
57
|
+
[{"Created":1416799251,"Id":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":125,"VirtualSize":125}
|
58
|
+
,{"Created":1416799251,"Id":"08e20b3475072326a5f6855b4bca4fe53680d025f379eb54c5076de119cae17b","ParentId":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","RepoTags":["tianon/true:latest"],"Size":0,"VirtualSize":125}
|
59
|
+
,{"Created":1415864019,"Id":"74f5b38a45c97043cdf0082b8e8dd002497ab6b03388cdb2f20bafb7468ad55b","ParentId":"31ae66be94f160a92e1e757ab9a66aa7183af55183080576fb93a52cbce9e0cd","RepoTags":["registry:0.9.0"],"Size":0,"VirtualSize":411649756}
|
60
|
+
,{"Created":1415864018,"Id":"31ae66be94f160a92e1e757ab9a66aa7183af55183080576fb93a52cbce9e0cd","ParentId":"b3fd13d94685095ec1c1f8f0f371dde8be9a21f8f457d4d10e5ad72042a152af","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
|
61
|
+
,{"Created":1415864017,"Id":"eae8be82bb623181222558e4df0dd59c943cdc2fd3c4e41de669e4bd35a866e6","ParentId":"8eae38b276496440046cd9f545c24533e692cbed6fd1bc4e29a7af5e4ae72a61","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
|
62
|
+
,{"Created":1415864017,"Id":"b3fd13d94685095ec1c1f8f0f371dde8be9a21f8f457d4d10e5ad72042a152af","ParentId":"eae8be82bb623181222558e4df0dd59c943cdc2fd3c4e41de669e4bd35a866e6","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
|
63
|
+
,{"Created":1415864016,"Id":"8eae38b276496440046cd9f545c24533e692cbed6fd1bc4e29a7af5e4ae72a61","ParentId":"16b02bf8dc3d1f70e098cbd968f154468fcf41be6bf59b24a35b4fdded3edbca","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":411649756}
|
64
|
+
,{"Created":1415864015,"Id":"16b02bf8dc3d1f70e098cbd968f154468fcf41be6bf59b24a35b4fdded3edbca","ParentId":"b22cb7ed5ccbeeaf2a67d5d3034a308c6eedf2ccb247851c9a14c05b441716fa","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23990121,"VirtualSize":411598960}
|
65
|
+
,{"Created":1415863862,"Id":"b22cb7ed5ccbeeaf2a67d5d3034a308c6eedf2ccb247851c9a14c05b441716fa","ParentId":"8b170afd480f41a84331dcaabfa6465769205e645ba13f8baa085f1f68e4f1cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":387608839}
|
66
|
+
,{"Created":1415863855,"Id":"8b170afd480f41a84331dcaabfa6465769205e645ba13f8baa085f1f68e4f1cf","ParentId":"8dda8bb23254979ce24f2ca4d7115f4563a9ae4f0e774b2d419318d81a5c720d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":376058282}
|
67
|
+
,{"Created":1415863853,"Id":"8dda8bb23254979ce24f2ca4d7115f4563a9ae4f0e774b2d419318d81a5c720d","ParentId":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1880042,"VirtualSize":376058209}
|
68
|
+
,{"Created":1415863849,"Id":"d9925ba888d4dba2d9b22273d261155fe3b2a4e6cfa5db44e4abe5ac8e311efa","ParentId":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","RepoTags":["registry:0.8.1"],"Size":0,"VirtualSize":430388853}
|
69
|
+
,{"Created":1415863848,"Id":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","ParentId":"8b840022b4b5d60e0f66d7f72b992eb5b52e75dfdf1b8e9535d85df57236e7f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
70
|
+
,{"Created":1415863847,"Id":"8b840022b4b5d60e0f66d7f72b992eb5b52e75dfdf1b8e9535d85df57236e7f5","ParentId":"11d3a913c69b0ea1c7d0df3708dfa8c789b68dc0884471cf862de1160c7eaaba","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
71
|
+
,{"Created":1415863846,"Id":"11d3a913c69b0ea1c7d0df3708dfa8c789b68dc0884471cf862de1160c7eaaba","ParentId":"ae88728b911af97e928890b1c3b7b34dd25fb313f3b20cd73e532e2903d3d3b9","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
72
|
+
,{"Created":1415863845,"Id":"ae88728b911af97e928890b1c3b7b34dd25fb313f3b20cd73e532e2903d3d3b9","ParentId":"16c101215b54ac2210fa62d54e0893323ae43e3d33b75119b1246a9dbbc1c7cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23901352,"VirtualSize":430388853}
|
73
|
+
,{"Created":1415863690,"Id":"16c101215b54ac2210fa62d54e0893323ae43e3d33b75119b1246a9dbbc1c7cf","ParentId":"4c86ccffaf465d6688815f844bfadbb91a76df42043e629d208c5b75de31b891","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8442747,"VirtualSize":406487501}
|
74
|
+
,{"Created":1415863686,"Id":"4c86ccffaf465d6688815f844bfadbb91a76df42043e629d208c5b75de31b891","ParentId":"e930198c27c4d790fd3eece5212c7ab1e6f272bfd21061c877b38696aa91ac27","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":398044754}
|
75
|
+
,{"Created":1415863685,"Id":"e930198c27c4d790fd3eece5212c7ab1e6f272bfd21061c877b38696aa91ac27","ParentId":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1861177,"VirtualSize":398044681}
|
76
|
+
,{"Created":1415863681,"Id":"7e2db37c6564bf030e6c5af9725bf9f9a8196846e3a77a51e201fc97871e2e60","ParentId":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","RepoTags":["registry:latest"],"Size":0,"VirtualSize":411649320}
|
77
|
+
,{"Created":1415863680,"Id":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","ParentId":"c978e4c4261aec2dbc24c84427460afdaeaa64359ff4ed0ad6d4d00f0e0e0cd7","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
78
|
+
,{"Created":1415863680,"Id":"c978e4c4261aec2dbc24c84427460afdaeaa64359ff4ed0ad6d4d00f0e0e0cd7","ParentId":"f846b2ccf2c5679f8d95014285a8e771441b5e5fc04670e0dfcb1242e985eb5e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
79
|
+
,{"Created":1415863679,"Id":"f846b2ccf2c5679f8d95014285a8e771441b5e5fc04670e0dfcb1242e985eb5e","ParentId":"7949c9f83980aab0ac80e3150c0d3f899556c68f35d8f6f9ca7c79ecb769b70e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
80
|
+
,{"Created":1415863679,"Id":"7949c9f83980aab0ac80e3150c0d3f899556c68f35d8f6f9ca7c79ecb769b70e","ParentId":"e8ca0e3bcd941b41c0c3dabebdb545f8331ddbb25257e6bc2cd3b6e6233d64f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":411649320}
|
81
|
+
,{"Created":1415863677,"Id":"e8ca0e3bcd941b41c0c3dabebdb545f8331ddbb25257e6bc2cd3b6e6233d64f5","ParentId":"d242d0f728d9aaec3a24215bd3f6fc85a365f36bbb97727a84d5de7cc45792c4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23990121,"VirtualSize":411598524}
|
82
|
+
,{"Created":1415863518,"Id":"d242d0f728d9aaec3a24215bd3f6fc85a365f36bbb97727a84d5de7cc45792c4","ParentId":"b3b586534b2a68b97cec6e3d676fe1b2a1713565929c7e9ff331aad04eaf83cb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":387608403}
|
83
|
+
,{"Created":1415863510,"Id":"b3b586534b2a68b97cec6e3d676fe1b2a1713565929c7e9ff331aad04eaf83cb","ParentId":"1ac06968b34e2b5b7c4e16488a4059f6493018f6744a57cf6a4fd2418f7acc4f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":376057846}
|
84
|
+
,{"Created":1415863509,"Id":"1ac06968b34e2b5b7c4e16488a4059f6493018f6744a57cf6a4fd2418f7acc4f","ParentId":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1879606,"VirtualSize":376057773}
|
85
|
+
,{"Created":1415309161,"Id":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","ParentId":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":174920601,"VirtualSize":374178167}
|
86
|
+
,{"Created":1415306638,"Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","ParentId":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85100505}
|
87
|
+
,{"Created":1415306636,"Id":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":85100505,"VirtualSize":85100505}
|
88
|
+
,{"Created":1414177799,"Id":"c723c9b95ac05c29c3e96b0b02e8fcf12096d850306b776a17877ee061daf49f","ParentId":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","RepoTags":["registry:0.7.3"],"Size":0,"VirtualSize":426413472}
|
89
|
+
,{"Created":1414177799,"Id":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","ParentId":"00bcc0fe318f87107ed0db582ed109899506cd2cde230505ea11a5c400e9ac7a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
90
|
+
,{"Created":1414177798,"Id":"96490e2b34642fabcdf6c4c157bd07be2caf4a71b9bd42c27386a1ff28d94d0c","ParentId":"1168ef7bd438745360d3506a6182ed73fec60bfea4181732dd75d6447016f012","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
91
|
+
,{"Created":1414177798,"Id":"00bcc0fe318f87107ed0db582ed109899506cd2cde230505ea11a5c400e9ac7a","ParentId":"96490e2b34642fabcdf6c4c157bd07be2caf4a71b9bd42c27386a1ff28d94d0c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
92
|
+
,{"Created":1414177797,"Id":"1168ef7bd438745360d3506a6182ed73fec60bfea4181732dd75d6447016f012","ParentId":"a9c8dae074b96475a0775e199f79e456f0ee9a8288164e0b84fcc65ca163432e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20135062,"VirtualSize":426413472}
|
93
|
+
,{"Created":1414177667,"Id":"a9c8dae074b96475a0775e199f79e456f0ee9a8288164e0b84fcc65ca163432e","ParentId":"17b869d7773564fa1ca26ef3aa5b3a9e615dabd1a433a4a00848c0c9790096fe","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8437018,"VirtualSize":406278410}
|
94
|
+
,{"Created":1414177663,"Id":"17b869d7773564fa1ca26ef3aa5b3a9e615dabd1a433a4a00848c0c9790096fe","ParentId":"4627c1e0f2389a25dce44361dba566542607509b4fec86cc7fae9f6bb93dc2eb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":397841392}
|
95
|
+
,{"Created":1414177663,"Id":"4627c1e0f2389a25dce44361dba566542607509b4fec86cc7fae9f6bb93dc2eb","ParentId":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1657815,"VirtualSize":397841319}
|
96
|
+
,{"Created":1414174623,"Id":"bee70978874ce288a546770e762196041c90d5b0c0ef7e0c3d2e551d79417701","ParentId":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","RepoTags":["registry:0.6.9"],"Size":0,"VirtualSize":462038905}
|
97
|
+
,{"Created":1414174623,"Id":"74583b71c35c28e06e11e0af0193351b852f3e9466a7b2c19a3add9a8528ee57","ParentId":"0909821a1551e63f5b169edaa3fa460134d86aa0ed5e6ed3acb4f50afa98002d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":462038905}
|
98
|
+
,{"Created":1414174623,"Id":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","ParentId":"74583b71c35c28e06e11e0af0193351b852f3e9466a7b2c19a3add9a8528ee57","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":462038905}
|
99
|
+
,{"Created":1414174622,"Id":"0909821a1551e63f5b169edaa3fa460134d86aa0ed5e6ed3acb4f50afa98002d","ParentId":"ad702f54c76e4d5e1fb47f9efc355c871f7087ae772ca0fafeedad8185d17058","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":34915187,"VirtualSize":462038905}
|
100
|
+
,{"Created":1414174578,"Id":"29b16b1bfd162dd7b35cb98a72ad44108361bede4e42679e01dd8aa15aa1fe0f","ParentId":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1613702,"VirtualSize":427123645}
|
101
|
+
,{"Created":1414174578,"Id":"ad702f54c76e4d5e1fb47f9efc355c871f7087ae772ca0fafeedad8185d17058","ParentId":"29b16b1bfd162dd7b35cb98a72ad44108361bede4e42679e01dd8aa15aa1fe0f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":427123718}
|
102
|
+
,{"Created":1414126280,"Id":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","ParentId":"9fe54074b35a3dd77eb2ffe2edf9226645e71fe292964b6d662a4010e695d9b8","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":41247201,"VirtualSize":396183504}
|
103
|
+
,{"Created":1414126257,"Id":"9fe54074b35a3dd77eb2ffe2edf9226645e71fe292964b6d662a4010e695d9b8","ParentId":"cd72e4fcfd16a48d617cc8fe6c692400b55c3dd013a357f485a08a820f1f75ab","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":135294909,"VirtualSize":354936303}
|
104
|
+
,{"Created":1414126216,"Id":"cd72e4fcfd16a48d617cc8fe6c692400b55c3dd013a357f485a08a820f1f75ab","ParentId":"57b5d5cb0bfe239f714f9a00439d7774f3b3359270f81ea74b41dbd7775eb46a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":219641394}
|
105
|
+
,{"Created":1414126211,"Id":"57b5d5cb0bfe239f714f9a00439d7774f3b3359270f81ea74b41dbd7775eb46a","ParentId":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20383828,"VirtualSize":219641394}
|
106
|
+
,{"Created":1414108439,"Id":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","ParentId":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":199257566}
|
107
|
+
,{"Created":1414108438,"Id":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","ParentId":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6557772,"VirtualSize":199257566}
|
108
|
+
,{"Created":1414108414,"Id":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","ParentId":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1895,"VirtualSize":192699794}
|
109
|
+
,{"Created":1414108413,"Id":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","ParentId":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":192697899}
|
110
|
+
,{"Created":1414108412,"Id":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","ParentId":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194791,"VirtualSize":192697899}
|
111
|
+
,{"Created":1413872056,"Id":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192503108,"VirtualSize":192503108}
|
112
|
+
,{"Created":1412204406,"Id":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","ParentId":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6614587,"VirtualSize":425509943}
|
113
|
+
,{"Created":1412204399,"Id":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","ParentId":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":10478,"VirtualSize":418895356}
|
114
|
+
,{"Created":1412204376,"Id":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","ParentId":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":234168708,"VirtualSize":418884878}
|
115
|
+
,{"Created":1412196370,"Id":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":5454693,"VirtualSize":5454693}
|
116
|
+
,{"Created":1412196370,"Id":"d415c60e5ea32875e4ddc7f7578bfaac3d59fb16e1334e705398b10ee91af801","ParentId":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
|
117
|
+
,{"Created":1412196368,"Id":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2433303,"VirtualSize":2433303}
|
118
|
+
,{"Created":1412196368,"Id":"e72ac664f4f0c6a061ac4ef332557a70d69b0c624b6add35f1c181ff7fff2287","ParentId":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
|
119
|
+
,{"Created":1412196367,"Id":"4b2909447dbef01f71ca476725c2dbb3af12de41aa2d7491d62c66678ede2294","ParentId":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
|
120
|
+
,{"Created":1412196367,"Id":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
|
121
|
+
,{"Created":1412196367,"Id":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2489301,"VirtualSize":2489301}
|
122
|
+
,{"Created":1403128415,"Id":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","ParentId":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":4411741,"VirtualSize":184716170}
|
123
|
+
,{"Created":1403128408,"Id":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","ParentId":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":74007417,"VirtualSize":180304429}
|
124
|
+
,{"Created":1403128396,"Id":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","ParentId":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":189999,"VirtualSize":106295125}
|
125
|
+
,{"Created":1403128396,"Id":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","ParentId":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1887,"VirtualSize":106297012}
|
126
|
+
,{"Created":1403128393,"Id":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":106105126,"VirtualSize":106105126}
|
127
|
+
,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
|
242
128
|
]
|
243
129
|
http_version:
|
244
|
-
recorded_at:
|
130
|
+
recorded_at: Mon, 01 Dec 2014 18:08:55 GMT
|
245
131
|
recorded_with: VCR 2.9.3
|