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.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +26 -1
  3. data/Rakefile +37 -0
  4. data/TESTING.md +61 -0
  5. data/lib/docker.rb +8 -1
  6. data/lib/docker/container.rb +44 -80
  7. data/lib/docker/exec.rb +98 -0
  8. data/lib/docker/image.rb +4 -3
  9. data/lib/docker/util.rb +79 -0
  10. data/lib/docker/version.rb +2 -2
  11. data/spec/docker/container_spec.rb +192 -56
  12. data/spec/docker/event_spec.rb +4 -4
  13. data/spec/docker/exec_spec.rb +197 -0
  14. data/spec/docker/image_spec.rb +131 -102
  15. data/spec/docker_spec.rb +37 -27
  16. data/spec/fixtures/build_from_dir/Dockerfile +2 -2
  17. data/spec/fixtures/export.tar +0 -0
  18. data/spec/fixtures/top/Dockerfile +2 -2
  19. data/spec/spec_helper.rb +10 -0
  20. data/spec/support/vcr.rb +5 -0
  21. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -8
  22. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -9
  23. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -9
  24. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -9
  25. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +46 -139
  26. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +62 -20
  27. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +62 -20
  28. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +71 -28
  29. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +69 -23
  30. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +134 -0
  31. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +73 -290
  32. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +51 -211
  33. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +36 -17
  34. 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
  35. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -23
  36. data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +151 -0
  37. data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +153 -0
  38. data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +153 -0
  39. data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +100 -0
  40. data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +152 -0
  41. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +263 -28
  42. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +36 -17
  43. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +36 -17
  44. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +55 -53
  45. data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +74 -96
  46. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
  47. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +34 -15
  48. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +98 -45
  49. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +88 -56
  50. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +39 -22
  51. 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
  52. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +45 -30
  53. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +54 -83
  54. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
  55. data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +46 -30
  56. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +103 -40
  57. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +81 -57
  58. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +39 -22
  59. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +39 -22
  60. data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +128 -0
  61. data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +155 -0
  62. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +152 -0
  63. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +152 -0
  64. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +151 -0
  65. data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +151 -0
  66. data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +151 -0
  67. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +86 -200
  68. 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
  69. 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
  70. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +10 -14
  71. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +12 -14
  72. 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
  73. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +118 -14
  74. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +109 -37
  75. 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
  76. 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
  77. data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +12 -19
  78. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -9
  79. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +17 -198
  80. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +26 -30
  81. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +246 -22
  82. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +35 -10
  83. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +1249 -74
  84. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +84 -94
  85. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +70 -92
  86. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +125 -98
  87. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +13 -60
  88. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +190 -135
  89. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +15 -198
  90. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +169 -264
  91. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +175 -4543
  92. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +90 -206
  93. data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +300 -0
  94. 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
  95. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +77 -207
  96. 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
  97. 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
  98. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +151 -73
  99. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +42 -196
  100. metadata +67 -41
  101. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +0 -58
  102. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/returns_the_error_message.yml +0 -163
  103. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +0 -58
  104. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +0 -41
  105. 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: unix:///var/run/docker.sock/v1.12/images/create?fromImage=base
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.13.6
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
- - Wed, 29 Oct 2014 21:58:24 GMT
22
+ - Mon, 01 Dec 2014 18:08:46 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
- string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
26
- (latest) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
27
- image (latest) from base, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
28
- dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
29
- metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
30
- fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":539837,\"total\":94863360,\"start\":1414619906},\"progress\":\"[\\u003e
31
- \ ] 539.8 kB/94.86 MB 2m21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1080509,\"total\":94863360,\"start\":1414619906},\"progress\":\"[\\u003e
32
- \ ] 1.081 MB/94.86 MB 1m18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1621181,\"total\":94863360,\"start\":1414619906},\"progress\":\"[\\u003e
33
- \ ] 1.621 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2161853,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=\\u003e
34
- \ ] 2.162 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2702525,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=\\u003e
35
- \ ] 2.703 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3243197,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=\\u003e
36
- \ ] 3.243 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3783869,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=\\u003e
37
- \ ] 3.784 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4324541,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==\\u003e
38
- \ ] 4.325 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4865213,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==\\u003e
39
- \ ] 4.865 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5405885,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==\\u003e
40
- \ ] 5.406 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5946557,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===\\u003e
41
- \ ] 5.947 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6487229,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===\\u003e
42
- \ ] 6.487 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7027901,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===\\u003e
43
- \ ] 7.028 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7568573,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===\\u003e
44
- \ ] 7.569 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8109245,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====\\u003e
45
- \ ] 8.109 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8649917,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====\\u003e
46
- \ ] 8.65 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9190589,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====\\u003e
47
- \ ] 9.191 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9731261,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====\\u003e
48
- \ ] 9.731 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10271933,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====\\u003e
49
- \ ] 10.27 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10811453,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====\\u003e
50
- \ ] 10.81 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11336893,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====\\u003e
51
- \ ] 11.34 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11877565,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======\\u003e
52
- \ ] 11.88 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12418237,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======\\u003e
53
- \ ] 12.42 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12958909,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======\\u003e
54
- \ ] 12.96 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13499581,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======\\u003e
55
- \ ] 13.5 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14040253,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======\\u003e
56
- \ ] 14.04 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14580925,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======\\u003e
57
- \ ] 14.58 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15121597,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======\\u003e
58
- \ ] 15.12 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15662269,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========\\u003e
59
- \ ] 15.66 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16202941,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========\\u003e
60
- \ ] 16.2 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16743613,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========\\u003e
61
- \ ] 16.74 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17284285,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========\\u003e
62
- \ ] 17.28 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17824957,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========\\u003e
63
- \ ] 17.82 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18365629,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========\\u003e
64
- \ ] 18.37 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18906301,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========\\u003e
65
- \ ] 18.91 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19446973,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========\\u003e
66
- \ ] 19.45 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19987645,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========\\u003e
67
- \ ] 19.99 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20528317,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========\\u003e
68
- \ ] 20.53 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21068989,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========\\u003e
69
- \ ] 21.07 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21609661,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========\\u003e
70
- \ ] 21.61 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22150333,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========\\u003e
71
- \ ] 22.15 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22691005,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========\\u003e
72
- \ ] 22.69 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23231677,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============\\u003e
73
- \ ] 23.23 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23772349,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============\\u003e
74
- \ ] 23.77 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24313021,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============\\u003e
75
- \ ] 24.31 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24853693,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============\\u003e
76
- \ ] 24.85 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25394365,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============\\u003e
77
- \ ] 25.39 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25935037,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============\\u003e
78
- \ ] 25.94 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26475709,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============\\u003e
79
- \ ] 26.48 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27016381,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============\\u003e
80
- \ ] 27.02 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27557053,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============\\u003e
81
- \ ] 27.56 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28097725,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============\\u003e
82
- \ ] 28.1 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28638397,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============\\u003e
83
- \ ] 28.64 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29179069,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============\\u003e
84
- \ ] 29.18 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29719741,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============\\u003e
85
- \ ] 29.72 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30260413,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============\\u003e
86
- \ ] 30.26 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30801085,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================\\u003e
87
- \ ] 30.8 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31341757,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================\\u003e
88
- \ ] 31.34 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31882429,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================\\u003e
89
- \ ] 31.88 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32421949,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================\\u003e
90
- \ ] 32.42 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32962621,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================\\u003e
91
- \ ] 32.96 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33487293,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================\\u003e
92
- \ ] 33.49 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34012349,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================\\u003e
93
- \ ] 34.01 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34553021,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==================\\u003e
94
- \ ] 34.55 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35093693,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==================\\u003e
95
- \ ] 35.09 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35634365,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==================\\u003e
96
- \ ] 35.63 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36175037,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===================\\u003e
97
- \ ] 36.18 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36715709,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===================\\u003e
98
- \ ] 36.72 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37256381,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===================\\u003e
99
- \ ] 37.26 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37797053,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===================\\u003e
100
- \ ] 37.8 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38337725,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====================\\u003e
101
- \ ] 38.34 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38878397,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====================\\u003e
102
- \ ] 38.88 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39419069,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====================\\u003e
103
- \ ] 39.42 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39959741,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====================\\u003e
104
- \ ] 39.96 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40500413,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====================\\u003e
105
- \ ] 40.5 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41041085,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====================\\u003e
106
- \ ] 41.04 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41581757,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====================\\u003e
107
- \ ] 41.58 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42122429,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======================\\u003e
108
- \ ] 42.12 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42663101,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======================\\u003e
109
- \ ] 42.66 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43203773,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======================\\u003e
110
- \ ] 43.2 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43744445,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======================\\u003e
111
- \ ] 43.74 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44285117,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======================\\u003e
112
- \ ] 44.29 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44825789,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======================\\u003e
113
- \ ] 44.83 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45366461,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======================\\u003e
114
- \ ] 45.37 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45907133,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========================\\u003e
115
- \ ] 45.91 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46447805,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========================\\u003e
116
- \ ] 46.45 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46988477,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========================\\u003e
117
- \ ] 46.99 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47529149,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========================\\u003e
118
- \ ] 47.53 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48069821,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========================\\u003e
119
- \ ] 48.07 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48610493,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========================\\u003e
120
- \ ] 48.61 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49151165,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========================\\u003e
121
- \ ] 49.15 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49691837,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========================\\u003e
122
- \ ] 49.69 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50232509,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========================\\u003e
123
- \ ] 50.23 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50773181,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========================\\u003e
124
- \ ] 50.77 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51313853,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========================\\u003e
125
- \ ] 51.31 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51854525,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========================\\u003e
126
- \ ] 51.85 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52395197,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========================\\u003e
127
- \ ] 52.4 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52935869,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========================\\u003e
128
- \ ] 52.94 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53476541,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============================\\u003e
129
- \ ] 53.48 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54017213,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============================\\u003e
130
- \ ] 54.02 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54557885,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============================\\u003e
131
- \ ] 54.56 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55098557,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============================\\u003e
132
- \ ] 55.1 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55639229,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============================\\u003e
133
- \ ] 55.64 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56179901,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============================\\u003e
134
- \ ] 56.18 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56720573,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============================\\u003e
135
- \ ] 56.72 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57261245,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============================\\u003e
136
- \ ] 57.26 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57801917,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============================\\u003e
137
- \ ] 57.8 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58342589,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============================\\u003e
138
- \ ] 58.34 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58883261,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============================\\u003e
139
- \ ] 58.88 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59423933,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============================\\u003e
140
- \ ] 59.42 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59964605,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============================\\u003e
141
- \ ] 59.96 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60505277,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============================\\u003e
142
- \ ] 60.51 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61045949,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================================\\u003e
143
- \ ] 61.05 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61586621,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================================\\u003e
144
- \ ] 61.59 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62127293,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================================\\u003e
145
- \ ] 62.13 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62667965,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================================\\u003e
146
- \ ] 62.67 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63208637,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================================\\u003e
147
- \ ] 63.21 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63749309,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================================\\u003e
148
- \ ] 63.75 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64289981,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================================\\u003e
149
- \ ] 64.29 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64830653,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==================================\\u003e
150
- \ ] 64.83 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65371325,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==================================\\u003e
151
- \ ] 65.37 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65911997,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==================================\\u003e
152
- \ ] 65.91 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66452669,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===================================\\u003e
153
- \ ] 66.45 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66993341,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===================================\\u003e
154
- \ ] 66.99 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67534013,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===================================\\u003e
155
- \ ] 67.53 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68074685,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===================================\\u003e
156
- \ ] 68.07 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68615357,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====================================\\u003e
157
- \ ] 68.62 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69156029,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====================================\\u003e
158
- \ ] 69.16 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69696701,\"total\":94863360,\"start\":1414619906},\"progress\":\"[====================================\\u003e
159
- \ ] 69.7 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70237373,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====================================\\u003e
160
- \ ] 70.24 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70778045,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====================================\\u003e
161
- \ ] 70.78 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71318717,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====================================\\u003e
162
- \ ] 71.32 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71859389,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=====================================\\u003e
163
- \ ] 71.86 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72400061,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======================================\\u003e
164
- \ ] 72.4 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72940733,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======================================\\u003e
165
- \ ] 72.94 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73481405,\"total\":94863360,\"start\":1414619906},\"progress\":\"[======================================\\u003e
166
- \ ] 73.48 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74022077,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======================================\\u003e
167
- \ ] 74.02 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74562749,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======================================\\u003e
168
- \ ] 74.56 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75103421,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======================================\\u003e
169
- \ ] 75.1 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75644093,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=======================================\\u003e
170
- \ ] 75.64 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76184765,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========================================\\u003e
171
- \ ] 76.18 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76725437,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========================================\\u003e
172
- \ ] 76.73 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77266109,\"total\":94863360,\"start\":1414619906},\"progress\":\"[========================================\\u003e
173
- \ ] 77.27 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77806781,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========================================\\u003e
174
- \ ] 77.81 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78347453,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========================================\\u003e
175
- \ ] 78.35 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78888125,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========================================\\u003e
176
- \ ] 78.89 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79428797,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=========================================\\u003e
177
- \ ] 79.43 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79969469,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========================================\\u003e
178
- \ ] 79.97 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80510141,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========================================\\u003e
179
- \ ] 80.51 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81050813,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==========================================\\u003e
180
- \ ] 81.05 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81591485,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========================================\\u003e
181
- \ ] 81.59 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82132157,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========================================\\u003e
182
- \ ] 82.13 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82672829,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========================================\\u003e
183
- \ ] 82.67 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83213501,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===========================================\\u003e
184
- \ ] 83.21 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83754173,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============================================\\u003e
185
- \ ] 83.75 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84294845,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============================================\\u003e
186
- \ ] 84.29 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84835517,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============================================\\u003e
187
- \ ] 84.84 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85376189,\"total\":94863360,\"start\":1414619906},\"progress\":\"[============================================\\u003e
188
- \ ] 85.38 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85916861,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============================================\\u003e
189
- \ ] 85.92 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86457533,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============================================\\u003e
190
- \ ] 86.46 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86998205,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=============================================\\u003e
191
- \ ] 87 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87538877,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============================================\\u003e
192
- \ ] 87.54 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88079549,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============================================\\u003e
193
- \ ] 88.08 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88620221,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============================================\\u003e
194
- \ ] 88.62 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89160893,\"total\":94863360,\"start\":1414619906},\"progress\":\"[==============================================\\u003e
195
- \ ] 89.16 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89701565,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============================================\\u003e
196
- \ ] 89.7 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90242237,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============================================\\u003e
197
- \ ] 90.24 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90782909,\"total\":94863360,\"start\":1414619906},\"progress\":\"[===============================================\\u003e
198
- \ ] 90.78 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91323581,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================================================\\u003e
199
- \ ] 91.32 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91864253,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================================================\\u003e
200
- \ ] 91.86 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92404925,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================================================\\u003e
201
- \ ] 92.4 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92945597,\"total\":94863360,\"start\":1414619906},\"progress\":\"[================================================\\u003e
202
- \ ] 92.95 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93486269,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================================================\\u003e
203
- ] 93.49 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94026941,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================================================\\u003e
204
- ] 94.03 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94567613,\"total\":94863360,\"start\":1414619906},\"progress\":\"[=================================================\\u003e
205
- ] 94.57 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414619906},\"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\":1414619931},\"progress\":\"[=================\\u003e
209
- \ ] 3.646 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
210
- complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
211
- complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Status:
212
- Downloaded newer image for base\"}\r\n"
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: Wed, 29 Oct 2014 21:58:51 GMT
31
+ recorded_at: Mon, 01 Dec 2014 18:08:46 GMT
215
32
  - request:
