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
@@ -2,13 +2,13 @@
|
|
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
14
|
response:
|
@@ -19,208 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
- Mon,
|
22
|
+
- Mon, 01 Dec 2014 18:08:52 GMT
|
23
23
|
body:
|
24
24
|
encoding: UTF-8
|
25
|
-
string: "{\"status\":\"
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":525905,\"total\":94863360,\"start\":1414450696},\"progress\":\"[\\u003e
|
31
|
-
\ ] 525.9 kB/94.86 MB 1m11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1066577,\"total\":94863360,\"start\":1414450696},\"progress\":\"[\\u003e
|
32
|
-
\ ] 1.067 MB/94.86 MB 2m2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1607249,\"total\":94863360,\"start\":1414450696},\"progress\":\"[\\u003e
|
33
|
-
\ ] 1.607 MB/94.86 MB 1m54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2147921,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=\\u003e
|
34
|
-
\ ] 2.148 MB/94.86 MB 1m46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2688593,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=\\u003e
|
35
|
-
\ ] 2.689 MB/94.86 MB 1m37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3229265,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=\\u003e
|
36
|
-
\ ] 3.229 MB/94.86 MB 1m32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3769937,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=\\u003e
|
37
|
-
\ ] 3.77 MB/94.86 MB 1m26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4310609,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==\\u003e
|
38
|
-
\ ] 4.311 MB/94.86 MB 1m25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4851281,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==\\u003e
|
39
|
-
\ ] 4.851 MB/94.86 MB 1m24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5391953,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==\\u003e
|
40
|
-
\ ] 5.392 MB/94.86 MB 1m21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5932625,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===\\u003e
|
41
|
-
\ ] 5.933 MB/94.86 MB 1m19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6473297,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===\\u003e
|
42
|
-
\ ] 6.473 MB/94.86 MB 1m16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7013969,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===\\u003e
|
43
|
-
\ ] 7.014 MB/94.86 MB 1m13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7554641,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===\\u003e
|
44
|
-
\ ] 7.555 MB/94.86 MB 1m11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8095313,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====\\u003e
|
45
|
-
\ ] 8.095 MB/94.86 MB 1m9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8635985,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====\\u003e
|
46
|
-
\ ] 8.636 MB/94.86 MB 1m7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9176657,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====\\u003e
|
47
|
-
\ ] 9.177 MB/94.86 MB 1m5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9717329,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====\\u003e
|
48
|
-
\ ] 9.717 MB/94.86 MB 1m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10258001,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====\\u003e
|
49
|
-
\ ] 10.26 MB/94.86 MB 1m2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10798673,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====\\u003e
|
50
|
-
\ ] 10.8 MB/94.86 MB 1m2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11339345,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====\\u003e
|
51
|
-
\ ] 11.34 MB/94.86 MB 1m1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11880017,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======\\u003e
|
52
|
-
\ ] 11.88 MB/94.86 MB 1m0s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12420689,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======\\u003e
|
53
|
-
\ ] 12.42 MB/94.86 MB 59s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12961361,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======\\u003e
|
54
|
-
\ ] 12.96 MB/94.86 MB 58s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13502033,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======\\u003e
|
55
|
-
\ ] 13.5 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14042705,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======\\u003e
|
56
|
-
\ ] 14.04 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14583377,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======\\u003e
|
57
|
-
\ ] 14.58 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15124049,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======\\u003e
|
58
|
-
\ ] 15.12 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15664721,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========\\u003e
|
59
|
-
\ ] 15.66 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16205393,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========\\u003e
|
60
|
-
\ ] 16.21 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16746065,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========\\u003e
|
61
|
-
\ ] 16.75 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17286737,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========\\u003e
|
62
|
-
\ ] 17.29 MB/94.86 MB 52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17827409,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========\\u003e
|
63
|
-
\ ] 17.83 MB/94.86 MB 51s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18368081,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========\\u003e
|
64
|
-
\ ] 18.37 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18908753,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========\\u003e
|
65
|
-
\ ] 18.91 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19449425,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========\\u003e
|
66
|
-
\ ] 19.45 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19990097,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========\\u003e
|
67
|
-
\ ] 19.99 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20530769,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========\\u003e
|
68
|
-
\ ] 20.53 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21071441,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========\\u003e
|
69
|
-
\ ] 21.07 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21612113,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========\\u003e
|
70
|
-
\ ] 21.61 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22152785,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========\\u003e
|
71
|
-
\ ] 22.15 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22693457,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========\\u003e
|
72
|
-
\ ] 22.69 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23234129,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============\\u003e
|
73
|
-
\ ] 23.23 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23774801,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============\\u003e
|
74
|
-
\ ] 23.77 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24315473,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============\\u003e
|
75
|
-
\ ] 24.32 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24856145,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============\\u003e
|
76
|
-
\ ] 24.86 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25396817,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============\\u003e
|
77
|
-
\ ] 25.4 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25937489,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============\\u003e
|
78
|
-
\ ] 25.94 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26478161,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============\\u003e
|
79
|
-
\ ] 26.48 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27018833,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============\\u003e
|
80
|
-
\ ] 27.02 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27559505,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============\\u003e
|
81
|
-
\ ] 27.56 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28100177,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============\\u003e
|
82
|
-
\ ] 28.1 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28640849,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============\\u003e
|
83
|
-
\ ] 28.64 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29181521,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============\\u003e
|
84
|
-
\ ] 29.18 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29722193,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============\\u003e
|
85
|
-
\ ] 29.72 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30262865,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============\\u003e
|
86
|
-
\ ] 30.26 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30803537,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================\\u003e
|
87
|
-
\ ] 30.8 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31344209,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================\\u003e
|
88
|
-
\ ] 31.34 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31884881,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================\\u003e
|
89
|
-
\ ] 31.88 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32425553,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================\\u003e
|
90
|
-
\ ] 32.43 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32966225,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================\\u003e
|
91
|
-
\ ] 32.97 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33506897,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================\\u003e
|
92
|
-
\ ] 33.51 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34047569,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================\\u003e
|
93
|
-
\ ] 34.05 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34588241,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==================\\u003e
|
94
|
-
\ ] 34.59 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35128913,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==================\\u003e
|
95
|
-
\ ] 35.13 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35669585,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==================\\u003e
|
96
|
-
\ ] 35.67 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36210257,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===================\\u003e
|
97
|
-
\ ] 36.21 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36750929,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===================\\u003e
|
98
|
-
\ ] 36.75 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37291601,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===================\\u003e
|
99
|
-
\ ] 37.29 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37832273,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===================\\u003e
|
100
|
-
\ ] 37.83 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38372945,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====================\\u003e
|
101
|
-
\ ] 38.37 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38913617,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====================\\u003e
|
102
|
-
\ ] 38.91 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39454289,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====================\\u003e
|
103
|
-
\ ] 39.45 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39994961,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====================\\u003e
|
104
|
-
\ ] 39.99 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40535633,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====================\\u003e
|
105
|
-
\ ] 40.54 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41076305,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====================\\u003e
|
106
|
-
\ ] 41.08 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41616977,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====================\\u003e
|
107
|
-
\ ] 41.62 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42157649,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======================\\u003e
|
108
|
-
\ ] 42.16 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42698321,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======================\\u003e
|
109
|
-
\ ] 42.7 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43238993,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======================\\u003e
|
110
|
-
\ ] 43.24 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43779665,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======================\\u003e
|
111
|
-
\ ] 43.78 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44320337,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======================\\u003e
|
112
|
-
\ ] 44.32 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44861009,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======================\\u003e
|
113
|
-
\ ] 44.86 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45401681,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======================\\u003e
|
114
|
-
\ ] 45.4 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45942353,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========================\\u003e
|
115
|
-
\ ] 45.94 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46483025,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========================\\u003e
|
116
|
-
\ ] 46.48 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47023697,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========================\\u003e
|
117
|
-
\ ] 47.02 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47564369,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========================\\u003e
|
118
|
-
\ ] 47.56 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48105041,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========================\\u003e
|
119
|
-
\ ] 48.11 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48645713,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========================\\u003e
|
120
|
-
\ ] 48.65 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49186385,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========================\\u003e
|
121
|
-
\ ] 49.19 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49727057,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========================\\u003e
|
122
|
-
\ ] 49.73 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50267729,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========================\\u003e
|
123
|
-
\ ] 50.27 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50808401,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========================\\u003e
|
124
|
-
\ ] 50.81 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51349073,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========================\\u003e
|
125
|
-
\ ] 51.35 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51889745,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========================\\u003e
|
126
|
-
\ ] 51.89 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52430417,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========================\\u003e
|
127
|
-
\ ] 52.43 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52971089,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========================\\u003e
|
128
|
-
\ ] 52.97 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53511761,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============================\\u003e
|
129
|
-
\ ] 53.51 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54052433,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============================\\u003e
|
130
|
-
\ ] 54.05 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54593105,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============================\\u003e
|
131
|
-
\ ] 54.59 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55133777,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============================\\u003e
|
132
|
-
\ ] 55.13 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55674449,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============================\\u003e
|
133
|
-
\ ] 55.67 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56215121,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============================\\u003e
|
134
|
-
\ ] 56.22 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56755793,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============================\\u003e
|
135
|
-
\ ] 56.76 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57296465,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============================\\u003e
|
136
|
-
\ ] 57.3 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57837137,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============================\\u003e
|
137
|
-
\ ] 57.84 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58377809,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============================\\u003e
|
138
|
-
\ ] 58.38 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58918481,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============================\\u003e
|
139
|
-
\ ] 58.92 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59459153,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============================\\u003e
|
140
|
-
\ ] 59.46 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59999825,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============================\\u003e
|
141
|
-
\ ] 60 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60540497,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============================\\u003e
|
142
|
-
\ ] 60.54 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61081169,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================================\\u003e
|
143
|
-
\ ] 61.08 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61621841,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================================\\u003e
|
144
|
-
\ ] 61.62 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62162513,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================================\\u003e
|
145
|
-
\ ] 62.16 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62703185,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================================\\u003e
|
146
|
-
\ ] 62.7 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63243857,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================================\\u003e
|
147
|
-
\ ] 63.24 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63784529,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================================\\u003e
|
148
|
-
\ ] 63.78 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64325201,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================================\\u003e
|
149
|
-
\ ] 64.33 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64865873,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==================================\\u003e
|
150
|
-
\ ] 64.87 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65406545,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==================================\\u003e
|
151
|
-
\ ] 65.41 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65947217,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==================================\\u003e
|
152
|
-
\ ] 65.95 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66487889,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===================================\\u003e
|
153
|
-
\ ] 66.49 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67028561,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===================================\\u003e
|
154
|
-
\ ] 67.03 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67569233,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===================================\\u003e
|
155
|
-
\ ] 67.57 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68109905,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===================================\\u003e
|
156
|
-
\ ] 68.11 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68650577,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====================================\\u003e
|
157
|
-
\ ] 68.65 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69191249,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====================================\\u003e
|
158
|
-
\ ] 69.19 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69731921,\"total\":94863360,\"start\":1414450696},\"progress\":\"[====================================\\u003e
|
159
|
-
\ ] 69.73 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70272593,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====================================\\u003e
|
160
|
-
\ ] 70.27 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70813265,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====================================\\u003e
|
161
|
-
\ ] 70.81 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71353937,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====================================\\u003e
|
162
|
-
\ ] 71.35 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71894609,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=====================================\\u003e
|
163
|
-
\ ] 71.89 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72435281,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======================================\\u003e
|
164
|
-
\ ] 72.44 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72975953,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======================================\\u003e
|
165
|
-
\ ] 72.98 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73516625,\"total\":94863360,\"start\":1414450696},\"progress\":\"[======================================\\u003e
|
166
|
-
\ ] 73.52 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74057297,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======================================\\u003e
|
167
|
-
\ ] 74.06 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74597969,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======================================\\u003e
|
168
|
-
\ ] 74.6 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75138641,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======================================\\u003e
|
169
|
-
\ ] 75.14 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75679313,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=======================================\\u003e
|
170
|
-
\ ] 75.68 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76219985,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========================================\\u003e
|
171
|
-
\ ] 76.22 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76760657,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========================================\\u003e
|
172
|
-
\ ] 76.76 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77301329,\"total\":94863360,\"start\":1414450696},\"progress\":\"[========================================\\u003e
|
173
|
-
\ ] 77.3 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77842001,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========================================\\u003e
|
174
|
-
\ ] 77.84 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78382673,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========================================\\u003e
|
175
|
-
\ ] 78.38 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78923345,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========================================\\u003e
|
176
|
-
\ ] 78.92 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79464017,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=========================================\\u003e
|
177
|
-
\ ] 79.46 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80004689,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========================================\\u003e
|
178
|
-
\ ] 80 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80545361,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========================================\\u003e
|
179
|
-
\ ] 80.55 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81086033,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==========================================\\u003e
|
180
|
-
\ ] 81.09 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81626705,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========================================\\u003e
|
181
|
-
\ ] 81.63 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82167377,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========================================\\u003e
|
182
|
-
\ ] 82.17 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82708049,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========================================\\u003e
|
183
|
-
\ ] 82.71 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83248721,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===========================================\\u003e
|
184
|
-
\ ] 83.25 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83789393,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============================================\\u003e
|
185
|
-
\ ] 83.79 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84330065,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============================================\\u003e
|
186
|
-
\ ] 84.33 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84870737,\"total\":94863360,\"start\":1414450696},\"progress\":\"[============================================\\u003e
|
187
|
-
\ ] 84.87 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85411409,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============================================\\u003e
|
188
|
-
\ ] 85.41 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85952081,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============================================\\u003e
|
189
|
-
\ ] 85.95 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86492753,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============================================\\u003e
|
190
|
-
\ ] 86.49 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87033425,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=============================================\\u003e
|
191
|
-
\ ] 87.03 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87574097,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============================================\\u003e
|
192
|
-
\ ] 87.57 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88114769,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============================================\\u003e
|
193
|
-
\ ] 88.11 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88655441,\"total\":94863360,\"start\":1414450696},\"progress\":\"[==============================================\\u003e
|
194
|
-
\ ] 88.66 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89196113,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============================================\\u003e
|
195
|
-
\ ] 89.2 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89736785,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============================================\\u003e
|
196
|
-
\ ] 89.74 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90277457,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============================================\\u003e
|
197
|
-
\ ] 90.28 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90818129,\"total\":94863360,\"start\":1414450696},\"progress\":\"[===============================================\\u003e
|
198
|
-
\ ] 90.82 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91358801,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================================================\\u003e
|
199
|
-
\ ] 91.36 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91899473,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================================================\\u003e
|
200
|
-
\ ] 91.9 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92440145,\"total\":94863360,\"start\":1414450696},\"progress\":\"[================================================\\u003e
|
201
|
-
\ ] 92.44 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92980817,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================================================\\u003e
|
202
|
-
] 92.98 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93521489,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================================================\\u003e
|
203
|
-
] 93.52 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94062161,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================================================\\u003e
|
204
|
-
] 94.06 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94602833,\"total\":94863360,\"start\":1414450696},\"progress\":\"[=================================================\\u003e
|
205
|
-
] 94.6 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414450696},\"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\":1414450749},\"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"
|
25
|
+
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
26
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"f10807909bc5\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"f6fab3b798be\"}{\"status\":\"Status:
|
29
|
+
Image is up to date for debian:wheezy\"}\r\n"
|
213
30
|
http_version:
|
214
|
-
recorded_at: Mon,
|
31
|
+
recorded_at: Mon, 01 Dec 2014 18:08:52 GMT
|
215
32
|
- request:
|
216
33
|
method: get
|
217
|
-
uri:
|
34
|
+
uri: "<DOCKER_HOST>/v1.15/images/json?all=true"
|
218
35
|
body:
|
219
36
|
encoding: US-ASCII
|
220
37
|
string: ''
|
221
38
|
headers:
|
222
39
|
User-Agent:
|
223
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.15.0
|
224
41
|
Content-Type:
|
225
42
|
- text/plain
|
226
43
|
response:
|
@@ -231,26 +48,93 @@ http_interactions:
|
|
231
48
|
Content-Type:
|
232
49
|
- application/json
|
233
50
|
Date:
|
234
|
-
- Mon,
|
235
|
-
Content-Length:
|
236
|
-
- '403'
|
51
|
+
- Mon, 01 Dec 2014 18:08:52 GMT
|
237
52
|
body:
|
238
53
|
encoding: UTF-8
|
239
54
|
string: |-
|
240
|
-
[{"Created":
|
241
|
-
,{"Created":
|
55
|
+
[{"Created":1416799251,"Id":"08e20b3475072326a5f6855b4bca4fe53680d025f379eb54c5076de119cae17b","ParentId":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","RepoTags":["tianon/true:latest"],"Size":0,"VirtualSize":125}
|
56
|
+
,{"Created":1416799251,"Id":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":125,"VirtualSize":125}
|
57
|
+
,{"Created":1415864019,"Id":"74f5b38a45c97043cdf0082b8e8dd002497ab6b03388cdb2f20bafb7468ad55b","ParentId":"31ae66be94f160a92e1e757ab9a66aa7183af55183080576fb93a52cbce9e0cd","RepoTags":["registry:0.9.0"],"Size":0,"VirtualSize":411649756}
|
58
|
+
,{"Created":1415864018,"Id":"31ae66be94f160a92e1e757ab9a66aa7183af55183080576fb93a52cbce9e0cd","ParentId":"b3fd13d94685095ec1c1f8f0f371dde8be9a21f8f457d4d10e5ad72042a152af","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
|
59
|
+
,{"Created":1415864017,"Id":"b3fd13d94685095ec1c1f8f0f371dde8be9a21f8f457d4d10e5ad72042a152af","ParentId":"eae8be82bb623181222558e4df0dd59c943cdc2fd3c4e41de669e4bd35a866e6","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
|
60
|
+
,{"Created":1415864017,"Id":"eae8be82bb623181222558e4df0dd59c943cdc2fd3c4e41de669e4bd35a866e6","ParentId":"8eae38b276496440046cd9f545c24533e692cbed6fd1bc4e29a7af5e4ae72a61","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
|
61
|
+
,{"Created":1415864016,"Id":"8eae38b276496440046cd9f545c24533e692cbed6fd1bc4e29a7af5e4ae72a61","ParentId":"16b02bf8dc3d1f70e098cbd968f154468fcf41be6bf59b24a35b4fdded3edbca","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":411649756}
|
62
|
+
,{"Created":1415864015,"Id":"16b02bf8dc3d1f70e098cbd968f154468fcf41be6bf59b24a35b4fdded3edbca","ParentId":"b22cb7ed5ccbeeaf2a67d5d3034a308c6eedf2ccb247851c9a14c05b441716fa","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23990121,"VirtualSize":411598960}
|
63
|
+
,{"Created":1415863862,"Id":"b22cb7ed5ccbeeaf2a67d5d3034a308c6eedf2ccb247851c9a14c05b441716fa","ParentId":"8b170afd480f41a84331dcaabfa6465769205e645ba13f8baa085f1f68e4f1cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":387608839}
|
64
|
+
,{"Created":1415863855,"Id":"8b170afd480f41a84331dcaabfa6465769205e645ba13f8baa085f1f68e4f1cf","ParentId":"8dda8bb23254979ce24f2ca4d7115f4563a9ae4f0e774b2d419318d81a5c720d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":376058282}
|
65
|
+
,{"Created":1415863853,"Id":"8dda8bb23254979ce24f2ca4d7115f4563a9ae4f0e774b2d419318d81a5c720d","ParentId":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1880042,"VirtualSize":376058209}
|
66
|
+
,{"Created":1415863849,"Id":"d9925ba888d4dba2d9b22273d261155fe3b2a4e6cfa5db44e4abe5ac8e311efa","ParentId":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","RepoTags":["registry:0.8.1"],"Size":0,"VirtualSize":430388853}
|
67
|
+
,{"Created":1415863848,"Id":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","ParentId":"8b840022b4b5d60e0f66d7f72b992eb5b52e75dfdf1b8e9535d85df57236e7f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
68
|
+
,{"Created":1415863847,"Id":"8b840022b4b5d60e0f66d7f72b992eb5b52e75dfdf1b8e9535d85df57236e7f5","ParentId":"11d3a913c69b0ea1c7d0df3708dfa8c789b68dc0884471cf862de1160c7eaaba","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
69
|
+
,{"Created":1415863846,"Id":"11d3a913c69b0ea1c7d0df3708dfa8c789b68dc0884471cf862de1160c7eaaba","ParentId":"ae88728b911af97e928890b1c3b7b34dd25fb313f3b20cd73e532e2903d3d3b9","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
70
|
+
,{"Created":1415863845,"Id":"ae88728b911af97e928890b1c3b7b34dd25fb313f3b20cd73e532e2903d3d3b9","ParentId":"16c101215b54ac2210fa62d54e0893323ae43e3d33b75119b1246a9dbbc1c7cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23901352,"VirtualSize":430388853}
|
71
|
+
,{"Created":1415863690,"Id":"16c101215b54ac2210fa62d54e0893323ae43e3d33b75119b1246a9dbbc1c7cf","ParentId":"4c86ccffaf465d6688815f844bfadbb91a76df42043e629d208c5b75de31b891","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8442747,"VirtualSize":406487501}
|
72
|
+
,{"Created":1415863686,"Id":"4c86ccffaf465d6688815f844bfadbb91a76df42043e629d208c5b75de31b891","ParentId":"e930198c27c4d790fd3eece5212c7ab1e6f272bfd21061c877b38696aa91ac27","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":398044754}
|
73
|
+
,{"Created":1415863685,"Id":"e930198c27c4d790fd3eece5212c7ab1e6f272bfd21061c877b38696aa91ac27","ParentId":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1861177,"VirtualSize":398044681}
|
74
|
+
,{"Created":1415863681,"Id":"7e2db37c6564bf030e6c5af9725bf9f9a8196846e3a77a51e201fc97871e2e60","ParentId":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","RepoTags":["registry:latest"],"Size":0,"VirtualSize":411649320}
|
75
|
+
,{"Created":1415863680,"Id":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","ParentId":"c978e4c4261aec2dbc24c84427460afdaeaa64359ff4ed0ad6d4d00f0e0e0cd7","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
76
|
+
,{"Created":1415863680,"Id":"c978e4c4261aec2dbc24c84427460afdaeaa64359ff4ed0ad6d4d00f0e0e0cd7","ParentId":"f846b2ccf2c5679f8d95014285a8e771441b5e5fc04670e0dfcb1242e985eb5e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
77
|
+
,{"Created":1415863679,"Id":"f846b2ccf2c5679f8d95014285a8e771441b5e5fc04670e0dfcb1242e985eb5e","ParentId":"7949c9f83980aab0ac80e3150c0d3f899556c68f35d8f6f9ca7c79ecb769b70e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
78
|
+
,{"Created":1415863679,"Id":"7949c9f83980aab0ac80e3150c0d3f899556c68f35d8f6f9ca7c79ecb769b70e","ParentId":"e8ca0e3bcd941b41c0c3dabebdb545f8331ddbb25257e6bc2cd3b6e6233d64f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":411649320}
|
79
|
+
,{"Created":1415863677,"Id":"e8ca0e3bcd941b41c0c3dabebdb545f8331ddbb25257e6bc2cd3b6e6233d64f5","ParentId":"d242d0f728d9aaec3a24215bd3f6fc85a365f36bbb97727a84d5de7cc45792c4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23990121,"VirtualSize":411598524}
|
80
|
+
,{"Created":1415863518,"Id":"d242d0f728d9aaec3a24215bd3f6fc85a365f36bbb97727a84d5de7cc45792c4","ParentId":"b3b586534b2a68b97cec6e3d676fe1b2a1713565929c7e9ff331aad04eaf83cb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":387608403}
|
81
|
+
,{"Created":1415863510,"Id":"b3b586534b2a68b97cec6e3d676fe1b2a1713565929c7e9ff331aad04eaf83cb","ParentId":"1ac06968b34e2b5b7c4e16488a4059f6493018f6744a57cf6a4fd2418f7acc4f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":376057846}
|
82
|
+
,{"Created":1415863509,"Id":"1ac06968b34e2b5b7c4e16488a4059f6493018f6744a57cf6a4fd2418f7acc4f","ParentId":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1879606,"VirtualSize":376057773}
|
83
|
+
,{"Created":1415309161,"Id":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","ParentId":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":174920601,"VirtualSize":374178167}
|
84
|
+
,{"Created":1415306638,"Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","ParentId":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85100505}
|
85
|
+
,{"Created":1415306636,"Id":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":85100505,"VirtualSize":85100505}
|
86
|
+
,{"Created":1414177799,"Id":"c723c9b95ac05c29c3e96b0b02e8fcf12096d850306b776a17877ee061daf49f","ParentId":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","RepoTags":["registry:0.7.3"],"Size":0,"VirtualSize":426413472}
|
87
|
+
,{"Created":1414177799,"Id":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","ParentId":"00bcc0fe318f87107ed0db582ed109899506cd2cde230505ea11a5c400e9ac7a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
88
|
+
,{"Created":1414177798,"Id":"96490e2b34642fabcdf6c4c157bd07be2caf4a71b9bd42c27386a1ff28d94d0c","ParentId":"1168ef7bd438745360d3506a6182ed73fec60bfea4181732dd75d6447016f012","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
89
|
+
,{"Created":1414177798,"Id":"00bcc0fe318f87107ed0db582ed109899506cd2cde230505ea11a5c400e9ac7a","ParentId":"96490e2b34642fabcdf6c4c157bd07be2caf4a71b9bd42c27386a1ff28d94d0c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
90
|
+
,{"Created":1414177797,"Id":"1168ef7bd438745360d3506a6182ed73fec60bfea4181732dd75d6447016f012","ParentId":"a9c8dae074b96475a0775e199f79e456f0ee9a8288164e0b84fcc65ca163432e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20135062,"VirtualSize":426413472}
|
91
|
+
,{"Created":1414177667,"Id":"a9c8dae074b96475a0775e199f79e456f0ee9a8288164e0b84fcc65ca163432e","ParentId":"17b869d7773564fa1ca26ef3aa5b3a9e615dabd1a433a4a00848c0c9790096fe","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8437018,"VirtualSize":406278410}
|
92
|
+
,{"Created":1414177663,"Id":"17b869d7773564fa1ca26ef3aa5b3a9e615dabd1a433a4a00848c0c9790096fe","ParentId":"4627c1e0f2389a25dce44361dba566542607509b4fec86cc7fae9f6bb93dc2eb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":397841392}
|
93
|
+
,{"Created":1414177663,"Id":"4627c1e0f2389a25dce44361dba566542607509b4fec86cc7fae9f6bb93dc2eb","ParentId":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1657815,"VirtualSize":397841319}
|
94
|
+
,{"Created":1414174623,"Id":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","ParentId":"74583b71c35c28e06e11e0af0193351b852f3e9466a7b2c19a3add9a8528ee57","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":462038905}
|
95
|
+
,{"Created":1414174623,"Id":"74583b71c35c28e06e11e0af0193351b852f3e9466a7b2c19a3add9a8528ee57","ParentId":"0909821a1551e63f5b169edaa3fa460134d86aa0ed5e6ed3acb4f50afa98002d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":462038905}
|
96
|
+
,{"Created":1414174623,"Id":"bee70978874ce288a546770e762196041c90d5b0c0ef7e0c3d2e551d79417701","ParentId":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","RepoTags":["registry:0.6.9"],"Size":0,"VirtualSize":462038905}
|
97
|
+
,{"Created":1414174622,"Id":"0909821a1551e63f5b169edaa3fa460134d86aa0ed5e6ed3acb4f50afa98002d","ParentId":"ad702f54c76e4d5e1fb47f9efc355c871f7087ae772ca0fafeedad8185d17058","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":34915187,"VirtualSize":462038905}
|
98
|
+
,{"Created":1414174578,"Id":"29b16b1bfd162dd7b35cb98a72ad44108361bede4e42679e01dd8aa15aa1fe0f","ParentId":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1613702,"VirtualSize":427123645}
|
99
|
+
,{"Created":1414174578,"Id":"ad702f54c76e4d5e1fb47f9efc355c871f7087ae772ca0fafeedad8185d17058","ParentId":"29b16b1bfd162dd7b35cb98a72ad44108361bede4e42679e01dd8aa15aa1fe0f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":427123718}
|
100
|
+
,{"Created":1414126280,"Id":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","ParentId":"9fe54074b35a3dd77eb2ffe2edf9226645e71fe292964b6d662a4010e695d9b8","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":41247201,"VirtualSize":396183504}
|
101
|
+
,{"Created":1414126257,"Id":"9fe54074b35a3dd77eb2ffe2edf9226645e71fe292964b6d662a4010e695d9b8","ParentId":"cd72e4fcfd16a48d617cc8fe6c692400b55c3dd013a357f485a08a820f1f75ab","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":135294909,"VirtualSize":354936303}
|
102
|
+
,{"Created":1414126216,"Id":"cd72e4fcfd16a48d617cc8fe6c692400b55c3dd013a357f485a08a820f1f75ab","ParentId":"57b5d5cb0bfe239f714f9a00439d7774f3b3359270f81ea74b41dbd7775eb46a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":219641394}
|
103
|
+
,{"Created":1414126211,"Id":"57b5d5cb0bfe239f714f9a00439d7774f3b3359270f81ea74b41dbd7775eb46a","ParentId":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20383828,"VirtualSize":219641394}
|
104
|
+
,{"Created":1414108439,"Id":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","ParentId":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":199257566}
|
105
|
+
,{"Created":1414108438,"Id":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","ParentId":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6557772,"VirtualSize":199257566}
|
106
|
+
,{"Created":1414108414,"Id":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","ParentId":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1895,"VirtualSize":192699794}
|
107
|
+
,{"Created":1414108413,"Id":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","ParentId":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":192697899}
|
108
|
+
,{"Created":1414108412,"Id":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","ParentId":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194791,"VirtualSize":192697899}
|
109
|
+
,{"Created":1413872056,"Id":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192503108,"VirtualSize":192503108}
|
110
|
+
,{"Created":1412204406,"Id":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","ParentId":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6614587,"VirtualSize":425509943}
|
111
|
+
,{"Created":1412204399,"Id":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","ParentId":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":10478,"VirtualSize":418895356}
|
112
|
+
,{"Created":1412204376,"Id":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","ParentId":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":234168708,"VirtualSize":418884878}
|
113
|
+
,{"Created":1412196370,"Id":"d415c60e5ea32875e4ddc7f7578bfaac3d59fb16e1334e705398b10ee91af801","ParentId":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
|
114
|
+
,{"Created":1412196370,"Id":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":5454693,"VirtualSize":5454693}
|
115
|
+
,{"Created":1412196368,"Id":"e72ac664f4f0c6a061ac4ef332557a70d69b0c624b6add35f1c181ff7fff2287","ParentId":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
|
116
|
+
,{"Created":1412196368,"Id":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2433303,"VirtualSize":2433303}
|
117
|
+
,{"Created":1412196367,"Id":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2489301,"VirtualSize":2489301}
|
118
|
+
,{"Created":1412196367,"Id":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
|
119
|
+
,{"Created":1412196367,"Id":"4b2909447dbef01f71ca476725c2dbb3af12de41aa2d7491d62c66678ede2294","ParentId":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
|
120
|
+
,{"Created":1403128415,"Id":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","ParentId":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":4411741,"VirtualSize":184716170}
|
121
|
+
,{"Created":1403128408,"Id":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","ParentId":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":74007417,"VirtualSize":180304429}
|
122
|
+
,{"Created":1403128396,"Id":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","ParentId":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1887,"VirtualSize":106297012}
|
123
|
+
,{"Created":1403128396,"Id":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","ParentId":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":189999,"VirtualSize":106295125}
|
124
|
+
,{"Created":1403128393,"Id":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":106105126,"VirtualSize":106105126}
|
125
|
+
,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
|
242
126
|
]
|
243
127
|
http_version:
|
244
|
-
recorded_at: Mon,
|
128
|
+
recorded_at: Mon, 01 Dec 2014 18:08:52 GMT
|
245
129
|
- request:
|
246
130
|
method: get
|
247
|
-
uri:
|
131
|
+
uri: "<DOCKER_HOST>/v1.15/images/f6fab3b798be/json"
|
248
132
|
body:
|
249
133
|
encoding: US-ASCII
|
250
134
|
string: ''
|
251
135
|
headers:
|
252
136
|
User-Agent:
|
253
|
-
- Swipely/Docker-API 1.
|
137
|
+
- Swipely/Docker-API 1.15.0
|
254
138
|
Content-Type:
|
255
139
|
- text/plain
|
256
140
|
response:
|
@@ -261,13 +145,13 @@ http_interactions:
|
|
261
145
|
Content-Type:
|
262
146
|
- application/json
|
263
147
|
Date:
|
264
|
-
- Mon,
|
148
|
+
- Mon, 01 Dec 2014 18:08:52 GMT
|
265
149
|
Content-Length:
|
266
|
-
- '
|
150
|
+
- '1460'
|
267
151
|
body:
|
268
152
|
encoding: UTF-8
|
269
153
|
string: |
|
270
|
-
{"Architecture":"","Author":"","Comment":"","Config":null,"Container":"
|
154
|
+
{"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"064f0e1ce709","Image":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"418e851cf98f783363d17a6b469d7e9f5768298d6596b357592562c77d2b5323","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/bin/bash]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"064f0e1ce709","Image":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-11-06T20:43:58.384012961Z","DockerVersion":"1.3.0","Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","Os":"linux","Parent":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Size":0,"VirtualSize":85100505}
|
271
155
|
http_version:
|
272
|
-
recorded_at: Mon,
|
156
|
+
recorded_at: Mon, 01 Dec 2014 18:08:52 GMT
|
273
157
|
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,300 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=busybox"
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Swipely/Docker-API 1.15.0
|
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
|
+
- Mon, 01 Dec 2014 18:08:34 GMT
|
23
|
+
body:
|
24
|
+
encoding: UTF-8
|
25
|
+
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"busybox:buildroot-2013.08.1\"}\r\n{\"status\":\"Already
|
26
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"ad8766e8635d\"}{\"status\":\"Already
|
29
|
+
exists\",\"progressDetail\":{},\"id\":\"4b2909447dbe\"}{\"status\":\"The image
|
30
|
+
you are pulling has been verified\",\"id\":\"busybox:buildroot-2014.02\"}\r\n{\"status\":\"Already
|
31
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
32
|
+
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Already
|
33
|
+
exists\",\"progressDetail\":{},\"id\":\"e433a6c5b276\"}{\"status\":\"Already
|
34
|
+
exists\",\"progressDetail\":{},\"id\":\"e72ac664f4f0\"}{\"status\":\"The image
|
35
|
+
you are pulling has been verified\",\"id\":\"busybox:latest\"}\r\n{\"status\":\"Already
|
36
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
37
|
+
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Already
|
38
|
+
exists\",\"progressDetail\":{},\"id\":\"e433a6c5b276\"}{\"status\":\"Already
|
39
|
+
exists\",\"progressDetail\":{},\"id\":\"e72ac664f4f0\"}{\"status\":\"The image
|
40
|
+
you are pulling has been verified\",\"id\":\"busybox:ubuntu-12.04\"}\r\n{\"status\":\"Already
|
41
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
42
|
+
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Already
|
43
|
+
exists\",\"progressDetail\":{},\"id\":\"0dfaa2625e19\"}{\"status\":\"Already
|
44
|
+
exists\",\"progressDetail\":{},\"id\":\"d415c60e5ea3\"}{\"status\":\"The image
|
45
|
+
you are pulling has been verified\",\"id\":\"busybox:ubuntu-14.04\"}\r\n{\"status\":\"Pulling
|
46
|
+
fs layer\",\"progressDetail\":{},\"id\":\"25fb2184d4af\"}{\"status\":\"Pulling
|
47
|
+
fs layer\",\"progressDetail\":{},\"id\":\"d940f6fef591\"}{\"status\":\"Already
|
48
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
49
|
+
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1417457316},\"progress\":\"[==================================================\\u003e]
|
50
|
+
3.072 kB/3.072 kB\",\"id\":\"d940f6fef591\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"d940f6fef591\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62264,\"total\":5744128,\"start\":1417457316},\"progress\":\"[\\u003e
|
51
|
+
\ ] 62.26 kB/5.744 MB 48s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127800,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=\\u003e
|
52
|
+
\ ] 127.8 kB/5.744 MB 25s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":192880,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=\\u003e
|
53
|
+
\ ] 192.9 kB/5.744 MB 17s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":258416,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==\\u003e
|
54
|
+
\ ] 258.4 kB/5.744 MB 13s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":323952,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==\\u003e
|
55
|
+
\ ] 324 kB/5.744 MB 11s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":389488,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===\\u003e
|
56
|
+
\ ] 389.5 kB/5.744 MB 9s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":455024,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===\\u003e
|
57
|
+
\ ] 455 kB/5.744 MB 8s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":520560,\"total\":5744128,\"start\":1417457316},\"progress\":\"[====\\u003e
|
58
|
+
\ ] 520.6 kB/5.744 MB 7s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":586096,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=====\\u003e
|
59
|
+
\ ] 586.1 kB/5.744 MB 6s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":651632,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=====\\u003e
|
60
|
+
\ ] 651.6 kB/5.744 MB 5s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":717168,\"total\":5744128,\"start\":1417457316},\"progress\":\"[======\\u003e
|
61
|
+
\ ] 717.2 kB/5.744 MB 5s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":782704,\"total\":5744128,\"start\":1417457316},\"progress\":\"[======\\u003e
|
62
|
+
\ ] 782.7 kB/5.744 MB 4s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":848240,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=======\\u003e
|
63
|
+
\ ] 848.2 kB/5.744 MB 4s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":913776,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=======\\u003e
|
64
|
+
\ ] 913.8 kB/5.744 MB 4s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":979312,\"total\":5744128,\"start\":1417457316},\"progress\":\"[========\\u003e
|
65
|
+
\ ] 979.3 kB/5.744 MB 3s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1044848,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=========\\u003e
|
66
|
+
\ ] 1.045 MB/5.744 MB 3s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1110384,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=========\\u003e
|
67
|
+
\ ] 1.11 MB/5.744 MB 3s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1175920,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==========\\u003e
|
68
|
+
\ ] 1.176 MB/5.744 MB 3s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1241456,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==========\\u003e
|
69
|
+
\ ] 1.241 MB/5.744 MB 3s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1306992,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===========\\u003e
|
70
|
+
\ ] 1.307 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1372528,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===========\\u003e
|
71
|
+
\ ] 1.373 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1438064,\"total\":5744128,\"start\":1417457316},\"progress\":\"[============\\u003e
|
72
|
+
\ ] 1.438 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1503600,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=============\\u003e
|
73
|
+
\ ] 1.504 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1569136,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=============\\u003e
|
74
|
+
\ ] 1.569 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1634672,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==============\\u003e
|
75
|
+
\ ] 1.635 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1700208,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==============\\u003e
|
76
|
+
\ ] 1.7 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1765744,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===============\\u003e
|
77
|
+
\ ] 1.766 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1831280,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===============\\u003e
|
78
|
+
\ ] 1.831 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1896816,\"total\":5744128,\"start\":1417457316},\"progress\":\"[================\\u003e
|
79
|
+
\ ] 1.897 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1962352,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=================\\u003e
|
80
|
+
\ ] 1.962 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2027888,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=================\\u003e
|
81
|
+
\ ] 2.028 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2093424,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==================\\u003e
|
82
|
+
\ ] 2.093 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2158960,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==================\\u003e
|
83
|
+
\ ] 2.159 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2224496,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===================\\u003e
|
84
|
+
\ ] 2.224 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2290032,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===================\\u003e
|
85
|
+
\ ] 2.29 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2355568,\"total\":5744128,\"start\":1417457316},\"progress\":\"[====================\\u003e
|
86
|
+
\ ] 2.356 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2421104,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=====================\\u003e
|
87
|
+
\ ] 2.421 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2486640,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=====================\\u003e
|
88
|
+
\ ] 2.487 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2552176,\"total\":5744128,\"start\":1417457316},\"progress\":\"[======================\\u003e
|
89
|
+
\ ] 2.552 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2617712,\"total\":5744128,\"start\":1417457316},\"progress\":\"[======================\\u003e
|
90
|
+
\ ] 2.618 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2683248,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=======================\\u003e
|
91
|
+
\ ] 2.683 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2748784,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=======================\\u003e
|
92
|
+
\ ] 2.749 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2814320,\"total\":5744128,\"start\":1417457316},\"progress\":\"[========================\\u003e
|
93
|
+
\ ] 2.814 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2879856,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=========================\\u003e
|
94
|
+
\ ] 2.88 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2945392,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=========================\\u003e
|
95
|
+
\ ] 2.945 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3010928,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==========================\\u003e
|
96
|
+
\ ] 3.011 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3076464,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==========================\\u003e
|
97
|
+
\ ] 3.076 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3142000,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===========================\\u003e
|
98
|
+
\ ] 3.142 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3207536,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===========================\\u003e
|
99
|
+
\ ] 3.208 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3273072,\"total\":5744128,\"start\":1417457316},\"progress\":\"[============================\\u003e
|
100
|
+
\ ] 3.273 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3338608,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=============================\\u003e
|
101
|
+
\ ] 3.339 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3404144,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=============================\\u003e
|
102
|
+
\ ] 3.404 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3469680,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==============================\\u003e
|
103
|
+
\ ] 3.47 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3535216,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==============================\\u003e
|
104
|
+
\ ] 3.535 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3600752,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===============================\\u003e
|
105
|
+
\ ] 3.601 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3666288,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===============================\\u003e
|
106
|
+
\ ] 3.666 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3731824,\"total\":5744128,\"start\":1417457316},\"progress\":\"[================================\\u003e
|
107
|
+
\ ] 3.732 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3797360,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=================================\\u003e
|
108
|
+
\ ] 3.797 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3863264,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=================================\\u003e
|
109
|
+
\ ] 3.863 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3935584,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==================================\\u003e
|
110
|
+
\ ] 3.936 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3996320,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==================================\\u003e
|
111
|
+
\ ] 3.996 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4061856,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===================================\\u003e
|
112
|
+
\ ] 4.062 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4127392,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===================================\\u003e
|
113
|
+
\ ] 4.127 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4192928,\"total\":5744128,\"start\":1417457316},\"progress\":\"[====================================\\u003e
|
114
|
+
\ ] 4.193 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4258464,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=====================================\\u003e
|
115
|
+
\ ] 4.258 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4324000,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=====================================\\u003e
|
116
|
+
\ ] 4.324 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4389536,\"total\":5744128,\"start\":1417457316},\"progress\":\"[======================================\\u003e
|
117
|
+
\ ] 4.39 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4455072,\"total\":5744128,\"start\":1417457316},\"progress\":\"[======================================\\u003e
|
118
|
+
\ ] 4.455 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4520608,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=======================================\\u003e
|
119
|
+
\ ] 4.521 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4586144,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=======================================\\u003e
|
120
|
+
\ ] 4.586 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4651680,\"total\":5744128,\"start\":1417457316},\"progress\":\"[========================================\\u003e
|
121
|
+
\ ] 4.652 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4717216,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=========================================\\u003e
|
122
|
+
\ ] 4.717 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4782752,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=========================================\\u003e
|
123
|
+
\ ] 4.783 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4848288,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==========================================\\u003e
|
124
|
+
\ ] 4.848 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4913824,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==========================================\\u003e
|
125
|
+
\ ] 4.914 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4979360,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===========================================\\u003e
|
126
|
+
\ ] 4.979 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5044896,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===========================================\\u003e
|
127
|
+
\ ] 5.045 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5110432,\"total\":5744128,\"start\":1417457316},\"progress\":\"[============================================\\u003e
|
128
|
+
\ ] 5.11 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5175968,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=============================================\\u003e
|
129
|
+
\ ] 5.176 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5241504,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=============================================\\u003e
|
130
|
+
\ ] 5.242 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5307040,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==============================================\\u003e
|
131
|
+
\ ] 5.307 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5372576,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==============================================\\u003e
|
132
|
+
\ ] 5.373 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5438112,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===============================================\\u003e
|
133
|
+
\ ] 5.438 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5503648,\"total\":5744128,\"start\":1417457316},\"progress\":\"[===============================================\\u003e
|
134
|
+
\ ] 5.504 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5569184,\"total\":5744128,\"start\":1417457316},\"progress\":\"[================================================\\u003e
|
135
|
+
\ ] 5.569 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5634720,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=================================================\\u003e
|
136
|
+
] 5.635 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5700256,\"total\":5744128,\"start\":1417457316},\"progress\":\"[=================================================\\u003e
|
137
|
+
] 5.7 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5744128,\"total\":5744128,\"start\":1417457316},\"progress\":\"[==================================================\\u003e]
|
138
|
+
5.744 MB/5.744 MB\",\"id\":\"25fb2184d4af\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5744128,\"start\":1417457317},\"progress\":\"[\\u003e
|
139
|
+
\ ] 65.54 kB/5.744 MB 36s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=\\u003e
|
140
|
+
\ ] 131.1 kB/5.744 MB 20s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=\\u003e
|
141
|
+
\ ] 196.6 kB/5.744 MB 13s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==\\u003e
|
142
|
+
\ ] 262.1 kB/5.744 MB 9s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==\\u003e
|
143
|
+
\ ] 327.7 kB/5.744 MB 7s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":393216,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===\\u003e
|
144
|
+
\ ] 393.2 kB/5.744 MB 6s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":458752,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===\\u003e
|
145
|
+
\ ] 458.8 kB/5.744 MB 5s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":524288,\"total\":5744128,\"start\":1417457317},\"progress\":\"[====\\u003e
|
146
|
+
\ ] 524.3 kB/5.744 MB 4s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":589824,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=====\\u003e
|
147
|
+
\ ] 589.8 kB/5.744 MB 4s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":655360,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=====\\u003e
|
148
|
+
\ ] 655.4 kB/5.744 MB 3s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":720896,\"total\":5744128,\"start\":1417457317},\"progress\":\"[======\\u003e
|
149
|
+
\ ] 720.9 kB/5.744 MB 3s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":5744128,\"start\":1417457317},\"progress\":\"[======\\u003e
|
150
|
+
\ ] 786.4 kB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":851968,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=======\\u003e
|
151
|
+
\ ] 852 kB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":917504,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=======\\u003e
|
152
|
+
\ ] 917.5 kB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":5744128,\"start\":1417457317},\"progress\":\"[========\\u003e
|
153
|
+
\ ] 983 kB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1048576,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=========\\u003e
|
154
|
+
\ ] 1.049 MB/5.744 MB 2s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=========\\u003e
|
155
|
+
\ ] 1.114 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1179648,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==========\\u003e
|
156
|
+
\ ] 1.18 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1245184,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==========\\u003e
|
157
|
+
\ ] 1.245 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===========\\u003e
|
158
|
+
\ ] 1.311 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1376256,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===========\\u003e
|
159
|
+
\ ] 1.376 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":5744128,\"start\":1417457317},\"progress\":\"[============\\u003e
|
160
|
+
\ ] 1.442 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1507328,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=============\\u003e
|
161
|
+
\ ] 1.507 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=============\\u003e
|
162
|
+
\ ] 1.573 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1638400,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==============\\u003e
|
163
|
+
\ ] 1.638 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1703936,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==============\\u003e
|
164
|
+
\ ] 1.704 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===============\\u003e
|
165
|
+
\ ] 1.769 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1835008,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===============\\u003e
|
166
|
+
\ ] 1.835 MB/5.744 MB 1s\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1900544,\"total\":5744128,\"start\":1417457317},\"progress\":\"[================\\u003e
|
167
|
+
\ ] 1.901 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=================\\u003e
|
168
|
+
\ ] 1.966 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2031616,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=================\\u003e
|
169
|
+
\ ] 2.032 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2097152,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==================\\u003e
|
170
|
+
\ ] 2.097 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==================\\u003e
|
171
|
+
\ ] 2.163 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===================\\u003e
|
172
|
+
\ ] 2.228 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2293760,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===================\\u003e
|
173
|
+
\ ] 2.294 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":5744128,\"start\":1417457317},\"progress\":\"[====================\\u003e
|
174
|
+
\ ] 2.359 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2424832,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=====================\\u003e
|
175
|
+
\ ] 2.425 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2490368,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=====================\\u003e
|
176
|
+
\ ] 2.49 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2555904,\"total\":5744128,\"start\":1417457317},\"progress\":\"[======================\\u003e
|
177
|
+
\ ] 2.556 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":5744128,\"start\":1417457317},\"progress\":\"[======================\\u003e
|
178
|
+
\ ] 2.621 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2686976,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=======================\\u003e
|
179
|
+
\ ] 2.687 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2752512,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=======================\\u003e
|
180
|
+
\ ] 2.753 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2818048,\"total\":5744128,\"start\":1417457317},\"progress\":\"[========================\\u003e
|
181
|
+
\ ] 2.818 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2883584,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=========================\\u003e
|
182
|
+
\ ] 2.884 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2949120,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=========================\\u003e
|
183
|
+
\ ] 2.949 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3014656,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==========================\\u003e
|
184
|
+
\ ] 3.015 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3080192,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==========================\\u003e
|
185
|
+
\ ] 3.08 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3145728,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===========================\\u003e
|
186
|
+
\ ] 3.146 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3211264,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===========================\\u003e
|
187
|
+
\ ] 3.211 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3276800,\"total\":5744128,\"start\":1417457317},\"progress\":\"[============================\\u003e
|
188
|
+
\ ] 3.277 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=============================\\u003e
|
189
|
+
\ ] 3.342 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3407872,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=============================\\u003e
|
190
|
+
\ ] 3.408 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==============================\\u003e
|
191
|
+
\ ] 3.473 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3538944,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==============================\\u003e
|
192
|
+
\ ] 3.539 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3604480,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===============================\\u003e
|
193
|
+
\ ] 3.604 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3670016,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===============================\\u003e
|
194
|
+
\ ] 3.67 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":5744128,\"start\":1417457317},\"progress\":\"[================================\\u003e
|
195
|
+
\ ] 3.736 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3801088,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=================================\\u003e
|
196
|
+
\ ] 3.801 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3866624,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=================================\\u003e
|
197
|
+
\ ] 3.867 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3932160,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==================================\\u003e
|
198
|
+
\ ] 3.932 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3997696,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==================================\\u003e
|
199
|
+
\ ] 3.998 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4063232,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===================================\\u003e
|
200
|
+
\ ] 4.063 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4128768,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===================================\\u003e
|
201
|
+
\ ] 4.129 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4194304,\"total\":5744128,\"start\":1417457317},\"progress\":\"[====================================\\u003e
|
202
|
+
\ ] 4.194 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4259840,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=====================================\\u003e
|
203
|
+
\ ] 4.26 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4325376,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=====================================\\u003e
|
204
|
+
\ ] 4.325 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4390912,\"total\":5744128,\"start\":1417457317},\"progress\":\"[======================================\\u003e
|
205
|
+
\ ] 4.391 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":5744128,\"start\":1417457317},\"progress\":\"[======================================\\u003e
|
206
|
+
\ ] 4.456 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4521984,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=======================================\\u003e
|
207
|
+
\ ] 4.522 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4587520,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=======================================\\u003e
|
208
|
+
\ ] 4.588 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4653056,\"total\":5744128,\"start\":1417457317},\"progress\":\"[========================================\\u003e
|
209
|
+
\ ] 4.653 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4718592,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=========================================\\u003e
|
210
|
+
\ ] 4.719 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4784128,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=========================================\\u003e
|
211
|
+
\ ] 4.784 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4849664,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==========================================\\u003e
|
212
|
+
\ ] 4.85 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4915200,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==========================================\\u003e
|
213
|
+
\ ] 4.915 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4980736,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===========================================\\u003e
|
214
|
+
\ ] 4.981 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5046272,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===========================================\\u003e
|
215
|
+
\ ] 5.046 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5111808,\"total\":5744128,\"start\":1417457317},\"progress\":\"[============================================\\u003e
|
216
|
+
\ ] 5.112 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5177344,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=============================================\\u003e
|
217
|
+
\ ] 5.177 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5242880,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=============================================\\u003e
|
218
|
+
\ ] 5.243 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5308416,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==============================================\\u003e
|
219
|
+
\ ] 5.308 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5373952,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==============================================\\u003e
|
220
|
+
\ ] 5.374 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5439488,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===============================================\\u003e
|
221
|
+
\ ] 5.439 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5505024,\"total\":5744128,\"start\":1417457317},\"progress\":\"[===============================================\\u003e
|
222
|
+
\ ] 5.505 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":5744128,\"start\":1417457317},\"progress\":\"[================================================\\u003e
|
223
|
+
\ ] 5.571 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5636096,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=================================================\\u003e
|
224
|
+
] 5.636 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5701632,\"total\":5744128,\"start\":1417457317},\"progress\":\"[=================================================\\u003e
|
225
|
+
] 5.702 MB/5.744 MB 0\",\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5744128,\"total\":5744128,\"start\":1417457317},\"progress\":\"[==================================================\\u003e]
|
226
|
+
5.744 MB/5.744 MB\",\"id\":\"25fb2184d4af\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"25fb2184d4af\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1417457317},\"progress\":\"[==================================================\\u003e]
|
227
|
+
3.072 kB/3.072 kB\",\"id\":\"d940f6fef591\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1417457317},\"progress\":\"[==================================================\\u003e]
|
228
|
+
3.072 kB/3.072 kB\",\"id\":\"d940f6fef591\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"d940f6fef591\"}{\"status\":\"Status:
|
229
|
+
Downloaded newer image for busybox\"}\r\n"
|
230
|
+
http_version:
|
231
|
+
recorded_at: Mon, 01 Dec 2014 18:08:37 GMT
|
232
|
+
- request:
|
233
|
+
method: delete
|
234
|
+
uri: "<DOCKER_HOST>/v1.15/images/d940f6fef591?force=true"
|
235
|
+
body:
|
236
|
+
encoding: US-ASCII
|
237
|
+
string: ''
|
238
|
+
headers:
|
239
|
+
User-Agent:
|
240
|
+
- Swipely/Docker-API 1.15.0
|
241
|
+
Content-Type:
|
242
|
+
- text/plain
|
243
|
+
response:
|
244
|
+
status:
|
245
|
+
code: 200
|
246
|
+
message:
|
247
|
+
headers:
|
248
|
+
Content-Type:
|
249
|
+
- application/json
|
250
|
+
Date:
|
251
|
+
- Mon, 01 Dec 2014 18:08:37 GMT
|
252
|
+
Content-Length:
|
253
|
+
- '198'
|
254
|
+
body:
|
255
|
+
encoding: UTF-8
|
256
|
+
string: |-
|
257
|
+
[{"Untagged":"busybox:ubuntu-14.04"}
|
258
|
+
,{"Deleted":"d940f6fef5912748063c2de1b8b4c39d7276ae15f4b7bd22018b6e5d7ea8a711"}
|
259
|
+
,{"Deleted":"25fb2184d4afbb495e9ae02a677831345b0803ba92e4d88a5f50aab60a85d27e"}
|
260
|
+
]
|
261
|
+
http_version:
|
262
|
+
recorded_at: Mon, 01 Dec 2014 18:08:37 GMT
|
263
|
+
- request:
|
264
|
+
method: get
|
265
|
+
uri: "<DOCKER_HOST>/v1.15/images/json"
|
266
|
+
body:
|
267
|
+
encoding: US-ASCII
|
268
|
+
string: ''
|
269
|
+
headers:
|
270
|
+
User-Agent:
|
271
|
+
- Swipely/Docker-API 1.15.0
|
272
|
+
Content-Type:
|
273
|
+
- text/plain
|
274
|
+
response:
|
275
|
+
status:
|
276
|
+
code: 200
|
277
|
+
message:
|
278
|
+
headers:
|
279
|
+
Content-Type:
|
280
|
+
- application/json
|
281
|
+
Date:
|
282
|
+
- Mon, 01 Dec 2014 18:08:37 GMT
|
283
|
+
body:
|
284
|
+
encoding: UTF-8
|
285
|
+
string: |-
|
286
|
+
[{"Created":1416799251,"Id":"08e20b3475072326a5f6855b4bca4fe53680d025f379eb54c5076de119cae17b","ParentId":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","RepoTags":["tianon/true:latest"],"Size":0,"VirtualSize":125}
|
287
|
+
,{"Created":1415864019,"Id":"74f5b38a45c97043cdf0082b8e8dd002497ab6b03388cdb2f20bafb7468ad55b","ParentId":"31ae66be94f160a92e1e757ab9a66aa7183af55183080576fb93a52cbce9e0cd","RepoTags":["registry:0.9.0"],"Size":0,"VirtualSize":411649756}
|
288
|
+
,{"Created":1415863849,"Id":"d9925ba888d4dba2d9b22273d261155fe3b2a4e6cfa5db44e4abe5ac8e311efa","ParentId":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","RepoTags":["registry:0.8.1"],"Size":0,"VirtualSize":430388853}
|
289
|
+
,{"Created":1415863681,"Id":"7e2db37c6564bf030e6c5af9725bf9f9a8196846e3a77a51e201fc97871e2e60","ParentId":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","RepoTags":["registry:latest"],"Size":0,"VirtualSize":411649320}
|
290
|
+
,{"Created":1415306638,"Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","ParentId":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85100505}
|
291
|
+
,{"Created":1414177799,"Id":"c723c9b95ac05c29c3e96b0b02e8fcf12096d850306b776a17877ee061daf49f","ParentId":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","RepoTags":["registry:0.7.3"],"Size":0,"VirtualSize":426413472}
|
292
|
+
,{"Created":1414174623,"Id":"bee70978874ce288a546770e762196041c90d5b0c0ef7e0c3d2e551d79417701","ParentId":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","RepoTags":["registry:0.6.9"],"Size":0,"VirtualSize":462038905}
|
293
|
+
,{"Created":1412196370,"Id":"d415c60e5ea32875e4ddc7f7578bfaac3d59fb16e1334e705398b10ee91af801","ParentId":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
|
294
|
+
,{"Created":1412196368,"Id":"e72ac664f4f0c6a061ac4ef332557a70d69b0c624b6add35f1c181ff7fff2287","ParentId":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
|
295
|
+
,{"Created":1412196367,"Id":"4b2909447dbef01f71ca476725c2dbb3af12de41aa2d7491d62c66678ede2294","ParentId":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
|
296
|
+
,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
|
297
|
+
]
|
298
|
+
http_version:
|
299
|
+
recorded_at: Mon, 01 Dec 2014 18:08:37 GMT
|
300
|
+
recorded_with: VCR 2.9.3
|