216
33
  method: get
217
- uri: unix:///var/run/docker.sock/v1.12/images/b750fe79269d/json
34
+ uri: "<DOCKER_HOST>/v1.15/images/f6fab3b798be/json"
218
35
  body:
219
36
  encoding: US-ASCII
220
37
  string: ''
221
38
  headers:
222
39
  User-Agent:
223
- - Swipely/Docker-API 1.13.6
40
+ - Swipely/Docker-API 1.15.0
224
41
  Content-Type:
225
42
  - text/plain
226
43
  response:
@@ -231,13 +48,13 @@ http_interactions:
231
48
  Content-Type:
232
49
  - application/json
233
50
  Date:
234
- - Wed, 29 Oct 2014 21:58:51 GMT
51
+ - Mon, 01 Dec 2014 18:08:46 GMT
235
52
  Content-Length:
236
- - '754'
53
+ - '1460'
237
54
  body:
238
55
  encoding: UTF-8
239
56
  string: |
240
- {"Architecture":"","Author":"","Comment":"","Config":null,"Container":"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":null,"ExposedPorts":null,"Hostname":"","Image":"base","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":true,"PortSpecs":null,"SecurityOpt":null,"StdinOnce":false,"Tty":true,"User":"","Volumes":null,"WorkingDir":""},"Created":"2013-03-23T22:24:18.818426-07:00","DockerVersion":"","Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","Os":"","Parent":"27cf784147099545","Size":77,"VirtualSize":175307035}
57
+ {"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}
241
58
  http_version:
242
- recorded_at: Wed, 29 Oct 2014 21:58:51 GMT
59
+ recorded_at: Mon, 01 Dec 2014 18:08:46 GMT
243
60
  recorded_with: VCR 2.9.3
@@ -2,15 +2,61 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.12/images/create?fromImage=base
5
+ uri: "<DOCKER_HOST>/v1.15/build?t=<USERNAME>%2Ftrue"
6
6
  body:
7
- encoding: US-ASCII
8
- string: ''
7
+ encoding: UTF-8
8
+ string: !binary |-
9
+ RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
10
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
11
+ AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDIx
12
+ ADEyNDM3MTI3MjU0ADAxMzMwNAAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
13
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
14
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
15
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
16
+ AAAAAAAAAAAAAAAAAAAwMDAwMDAwADAwMDAwMDAAAAAAAAAAAAAAAAAAAAAA
17
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
18
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
19
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
20
+ AAAAAAAAAAAAAAAAAAAAAABGUk9NIHRpYW5vbi90cnVlCgAAAAAAAAAAAAAA
21
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
22
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
23
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
24
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
25
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
26
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
27
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
28
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
29
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
30
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
31
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
32
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
33
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
34
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
35
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
36
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
37
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
38
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
39
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
40
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
41
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
42
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
43
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
44
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
45
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
46
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
47
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
48
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
49
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
50
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
51
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
52
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
53
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
54
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
9
55
  headers:
10
56
  User-Agent:
11
- - Swipely/Docker-API 1.13.6
57
+ - Swipely/Docker-API 1.15.0
12
58
  Content-Type:
13
- - text/plain
59
+ - application/json
14
60
  response:
15
61
  status:
16
62
  code: 200
@@ -19,289 +65,151 @@ http_interactions:
19
65
  Content-Type:
20
66
  - application/json
21
67
  Date:
22
- - Wed, 29 Oct 2014 21:03:16 GMT
68
+ - Mon, 01 Dec 2014 18:08:44 GMT
23
69
  body:
24
70
  encoding: UTF-8
25
- string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
26
- (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
27
- image (ubuntu-quantl) from base, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
28
- dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
29
- metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
30
- fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":526475,\"total\":94863360,\"start\":1414616597},\"progress\":\"[\\u003e
31
- \ ] 526.5 kB/94.86 MB 2m22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1067147,\"total\":94863360,\"start\":1414616597},\"progress\":\"[\\u003e
32
- \ ] 1.067 MB/94.86 MB 1m46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1607819,\"total\":94863360,\"start\":1414616597},\"progress\":\"[\\u003e
33
- \ ] 1.608 MB/94.86 MB 1m30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2148491,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=\\u003e
34
- \ ] 2.148 MB/94.86 MB 1m18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2689163,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=\\u003e
35
- \ ] 2.689 MB/94.86 MB 1m10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3229835,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=\\u003e
36
- \ ] 3.23 MB/94.86 MB 1m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3770507,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=\\u003e
37
- \ ] 3.771 MB/94.86 MB 59s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4311179,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==\\u003e
38
- \ ] 4.311 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4851851,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==\\u003e
39
- \ ] 4.852 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5392523,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==\\u003e
40
- \ ] 5.393 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5933195,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===\\u003e
41
- \ ] 5.933 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6473867,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===\\u003e
42
- \ ] 6.474 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7014539,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===\\u003e
43
- \ ] 7.015 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7555211,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===\\u003e
44
- \ ] 7.555 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8095883,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====\\u003e
45
- \ ] 8.096 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8636555,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====\\u003e
46
- \ ] 8.637 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9177227,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====\\u003e
47
- \ ] 9.177 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9717899,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====\\u003e
48
- \ ] 9.718 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10258571,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====\\u003e
49
- \ ] 10.26 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10799243,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====\\u003e
50
- \ ] 10.8 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11339915,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====\\u003e
51
- \ ] 11.34 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11880587,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======\\u003e
52
- \ ] 11.88 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12421259,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======\\u003e
53
- \ ] 12.42 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12961931,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======\\u003e
54
- \ ] 12.96 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13502603,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======\\u003e
55
- \ ] 13.5 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14043275,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======\\u003e
56
- \ ] 14.04 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14583947,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======\\u003e
57
- \ ] 14.58 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15124619,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======\\u003e
58
- \ ] 15.12 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15665291,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========\\u003e
59
- \ ] 15.67 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16205963,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========\\u003e
60
- \ ] 16.21 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16746635,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========\\u003e
61
- \ ] 16.75 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17287307,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========\\u003e
62
- \ ] 17.29 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17827979,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========\\u003e
63
- \ ] 17.83 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18368651,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========\\u003e
64
- \ ] 18.37 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18909323,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========\\u003e
65
- \ ] 18.91 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19449995,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========\\u003e
66
- \ ] 19.45 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19990667,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========\\u003e
67
- \ ] 19.99 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20531339,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========\\u003e
68
- \ ] 20.53 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21072011,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========\\u003e
69
- \ ] 21.07 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21612683,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========\\u003e
70
- \ ] 21.61 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22153355,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========\\u003e
71
- \ ] 22.15 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22694027,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========\\u003e
72
- \ ] 22.69 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23234699,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============\\u003e
73
- \ ] 23.23 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23775371,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============\\u003e
74
- \ ] 23.78 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24316043,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============\\u003e
75
- \ ] 24.32 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24856715,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============\\u003e
76
- \ ] 24.86 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25397387,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============\\u003e
77
- \ ] 25.4 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25938059,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============\\u003e
78
- \ ] 25.94 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26478731,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============\\u003e
79
- \ ] 26.48 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27019403,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============\\u003e
80
- \ ] 27.02 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27560075,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============\\u003e
81
- \ ] 27.56 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28100747,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============\\u003e
82
- \ ] 28.1 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28641419,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============\\u003e
83
- \ ] 28.64 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29182091,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============\\u003e
84
- \ ] 29.18 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29722763,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============\\u003e
85
- \ ] 29.72 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30263435,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============\\u003e
86
- \ ] 30.26 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30804107,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================\\u003e
87
- \ ] 30.8 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31344779,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================\\u003e
88
- \ ] 31.34 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31885451,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================\\u003e
89
- \ ] 31.89 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32426123,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================\\u003e
90
- \ ] 32.43 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32966795,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================\\u003e
91
- \ ] 32.97 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33507467,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================\\u003e
92
- \ ] 33.51 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34048139,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================\\u003e
93
- \ ] 34.05 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34588811,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==================\\u003e
94
- \ ] 34.59 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35129483,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==================\\u003e
95
- \ ] 35.13 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35670155,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==================\\u003e
96
- \ ] 35.67 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36210827,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===================\\u003e
97
- \ ] 36.21 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36751499,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===================\\u003e
98
- \ ] 36.75 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37292171,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===================\\u003e
99
- \ ] 37.29 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37832843,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===================\\u003e
100
- \ ] 37.83 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38373515,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====================\\u003e
101
- \ ] 38.37 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38914187,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====================\\u003e
102
- \ ] 38.91 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39454859,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====================\\u003e
103
- \ ] 39.45 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39995531,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====================\\u003e
104
- \ ] 40 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40536203,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====================\\u003e
105
- \ ] 40.54 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41076875,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====================\\u003e
106
- \ ] 41.08 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41617547,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====================\\u003e
107
- \ ] 41.62 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42158219,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======================\\u003e
108
- \ ] 42.16 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42698891,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======================\\u003e
109
- \ ] 42.7 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43239563,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======================\\u003e
110
- \ ] 43.24 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43780235,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======================\\u003e
111
- \ ] 43.78 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44320907,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======================\\u003e
112
- \ ] 44.32 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44861579,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======================\\u003e
113
- \ ] 44.86 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45402251,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======================\\u003e
114
- \ ] 45.4 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45942923,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========================\\u003e
115
- \ ] 45.94 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46483595,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========================\\u003e
116
- \ ] 46.48 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47024267,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========================\\u003e
117
- \ ] 47.02 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47564939,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========================\\u003e
118
- \ ] 47.56 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48105611,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========================\\u003e
119
- \ ] 48.11 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48646283,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========================\\u003e
120
- \ ] 48.65 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49186955,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========================\\u003e
121
- \ ] 49.19 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49727627,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========================\\u003e
122
- \ ] 49.73 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50268299,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========================\\u003e
123
- \ ] 50.27 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50808971,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========================\\u003e
124
- \ ] 50.81 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51349643,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========================\\u003e
125
- \ ] 51.35 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51890315,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========================\\u003e
126
- \ ] 51.89 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52430987,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========================\\u003e
127
- \ ] 52.43 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52971659,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========================\\u003e
128
- \ ] 52.97 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53512331,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============================\\u003e
129
- \ ] 53.51 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54053003,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============================\\u003e
130
- \ ] 54.05 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54593675,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============================\\u003e
131
- \ ] 54.59 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55134347,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============================\\u003e
132
- \ ] 55.13 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55675019,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============================\\u003e
133
- \ ] 55.68 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56215691,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============================\\u003e
134
- \ ] 56.22 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56756363,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============================\\u003e
135
- \ ] 56.76 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57297035,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============================\\u003e
136
- \ ] 57.3 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57837707,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============================\\u003e
137
- \ ] 57.84 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58378379,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============================\\u003e
138
- \ ] 58.38 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58919051,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============================\\u003e
139
- \ ] 58.92 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59459723,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============================\\u003e
140
- \ ] 59.46 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60000395,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============================\\u003e
141
- \ ] 60 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60541067,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============================\\u003e
142
- \ ] 60.54 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61081739,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================================\\u003e
143
- \ ] 61.08 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61622411,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================================\\u003e
144
- \ ] 61.62 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62163083,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================================\\u003e
145
- \ ] 62.16 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62703755,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================================\\u003e
146
- \ ] 62.7 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63244427,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================================\\u003e
147
- \ ] 63.24 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63785099,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================================\\u003e
148
- \ ] 63.79 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64325771,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================================\\u003e
149
- \ ] 64.33 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64866443,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==================================\\u003e
150
- \ ] 64.87 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65407115,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==================================\\u003e
151
- \ ] 65.41 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65947787,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==================================\\u003e
152
- \ ] 65.95 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66488459,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===================================\\u003e
153
- \ ] 66.49 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67029131,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===================================\\u003e
154
- \ ] 67.03 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67569803,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===================================\\u003e
155
- \ ] 67.57 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68110475,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===================================\\u003e
156
- \ ] 68.11 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68651147,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====================================\\u003e
157
- \ ] 68.65 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69191819,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====================================\\u003e
158
- \ ] 69.19 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69732491,\"total\":94863360,\"start\":1414616597},\"progress\":\"[====================================\\u003e
159
- \ ] 69.73 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70273163,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====================================\\u003e
160
- \ ] 70.27 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70813835,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====================================\\u003e
161
- \ ] 70.81 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71354507,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====================================\\u003e
162
- \ ] 71.35 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71895179,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=====================================\\u003e
163
- \ ] 71.9 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72435851,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======================================\\u003e
164
- \ ] 72.44 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72976523,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======================================\\u003e
165
- \ ] 72.98 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73517195,\"total\":94863360,\"start\":1414616597},\"progress\":\"[======================================\\u003e
166
- \ ] 73.52 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74057867,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======================================\\u003e
167
- \ ] 74.06 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74598539,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======================================\\u003e
168
- \ ] 74.6 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75139211,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======================================\\u003e
169
- \ ] 75.14 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75679883,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=======================================\\u003e
170
- \ ] 75.68 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76220555,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========================================\\u003e
171
- \ ] 76.22 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76761227,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========================================\\u003e
172
- \ ] 76.76 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77301899,\"total\":94863360,\"start\":1414616597},\"progress\":\"[========================================\\u003e
173
- \ ] 77.3 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77842571,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========================================\\u003e
174
- \ ] 77.84 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78383243,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========================================\\u003e
175
- \ ] 78.38 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78923915,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========================================\\u003e
176
- \ ] 78.92 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79464587,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=========================================\\u003e
177
- \ ] 79.46 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80005259,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========================================\\u003e
178
- \ ] 80.01 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80545931,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========================================\\u003e
179
- \ ] 80.55 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81086603,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==========================================\\u003e
180
- \ ] 81.09 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81627275,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========================================\\u003e
181
- \ ] 81.63 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82167947,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========================================\\u003e
182
- \ ] 82.17 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82708619,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========================================\\u003e
183
- \ ] 82.71 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83249291,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===========================================\\u003e
184
- \ ] 83.25 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83789963,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============================================\\u003e
185
- \ ] 83.79 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84330635,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============================================\\u003e
186
- \ ] 84.33 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84871307,\"total\":94863360,\"start\":1414616597},\"progress\":\"[============================================\\u003e
187
- \ ] 84.87 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85411979,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============================================\\u003e
188
- \ ] 85.41 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85952651,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============================================\\u003e
189
- \ ] 85.95 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86493323,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============================================\\u003e
190
- \ ] 86.49 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87033995,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=============================================\\u003e
191
- \ ] 87.03 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87574667,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============================================\\u003e
192
- \ ] 87.57 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88115339,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============================================\\u003e
193
- \ ] 88.12 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88656011,\"total\":94863360,\"start\":1414616597},\"progress\":\"[==============================================\\u003e
194
- \ ] 88.66 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89196683,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============================================\\u003e
195
- \ ] 89.2 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89737355,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============================================\\u003e
196
- \ ] 89.74 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90278027,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============================================\\u003e
197
- \ ] 90.28 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90818699,\"total\":94863360,\"start\":1414616597},\"progress\":\"[===============================================\\u003e
198
- \ ] 90.82 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91359371,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================================================\\u003e
199
- \ ] 91.36 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91900043,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================================================\\u003e
200
- \ ] 91.9 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92440715,\"total\":94863360,\"start\":1414616597},\"progress\":\"[================================================\\u003e
201
- \ ] 92.44 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92981387,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================================================\\u003e
202
- ] 92.98 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93522059,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================================================\\u003e
203
- ] 93.52 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94062731,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================================================\\u003e
204
- ] 94.06 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94603403,\"total\":94863360,\"start\":1414616597},\"progress\":\"[=================================================\\u003e
205
- ] 94.6 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414616597},\"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\":616,\"total\":10240,\"start\":1414616630},\"progress\":\"[===\\u003e
209
- \ ] 616 B/10.24 kB 12s\",\"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"
71
+ string: "{\"stream\":\"Step 0 : FROM tianon/true\\n\"}\r\n{\"stream\":\" ---\\u003e
72
+ 08e20b347507\\n\"}\r\n{\"stream\":\"Successfully built 08e20b347507\\n\"}\r\n"
213
73
  http_version:
214
- recorded_at: Wed, 29 Oct 2014 21:03:50 GMT
74
+ recorded_at: Mon, 01 Dec 2014 18:08:44 GMT
215
75
  - request:
216
- method: post
217
- uri: unix:///var/run/docker.sock/v1.12/containers/create
76
+ method: get
77
+ uri: "<DOCKER_HOST>/v1.15/images/json?all=true"
218
78
  body:
219
- encoding: UTF-8
220
- string: '{"Image":"b750fe79269d","Cmd":["true"]}'
79
+ encoding: US-ASCII
80
+ string: ''
221
81
  headers:
222
82
  User-Agent:
223
- - Swipely/Docker-API 1.13.6
83
+ - Swipely/Docker-API 1.15.0
224
84
  Content-Type:
225
- - application/json
85
+ - text/plain
226
86
  response:
227
87
  status:
228
- code: 201
88
+ code: 200
229
89
  message:
230
90
  headers:
231
91
  Content-Type:
232
92
  - application/json
233
93
  Date:
234
- - Wed, 29 Oct 2014 21:03:50 GMT
235
- Content-Length:
236
- - '90'
94
+ - Mon, 01 Dec 2014 18:08:44 GMT
237
95
  body:
238
96
  encoding: UTF-8
239
- string: |
240
- {"Id":"2d7d749fbf2946f1beee2dbbbad1b063ca27ce63674764bd68653f97b0fffb47","Warnings":null}
97
+ string: |-
98
+ [{"Created":1416799251,"Id":"08e20b3475072326a5f6855b4bca4fe53680d025f379eb54c5076de119cae17b","ParentId":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","RepoTags":["tianon/true:latest","<USERNAME>/true:latest"],"Size":0,"VirtualSize":125}
99
+ ,{"Created":1416799251,"Id":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":125,"VirtualSize":125}
100
+ ,{"Created":1415864019,"Id":"74f5b38a45c97043cdf0082b8e8dd002497ab6b03388cdb2f20bafb7468ad55b","ParentId":"31ae66be94f160a92e1e757ab9a66aa7183af55183080576fb93a52cbce9e0cd","RepoTags":["registry:0.9.0"],"Size":0,"VirtualSize":411649756}
101
+ ,{"Created":1415864018,"Id":"31ae66be94f160a92e1e757ab9a66aa7183af55183080576fb93a52cbce9e0cd","ParentId":"b3fd13d94685095ec1c1f8f0f371dde8be9a21f8f457d4d10e5ad72042a152af","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
102
+ ,{"Created":1415864017,"Id":"eae8be82bb623181222558e4df0dd59c943cdc2fd3c4e41de669e4bd35a866e6","ParentId":"8eae38b276496440046cd9f545c24533e692cbed6fd1bc4e29a7af5e4ae72a61","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
103
+ ,{"Created":1415864017,"Id":"b3fd13d94685095ec1c1f8f0f371dde8be9a21f8f457d4d10e5ad72042a152af","ParentId":"eae8be82bb623181222558e4df0dd59c943cdc2fd3c4e41de669e4bd35a866e6","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649756}
104
+ ,{"Created":1415864016,"Id":"8eae38b276496440046cd9f545c24533e692cbed6fd1bc4e29a7af5e4ae72a61","ParentId":"16b02bf8dc3d1f70e098cbd968f154468fcf41be6bf59b24a35b4fdded3edbca","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":411649756}
105
+ ,{"Created":1415864015,"Id":"16b02bf8dc3d1f70e098cbd968f154468fcf41be6bf59b24a35b4fdded3edbca","ParentId":"b22cb7ed5ccbeeaf2a67d5d3034a308c6eedf2ccb247851c9a14c05b441716fa","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23990121,"VirtualSize":411598960}
106
+ ,{"Created":1415863862,"Id":"b22cb7ed5ccbeeaf2a67d5d3034a308c6eedf2ccb247851c9a14c05b441716fa","ParentId":"8b170afd480f41a84331dcaabfa6465769205e645ba13f8baa085f1f68e4f1cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":387608839}
107
+ ,{"Created":1415863855,"Id":"8b170afd480f41a84331dcaabfa6465769205e645ba13f8baa085f1f68e4f1cf","ParentId":"8dda8bb23254979ce24f2ca4d7115f4563a9ae4f0e774b2d419318d81a5c720d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":376058282}
108
+ ,{"Created":1415863853,"Id":"8dda8bb23254979ce24f2ca4d7115f4563a9ae4f0e774b2d419318d81a5c720d","ParentId":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1880042,"VirtualSize":376058209}
109
+ ,{"Created":1415863849,"Id":"d9925ba888d4dba2d9b22273d261155fe3b2a4e6cfa5db44e4abe5ac8e311efa","ParentId":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","RepoTags":["registry:0.8.1"],"Size":0,"VirtualSize":430388853}
110
+ ,{"Created":1415863848,"Id":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","ParentId":"8b840022b4b5d60e0f66d7f72b992eb5b52e75dfdf1b8e9535d85df57236e7f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
111
+ ,{"Created":1415863847,"Id":"8b840022b4b5d60e0f66d7f72b992eb5b52e75dfdf1b8e9535d85df57236e7f5","ParentId":"11d3a913c69b0ea1c7d0df3708dfa8c789b68dc0884471cf862de1160c7eaaba","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
112
+ ,{"Created":1415863846,"Id":"11d3a913c69b0ea1c7d0df3708dfa8c789b68dc0884471cf862de1160c7eaaba","ParentId":"ae88728b911af97e928890b1c3b7b34dd25fb313f3b20cd73e532e2903d3d3b9","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
113
+ ,{"Created":1415863845,"Id":"ae88728b911af97e928890b1c3b7b34dd25fb313f3b20cd73e532e2903d3d3b9","ParentId":"16c101215b54ac2210fa62d54e0893323ae43e3d33b75119b1246a9dbbc1c7cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23901352,"VirtualSize":430388853}
114
+ ,{"Created":1415863690,"Id":"16c101215b54ac2210fa62d54e0893323ae43e3d33b75119b1246a9dbbc1c7cf","ParentId":"4c86ccffaf465d6688815f844bfadbb91a76df42043e629d208c5b75de31b891","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8442747,"VirtualSize":406487501}
115
+ ,{"Created":1415863686,"Id":"4c86ccffaf465d6688815f844bfadbb91a76df42043e629d208c5b75de31b891","ParentId":"e930198c27c4d790fd3eece5212c7ab1e6f272bfd21061c877b38696aa91ac27","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":398044754}
116
+ ,{"Created":1415863685,"Id":"e930198c27c4d790fd3eece5212c7ab1e6f272bfd21061c877b38696aa91ac27","ParentId":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1861177,"VirtualSize":398044681}
117
+ ,{"Created":1415863681,"Id":"7e2db37c6564bf030e6c5af9725bf9f9a8196846e3a77a51e201fc97871e2e60","ParentId":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","RepoTags":["registry:latest"],"Size":0,"VirtualSize":411649320}
118
+ ,{"Created":1415863680,"Id":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","ParentId":"c978e4c4261aec2dbc24c84427460afdaeaa64359ff4ed0ad6d4d00f0e0e0cd7","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
119
+ ,{"Created":1415863680,"Id":"c978e4c4261aec2dbc24c84427460afdaeaa64359ff4ed0ad6d4d00f0e0e0cd7","ParentId":"f846b2ccf2c5679f8d95014285a8e771441b5e5fc04670e0dfcb1242e985eb5e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
120
+ ,{"Created":1415863679,"Id":"7949c9f83980aab0ac80e3150c0d3f899556c68f35d8f6f9ca7c79ecb769b70e","ParentId":"e8ca0e3bcd941b41c0c3dabebdb545f8331ddbb25257e6bc2cd3b6e6233d64f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":411649320}
121
+ ,{"Created":1415863679,"Id":"f846b2ccf2c5679f8d95014285a8e771441b5e5fc04670e0dfcb1242e985eb5e","ParentId":"7949c9f83980aab0ac80e3150c0d3f899556c68f35d8f6f9ca7c79ecb769b70e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
122
+ ,{"Created":1415863677,"Id":"e8ca0e3bcd941b41c0c3dabebdb545f8331ddbb25257e6bc2cd3b6e6233d64f5","ParentId":"d242d0f728d9aaec3a24215bd3f6fc85a365f36bbb97727a84d5de7cc45792c4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23990121,"VirtualSize":411598524}
123
+ ,{"Created":1415863518,"Id":"d242d0f728d9aaec3a24215bd3f6fc85a365f36bbb97727a84d5de7cc45792c4","ParentId":"b3b586534b2a68b97cec6e3d676fe1b2a1713565929c7e9ff331aad04eaf83cb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":387608403}
124
+ ,{"Created":1415863510,"Id":"b3b586534b2a68b97cec6e3d676fe1b2a1713565929c7e9ff331aad04eaf83cb","ParentId":"1ac06968b34e2b5b7c4e16488a4059f6493018f6744a57cf6a4fd2418f7acc4f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":376057846}
125
+ ,{"Created":1415863509,"Id":"1ac06968b34e2b5b7c4e16488a4059f6493018f6744a57cf6a4fd2418f7acc4f","ParentId":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1879606,"VirtualSize":376057773}
126
+ ,{"Created":1415309161,"Id":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","ParentId":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":174920601,"VirtualSize":374178167}
127
+ ,{"Created":1415306638,"Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","ParentId":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85100505}
128
+ ,{"Created":1415306636,"Id":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":85100505,"VirtualSize":85100505}
129
+ ,{"Created":1414177799,"Id":"c723c9b95ac05c29c3e96b0b02e8fcf12096d850306b776a17877ee061daf49f","ParentId":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","RepoTags":["registry:0.7.3"],"Size":0,"VirtualSize":426413472}
130
+ ,{"Created":1414177799,"Id":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","ParentId":"00bcc0fe318f87107ed0db582ed109899506cd2cde230505ea11a5c400e9ac7a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
131
+ ,{"Created":1414177798,"Id":"00bcc0fe318f87107ed0db582ed109899506cd2cde230505ea11a5c400e9ac7a","ParentId":"96490e2b34642fabcdf6c4c157bd07be2caf4a71b9bd42c27386a1ff28d94d0c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
132
+ ,{"Created":1414177798,"Id":"96490e2b34642fabcdf6c4c157bd07be2caf4a71b9bd42c27386a1ff28d94d0c","ParentId":"1168ef7bd438745360d3506a6182ed73fec60bfea4181732dd75d6447016f012","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
133
+ ,{"Created":1414177797,"Id":"1168ef7bd438745360d3506a6182ed73fec60bfea4181732dd75d6447016f012","ParentId":"a9c8dae074b96475a0775e199f79e456f0ee9a8288164e0b84fcc65ca163432e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20135062,"VirtualSize":426413472}
134
+ ,{"Created":1414177667,"Id":"a9c8dae074b96475a0775e199f79e456f0ee9a8288164e0b84fcc65ca163432e","ParentId":"17b869d7773564fa1ca26ef3aa5b3a9e615dabd1a433a4a00848c0c9790096fe","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8437018,"VirtualSize":406278410}
135
+ ,{"Created":1414177663,"Id":"17b869d7773564fa1ca26ef3aa5b3a9e615dabd1a433a4a00848c0c9790096fe","ParentId":"4627c1e0f2389a25dce44361dba566542607509b4fec86cc7fae9f6bb93dc2eb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":397841392}
136
+ ,{"Created":1414177663,"Id":"4627c1e0f2389a25dce44361dba566542607509b4fec86cc7fae9f6bb93dc2eb","ParentId":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1657815,"VirtualSize":397841319}
137
+ ,{"Created":1414174623,"Id":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","ParentId":"74583b71c35c28e06e11e0af0193351b852f3e9466a7b2c19a3add9a8528ee57","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":462038905}
138
+ ,{"Created":1414174623,"Id":"bee70978874ce288a546770e762196041c90d5b0c0ef7e0c3d2e551d79417701","ParentId":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","RepoTags":["registry:0.6.9"],"Size":0,"VirtualSize":462038905}
139
+ ,{"Created":1414174623,"Id":"74583b71c35c28e06e11e0af0193351b852f3e9466a7b2c19a3add9a8528ee57","ParentId":"0909821a1551e63f5b169edaa3fa460134d86aa0ed5e6ed3acb4f50afa98002d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":462038905}
140
+ ,{"Created":1414174622,"Id":"0909821a1551e63f5b169edaa3fa460134d86aa0ed5e6ed3acb4f50afa98002d","ParentId":"ad702f54c76e4d5e1fb47f9efc355c871f7087ae772ca0fafeedad8185d17058","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":34915187,"VirtualSize":462038905}
141
+ ,{"Created":1414174578,"Id":"29b16b1bfd162dd7b35cb98a72ad44108361bede4e42679e01dd8aa15aa1fe0f","ParentId":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1613702,"VirtualSize":427123645}
142
+ ,{"Created":1414174578,"Id":"ad702f54c76e4d5e1fb47f9efc355c871f7087ae772ca0fafeedad8185d17058","ParentId":"29b16b1bfd162dd7b35cb98a72ad44108361bede4e42679e01dd8aa15aa1fe0f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":427123718}
143
+ ,{"Created":1414126280,"Id":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","ParentId":"9fe54074b35a3dd77eb2ffe2edf9226645e71fe292964b6d662a4010e695d9b8","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":41247201,"VirtualSize":396183504}
144
+ ,{"Created":1414126257,"Id":"9fe54074b35a3dd77eb2ffe2edf9226645e71fe292964b6d662a4010e695d9b8","ParentId":"cd72e4fcfd16a48d617cc8fe6c692400b55c3dd013a357f485a08a820f1f75ab","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":135294909,"VirtualSize":354936303}
145
+ ,{"Created":1414126216,"Id":"cd72e4fcfd16a48d617cc8fe6c692400b55c3dd013a357f485a08a820f1f75ab","ParentId":"57b5d5cb0bfe239f714f9a00439d7774f3b3359270f81ea74b41dbd7775eb46a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":219641394}
146
+ ,{"Created":1414126211,"Id":"57b5d5cb0bfe239f714f9a00439d7774f3b3359270f81ea74b41dbd7775eb46a","ParentId":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20383828,"VirtualSize":219641394}
147
+ ,{"Created":1414108439,"Id":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","ParentId":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":199257566}
148
+ ,{"Created":1414108438,"Id":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","ParentId":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6557772,"VirtualSize":199257566}
149
+ ,{"Created":1414108414,"Id":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","ParentId":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1895,"VirtualSize":192699794}
150
+ ,{"Created":1414108413,"Id":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","ParentId":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":192697899}
151
+ ,{"Created":1414108412,"Id":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","ParentId":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194791,"VirtualSize":192697899}
152
+ ,{"Created":1413872056,"Id":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192503108,"VirtualSize":192503108}
153
+ ,{"Created":1412204406,"Id":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","ParentId":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6614587,"VirtualSize":425509943}
154
+ ,{"Created":1412204399,"Id":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","ParentId":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":10478,"VirtualSize":418895356}
155
+ ,{"Created":1412204376,"Id":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","ParentId":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":234168708,"VirtualSize":418884878}
156
+ ,{"Created":1412196370,"Id":"d415c60e5ea32875e4ddc7f7578bfaac3d59fb16e1334e705398b10ee91af801","ParentId":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
157
+ ,{"Created":1412196370,"Id":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":5454693,"VirtualSize":5454693}
158
+ ,{"Created":1412196368,"Id":"e72ac664f4f0c6a061ac4ef332557a70d69b0c624b6add35f1c181ff7fff2287","ParentId":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
159
+ ,{"Created":1412196368,"Id":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2433303,"VirtualSize":2433303}
160
+ ,{"Created":1412196367,"Id":"4b2909447dbef01f71ca476725c2dbb3af12de41aa2d7491d62c66678ede2294","ParentId":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
161
+ ,{"Created":1412196367,"Id":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
162
+ ,{"Created":1412196367,"Id":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2489301,"VirtualSize":2489301}
163
+ ,{"Created":1403128415,"Id":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","ParentId":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":4411741,"VirtualSize":184716170}
164
+ ,{"Created":1403128408,"Id":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","ParentId":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":74007417,"VirtualSize":180304429}
165
+ ,{"Created":1403128396,"Id":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","ParentId":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1887,"VirtualSize":106297012}
166
+ ,{"Created":1403128396,"Id":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","ParentId":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":189999,"VirtualSize":106295125}
167
+ ,{"Created":1403128393,"Id":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":106105126,"VirtualSize":106105126}
168
+ ,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
169
+ ]
241
170
  http_version:
242
- recorded_at: Wed, 29 Oct 2014 21:03:50 GMT
171
+ recorded_at: Mon, 01 Dec 2014 18:08:44 GMT
243
172
  - request:
244
- method: post
245
- uri: unix:///var/run/docker.sock/v1.12/containers/2d7d749fbf2946f1beee2dbbbad1b063ca27ce63674764bd68653f97b0fffb47/start
246
- body:
247
- encoding: UTF-8
248
- string: "{}"
249
- headers:
250
- User-Agent:
251
- - Swipely/Docker-API 1.13.6
252
- Content-Type:
253
- - application/json
254
- response:
255
- status:
256
- code: 204
257
- message:
258
- headers:
259
- Date:
260
- - Wed, 29 Oct 2014 21:03:50 GMT
173
+ method: get
174
+ uri: "<DOCKER_HOST>/v1.15/images/08e20b347507/json"
261
175
  body:
262
- encoding: UTF-8
176
+ encoding: US-ASCII
263
177
  string: ''
264
- http_version:
265
- recorded_at: Wed, 29 Oct 2014 21:03:50 GMT
266
- - request:
267
- method: post
268
- uri: unix:///var/run/docker.sock/v1.12/commit?container=2d7d749f&repo=nahiluhmot%2Fbase2
269
- body:
270
- encoding: UTF-8
271
- string: 'null'
272
178
  headers:
273
179
  User-Agent:
274
- - Swipely/Docker-API 1.13.6
180
+ - Swipely/Docker-API 1.15.0
275
181
  Content-Type:
276
- - application/json
182
+ - text/plain
277
183
  response:
278
184
  status:
279
- code: 201
185
+ code: 200
280
186
  message:
281
187
  headers:
282
188
  Content-Type:
283
189
  - application/json
284
190
  Date:
285
- - Wed, 29 Oct 2014 21:03:50 GMT
191
+ - Mon, 01 Dec 2014 18:08:44 GMT
286
192
  Content-Length:
287
- - '74'
193
+ - '1451'
288
194
  body:
289
195
  encoding: UTF-8
290
196
  string: |
291
- {"Id":"fae7e195e7ab9e76e07c3b1bbe3ba9cfdd3e9891ffc875a7ba652c0f1b8604b2"}
197
+ {"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"cb7d701676d5","Image":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"c21f74268c73d08aee59691b5b4b5771ca49cdc73dee76a3778cc214801da20e","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/true]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"cb7d701676d5","Image":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-11-24T03:20:51.740435043Z","DockerVersion":"1.3.2","Id":"08e20b3475072326a5f6855b4bca4fe53680d025f379eb54c5076de119cae17b","Os":"linux","Parent":"0b7a3c1fbea815d721ccf5404d05e0d8c667945ebe21acdf530fae3aa22184ce","Size":0,"VirtualSize":125}
292
198
  http_version:
293
- recorded_at: Wed, 29 Oct 2014 21:03:50 GMT
199
+ recorded_at: Mon, 01 Dec 2014 18:08:44 GMT
294
200
  - request:
295
- method: get
296
- uri: unix:///var/run/docker.sock/v1.12/images/json?all=true
201
+ method: post
202
+ uri: "<DOCKER_HOST>/v1.15/images/tianon/true/push?tag=latest"
297
203
  body:
298
204
  encoding: US-ASCII
299
205
  string: ''
300
206
  headers:
301
207
  User-Agent:
302
- - Swipely/Docker-API 1.13.6
208
+ - Swipely/Docker-API 1.15.0
303
209
  Content-Type:
304
210
  - text/plain
211
+ X-Registry-Auth:
212
+ - eyJ1c2VybmFtZSI6InRkdWZmaWVsZCIsInBhc3N3b3JkIjoiaTlCZj5KZ3ZmYmpZL3NKV01jVTkiLCJzZXJ2ZXJhZGRyZXNzIjoiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEiLCJlbWFpbCI6ImdpdGh1YkB0b21kdWZmaWVsZC5jb20ifQ==
305
213
  response:
306
214
  status:
307
215
  code: 200
@@ -310,31 +218,27 @@ http_interactions:
310
218
  Content-Type:
311
219
  - application/json
312
220
  Date:
313
- - Wed, 29 Oct 2014 21:03:50 GMT
314
- Content-Length:
315
- - '649'
221
+ - Mon, 01 Dec 2014 18:08:44 GMT
316
222
  body:
317
223
  encoding: UTF-8
318
- string: |-
319
- [{"Created":1414616630,"Id":"fae7e195e7ab9e76e07c3b1bbe3ba9cfdd3e9891ffc875a7ba652c0f1b8604b2","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["nahiluhmot/base2:latest"],"Size":0,"VirtualSize":175307035}
320
- ,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
321
- ,{"Created":1364068391,"Id":"27cf784147099545","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":175306958,"VirtualSize":175306958}
322
- ]
224
+ string: "{\"status\":\"The push refers to a repository [tianon/true] (len: 1)\"}\r\n{\"status\":\"Sending
225
+ image list\"}\r\n{\"errorDetail\":{\"message\":\"Error: Status 403 trying
226
+ to push repository tianon/true: \\\"Access denied, you don't have access to
227
+ this repo\\\"\"},\"error\":\"Error: Status 403 trying to push repository tianon/true:
228
+ \\\"Access denied, you don't have access to this repo\\\"\"}\r\n"
323
229
  http_version:
324
- recorded_at: Wed, 29 Oct 2014 21:03:50 GMT
230
+ recorded_at: Mon, 01 Dec 2014 18:08:45 GMT
325
231
  - request:
326
- method: post
327
- uri: unix:///var/run/docker.sock/v1.12/images/nahiluhmot/base2/push?tag=latest
232
+ method: delete
233
+ uri: "<DOCKER_HOST>/v1.15/images/<USERNAME>/true?noprune=true"
328
234
  body:
329
235
  encoding: US-ASCII
330
236
  string: ''
331
237
  headers:
332
238
  User-Agent:
333
- - Swipely/Docker-API 1.13.6
239
+ - Swipely/Docker-API 1.15.0
334
240
  Content-Type:
335
241
  - text/plain
336
- X-Registry-Auth:
337
- - eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKiIsInNlcnZlcmFkZHJlc3MiOiJodHRwczovL2luZGV4LmRvY2tlci5pby92MSIsImVtYWlsIjoidG9taHVsaWhhbkBzd2lwZWx5LmNvbSJ9
338
242
  response:
339
243
  status:
340
244
  code: 200
@@ -343,13 +247,14 @@ http_interactions:
343
247
  Content-Type:
344
248
  - application/json
345
249
  Date:
346
- - Wed, 29 Oct 2014 21:03:50 GMT
250
+ - Mon, 01 Dec 2014 18:08:45 GMT
251
+ Content-Length:
252
+ - '39'
347
253
  body:
348
254
  encoding: UTF-8
349
- string: "{\"status\":\"The push refers to a repository [nahiluhmot/base2] (len:
350
- 1)\"}\r\n{\"status\":\"Sending image list\"}\r\n{\"errorDetail\":{\"message\":\"Error:
351
- Status 401 trying to push repository nahiluhmot/base2: \\\"\\\"\"},\"error\":\"Error:
352
- Status 401 trying to push repository nahiluhmot/base2: \\\"\\\"\"}\r\n"
255
+ string: |-
256
+ [{"Untagged":"<USERNAME>/true:latest"}
257
+ ]
353
258
  http_version:
354
- recorded_at: Wed, 29 Oct 2014 21:03:51 GMT
259
+ recorded_at: Mon, 01 Dec 2014 18:08:45 GMT
355
260
  recorded_with: VCR 2.9.3