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
- - Mon, 27 Oct 2014 23:22:22 GMT
22
+ - Mon, 01 Dec 2014 18:08:47 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
- string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
26
- (ubuntu-quantal) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
27
- image (ubuntu-quantal) 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\":539393,\"total\":94863360,\"start\":1414452143},\"progress\":\"[\\u003e
31
- \ ] 539.4 kB/94.86 MB 5m28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1080065,\"total\":94863360,\"start\":1414452143},\"progress\":\"[\\u003e
32
- \ ] 1.08 MB/94.86 MB 3m47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1620737,\"total\":94863360,\"start\":1414452143},\"progress\":\"[\\u003e
33
- \ ] 1.621 MB/94.86 MB 3m1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2161409,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=\\u003e
34
- \ ] 2.161 MB/94.86 MB 2m34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2702081,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=\\u003e
35
- \ ] 2.702 MB/94.86 MB 2m15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3242753,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=\\u003e
36
- \ ] 3.243 MB/94.86 MB 2m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3783425,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=\\u003e
37
- \ ] 3.783 MB/94.86 MB 1m52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4324097,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==\\u003e
38
- \ ] 4.324 MB/94.86 MB 1m43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4864769,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==\\u003e
39
- \ ] 4.865 MB/94.86 MB 1m37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5405441,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==\\u003e
40
- \ ] 5.405 MB/94.86 MB 1m31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5946113,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===\\u003e
41
- \ ] 5.946 MB/94.86 MB 1m27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6486785,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===\\u003e
42
- \ ] 6.487 MB/94.86 MB 1m23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7027457,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===\\u003e
43
- \ ] 7.027 MB/94.86 MB 1m19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7568129,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===\\u003e
44
- \ ] 7.568 MB/94.86 MB 1m16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8108801,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====\\u003e
45
- \ ] 8.109 MB/94.86 MB 1m14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8649473,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====\\u003e
46
- \ ] 8.649 MB/94.86 MB 1m11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9190145,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====\\u003e
47
- \ ] 9.19 MB/94.86 MB 1m10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9730817,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====\\u003e
48
- \ ] 9.731 MB/94.86 MB 1m8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10271489,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====\\u003e
49
- \ ] 10.27 MB/94.86 MB 1m8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10812161,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====\\u003e
50
- \ ] 10.81 MB/94.86 MB 1m7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11352833,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====\\u003e
51
- \ ] 11.35 MB/94.86 MB 1m5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11893505,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======\\u003e
52
- \ ] 11.89 MB/94.86 MB 1m5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12434177,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======\\u003e
53
- \ ] 12.43 MB/94.86 MB 1m4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12974849,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======\\u003e
54
- \ ] 12.97 MB/94.86 MB 1m4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13515521,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======\\u003e
55
- \ ] 13.52 MB/94.86 MB 1m2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14056193,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======\\u003e
56
- \ ] 14.06 MB/94.86 MB 1m1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14596865,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======\\u003e
57
- \ ] 14.6 MB/94.86 MB 1m0s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15137537,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======\\u003e
58
- \ ] 15.14 MB/94.86 MB 59s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15678209,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========\\u003e
59
- \ ] 15.68 MB/94.86 MB 58s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16218881,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========\\u003e
60
- \ ] 16.22 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16759553,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========\\u003e
61
- \ ] 16.76 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17300225,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========\\u003e
62
- \ ] 17.3 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17840897,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========\\u003e
63
- \ ] 17.84 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18381569,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========\\u003e
64
- \ ] 18.38 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18922241,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========\\u003e
65
- \ ] 18.92 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19462913,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========\\u003e
66
- \ ] 19.46 MB/94.86 MB 52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20003585,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========\\u003e
67
- \ ] 20 MB/94.86 MB 51s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20544257,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========\\u003e
68
- \ ] 20.54 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21084929,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========\\u003e
69
- \ ] 21.08 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21625601,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========\\u003e
70
- \ ] 21.63 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22166273,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========\\u003e
71
- \ ] 22.17 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22706945,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========\\u003e
72
- \ ] 22.71 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23247617,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============\\u003e
73
- \ ] 23.25 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23788289,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============\\u003e
74
- \ ] 23.79 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24328961,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============\\u003e
75
- \ ] 24.33 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24869633,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============\\u003e
76
- \ ] 24.87 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25410305,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============\\u003e
77
- \ ] 25.41 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25950977,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============\\u003e
78
- \ ] 25.95 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26491649,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============\\u003e
79
- \ ] 26.49 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27032321,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============\\u003e
80
- \ ] 27.03 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27572993,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============\\u003e
81
- \ ] 27.57 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28113665,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============\\u003e
82
- \ ] 28.11 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28654337,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============\\u003e
83
- \ ] 28.65 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29195009,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============\\u003e
84
- \ ] 29.2 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29735681,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============\\u003e
85
- \ ] 29.74 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30276353,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============\\u003e
86
- \ ] 30.28 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30817025,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================\\u003e
87
- \ ] 30.82 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31357697,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================\\u003e
88
- \ ] 31.36 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31898369,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================\\u003e
89
- \ ] 31.9 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32439041,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================\\u003e
90
- \ ] 32.44 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32979713,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================\\u003e
91
- \ ] 32.98 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33520385,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================\\u003e
92
- \ ] 33.52 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34061057,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================\\u003e
93
- \ ] 34.06 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34601729,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==================\\u003e
94
- \ ] 34.6 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35142401,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==================\\u003e
95
- \ ] 35.14 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35683073,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==================\\u003e
96
- \ ] 35.68 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36223745,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===================\\u003e
97
- \ ] 36.22 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36764417,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===================\\u003e
98
- \ ] 36.76 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37305089,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===================\\u003e
99
- \ ] 37.31 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37845761,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===================\\u003e
100
- \ ] 37.85 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38386433,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====================\\u003e
101
- \ ] 38.39 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38927105,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====================\\u003e
102
- \ ] 38.93 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39467777,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====================\\u003e
103
- \ ] 39.47 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40008449,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====================\\u003e
104
- \ ] 40.01 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40549121,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====================\\u003e
105
- \ ] 40.55 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41089793,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====================\\u003e
106
- \ ] 41.09 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41630465,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====================\\u003e
107
- \ ] 41.63 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42171137,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======================\\u003e
108
- \ ] 42.17 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42711809,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======================\\u003e
109
- \ ] 42.71 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43252481,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======================\\u003e
110
- \ ] 43.25 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43793153,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======================\\u003e
111
- \ ] 43.79 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44333825,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======================\\u003e
112
- \ ] 44.33 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44874497,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======================\\u003e
113
- \ ] 44.87 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45415169,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======================\\u003e
114
- \ ] 45.42 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45955841,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========================\\u003e
115
- \ ] 45.96 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46496513,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========================\\u003e
116
- \ ] 46.5 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47037185,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========================\\u003e
117
- \ ] 47.04 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47577857,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========================\\u003e
118
- \ ] 47.58 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48118529,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========================\\u003e
119
- \ ] 48.12 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48659201,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========================\\u003e
120
- \ ] 48.66 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49199873,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========================\\u003e
121
- \ ] 49.2 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49740545,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========================\\u003e
122
- \ ] 49.74 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50281217,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========================\\u003e
123
- \ ] 50.28 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50821889,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========================\\u003e
124
- \ ] 50.82 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51362561,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========================\\u003e
125
- \ ] 51.36 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51903233,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========================\\u003e
126
- \ ] 51.9 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52443905,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========================\\u003e
127
- \ ] 52.44 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52984577,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========================\\u003e
128
- \ ] 52.98 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53525249,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============================\\u003e
129
- \ ] 53.53 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54065921,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============================\\u003e
130
- \ ] 54.07 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54606593,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============================\\u003e
131
- \ ] 54.61 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55147265,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============================\\u003e
132
- \ ] 55.15 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55687937,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============================\\u003e
133
- \ ] 55.69 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56228609,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============================\\u003e
134
- \ ] 56.23 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56769281,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============================\\u003e
135
- \ ] 56.77 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57309953,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============================\\u003e
136
- \ ] 57.31 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57850625,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============================\\u003e
137
- \ ] 57.85 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58391297,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============================\\u003e
138
- \ ] 58.39 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58931969,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============================\\u003e
139
- \ ] 58.93 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59472641,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============================\\u003e
140
- \ ] 59.47 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60013313,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============================\\u003e
141
- \ ] 60.01 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60553985,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============================\\u003e
142
- \ ] 60.55 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61094657,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================================\\u003e
143
- \ ] 61.09 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61635329,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================================\\u003e
144
- \ ] 61.64 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62176001,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================================\\u003e
145
- \ ] 62.18 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62716673,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================================\\u003e
146
- \ ] 62.72 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63257345,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================================\\u003e
147
- \ ] 63.26 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63798017,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================================\\u003e
148
- \ ] 63.8 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64338689,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================================\\u003e
149
- \ ] 64.34 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64879361,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==================================\\u003e
150
- \ ] 64.88 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65420033,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==================================\\u003e
151
- \ ] 65.42 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65960705,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==================================\\u003e
152
- \ ] 65.96 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66501377,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===================================\\u003e
153
- \ ] 66.5 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67042049,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===================================\\u003e
154
- \ ] 67.04 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67582721,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===================================\\u003e
155
- \ ] 67.58 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68123393,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===================================\\u003e
156
- \ ] 68.12 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68664065,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====================================\\u003e
157
- \ ] 68.66 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69204737,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====================================\\u003e
158
- \ ] 69.2 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69745409,\"total\":94863360,\"start\":1414452143},\"progress\":\"[====================================\\u003e
159
- \ ] 69.75 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70286081,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====================================\\u003e
160
- \ ] 70.29 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70826753,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====================================\\u003e
161
- \ ] 70.83 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71367425,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====================================\\u003e
162
- \ ] 71.37 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71908097,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=====================================\\u003e
163
- \ ] 71.91 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72448769,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======================================\\u003e
164
- \ ] 72.45 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72989441,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======================================\\u003e
165
- \ ] 72.99 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73530113,\"total\":94863360,\"start\":1414452143},\"progress\":\"[======================================\\u003e
166
- \ ] 73.53 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74070785,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======================================\\u003e
167
- \ ] 74.07 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74611457,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======================================\\u003e
168
- \ ] 74.61 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75152129,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======================================\\u003e
169
- \ ] 75.15 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75692801,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=======================================\\u003e
170
- \ ] 75.69 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76233473,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========================================\\u003e
171
- \ ] 76.23 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76774145,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========================================\\u003e
172
- \ ] 76.77 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77314817,\"total\":94863360,\"start\":1414452143},\"progress\":\"[========================================\\u003e
173
- \ ] 77.31 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77855489,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========================================\\u003e
174
- \ ] 77.86 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78396161,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========================================\\u003e
175
- \ ] 78.4 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78936833,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========================================\\u003e
176
- \ ] 78.94 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79477505,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=========================================\\u003e
177
- \ ] 79.48 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80018177,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========================================\\u003e
178
- \ ] 80.02 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80558849,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========================================\\u003e
179
- \ ] 80.56 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81099521,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==========================================\\u003e
180
- \ ] 81.1 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81640193,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========================================\\u003e
181
- \ ] 81.64 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82180865,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========================================\\u003e
182
- \ ] 82.18 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82721537,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========================================\\u003e
183
- \ ] 82.72 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83262209,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===========================================\\u003e
184
- \ ] 83.26 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83802881,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============================================\\u003e
185
- \ ] 83.8 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84343553,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============================================\\u003e
186
- \ ] 84.34 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84884225,\"total\":94863360,\"start\":1414452143},\"progress\":\"[============================================\\u003e
187
- \ ] 84.88 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85424897,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============================================\\u003e
188
- \ ] 85.42 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85965569,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============================================\\u003e
189
- \ ] 85.97 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86506241,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============================================\\u003e
190
- \ ] 86.51 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87046913,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=============================================\\u003e
191
- \ ] 87.05 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87587585,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============================================\\u003e
192
- \ ] 87.59 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88128257,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============================================\\u003e
193
- \ ] 88.13 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88668929,\"total\":94863360,\"start\":1414452143},\"progress\":\"[==============================================\\u003e
194
- \ ] 88.67 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89209601,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============================================\\u003e
195
- \ ] 89.21 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89750273,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============================================\\u003e
196
- \ ] 89.75 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90290945,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============================================\\u003e
197
- \ ] 90.29 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90831617,\"total\":94863360,\"start\":1414452143},\"progress\":\"[===============================================\\u003e
198
- \ ] 90.83 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91372289,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================================================\\u003e
199
- \ ] 91.37 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91912961,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================================================\\u003e
200
- \ ] 91.91 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92453633,\"total\":94863360,\"start\":1414452143},\"progress\":\"[================================================\\u003e
201
- \ ] 92.45 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92994305,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================================================\\u003e
202
- ] 92.99 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93534977,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================================================\\u003e
203
- ] 93.53 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94075649,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================================================\\u003e
204
- ] 94.08 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94616321,\"total\":94863360,\"start\":1414452143},\"progress\":\"[=================================================\\u003e
205
- ] 94.62 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414452143},\"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\":2076,\"total\":10240,\"start\":1414452197},\"progress\":\"[==========\\u003e
209
- \ ] 2.076 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: Mon, 27 Oct 2014 23:23:17 GMT
31
+ recorded_at: Mon, 01 Dec 2014 18:08:47 GMT
215
32
  - request:
216
33
  method: post
217
- uri: unix:///var/run/docker.sock/v1.12/containers/create
34
+ uri: "<DOCKER_HOST>/v1.15/containers/create"
218
35
  body:
219
36
  encoding: UTF-8
220
- string: '{"Image":"b750fe79269d","Cmd":["ls","/lib64/"]}'
37
+ string: '{"Image":"f6fab3b798be","Cmd":["ls","/lib64/"]}'
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
  - application/json
226
43
  response:
@@ -231,24 +48,24 @@ http_interactions:
231
48
  Content-Type:
232
49
  - application/json
233
50
  Date:
234
- - Mon, 27 Oct 2014 23:23:17 GMT
51
+ - Mon, 01 Dec 2014 18:08:47 GMT
235
52
  Content-Length:
236
53
  - '90'
237
54
  body:
238
55
  encoding: UTF-8
239
56
  string: |
240
- {"Id":"bc15de881baf6fd69a8de4c0e6e2ca3bfdc50e4278857ddfc89cf973910cbc2e","Warnings":null}
57
+ {"Id":"3437665a25de15bc5af05f15c05ecf49c481e424d85ffadbf1a4911e01f6217a","Warnings":null}
241
58
  http_version:
242
- recorded_at: Mon, 27 Oct 2014 23:23:17 GMT
59
+ recorded_at: Mon, 01 Dec 2014 18:08:47 GMT
243
60
  - request:
244
61
  method: post
245
- uri: unix:///var/run/docker.sock/v1.12/containers/bc15de881baf6fd69a8de4c0e6e2ca3bfdc50e4278857ddfc89cf973910cbc2e/start
62
+ uri: "<DOCKER_HOST>/v1.15/containers/3437665a25de15bc5af05f15c05ecf49c481e424d85ffadbf1a4911e01f6217a/start"
246
63
  body:
247
64
  encoding: UTF-8
248
65
  string: "{}"
249
66
  headers:
250
67
  User-Agent:
251
- - Swipely/Docker-API 1.13.6
68
+ - Swipely/Docker-API 1.15.0
252
69
  Content-Type:
253
70
  - application/json
254
71
  response:
@@ -257,21 +74,21 @@ http_interactions:
257
74
  message:
258
75
  headers:
259
76
  Date:
260
- - Mon, 27 Oct 2014 23:23:17 GMT
77
+ - Mon, 01 Dec 2014 18:08:48 GMT
261
78
  body:
262
79
  encoding: UTF-8
263
80
  string: ''
264
81
  http_version:
265
- recorded_at: Mon, 27 Oct 2014 23:23:17 GMT
82
+ recorded_at: Mon, 01 Dec 2014 18:08:48 GMT
266
83
  - request:
267
- method: post
268
- uri: unix:///var/run/docker.sock/v1.12/containers/bc15de881baf6fd69a8de4c0e6e2ca3bfdc50e4278857ddfc89cf973910cbc2e/attach?stderr=true&stdout=true&stream=true
84
+ method: get
85
+ uri: "<DOCKER_HOST>/v1.15/containers/3437665a25de15bc5af05f15c05ecf49c481e424d85ffadbf1a4911e01f6217a/logs?stdout=true"
269
86
  body:
270
87
  encoding: US-ASCII
271
88
  string: ''
272
89
  headers:
273
90
  User-Agent:
274
- - Swipely/Docker-API 1.13.6
91
+ - Swipely/Docker-API 1.15.0
275
92
  Content-Type:
276
93
  - text/plain
277
94
  response:
@@ -279,12 +96,65 @@ http_interactions:
279
96
  code: 200
280
97
  message:
281
98
  headers:
99
+ Date:
100
+ - Mon, 01 Dec 2014 18:08:48 GMT
282
101
  Content-Type:
283
- - application/vnd.docker.raw-stream
102
+ - application/octet-stream
284
103
  body:
285
104
  encoding: UTF-8
286
105
  string: !binary |-
287
106
  AQAAAAAAABVsZC1saW51eC14ODYtNjQuc28uMgo=
288
107
  http_version:
289
- recorded_at: Mon, 27 Oct 2014 23:23:17 GMT
108
+ recorded_at: Mon, 01 Dec 2014 18:08:48 GMT
109
+ - request:
110
+ method: post
111
+ uri: "<DOCKER_HOST>/v1.15/containers/3437665a25de15bc5af05f15c05ecf49c481e424d85ffadbf1a4911e01f6217a/wait"
112
+ body:
113
+ encoding: US-ASCII
114
+ string: ''
115
+ headers:
116
+ User-Agent:
117
+ - Swipely/Docker-API 1.15.0
118
+ Content-Type:
119
+ - text/plain
120
+ response:
121
+ status:
122
+ code: 200
123
+ message:
124
+ headers:
125
+ Content-Type:
126
+ - application/json
127
+ Date:
128
+ - Mon, 01 Dec 2014 18:08:48 GMT
129
+ Content-Length:
130
+ - '17'
131
+ body:
132
+ encoding: UTF-8
133
+ string: |
134
+ {"StatusCode":0}
135
+ http_version:
136
+ recorded_at: Mon, 01 Dec 2014 18:08:48 GMT
137
+ - request:
138
+ method: delete
139
+ uri: "<DOCKER_HOST>/v1.15/containers/3437665a25de15bc5af05f15c05ecf49c481e424d85ffadbf1a4911e01f6217a"
140
+ body:
141
+ encoding: US-ASCII
142
+ string: ''
143
+ headers:
144
+ User-Agent:
145
+ - Swipely/Docker-API 1.15.0
146
+ Content-Type:
147
+ - text/plain
148
+ response:
149
+ status:
150
+ code: 204
151
+ message:
152
+ headers:
153
+ Date:
154
+ - Mon, 01 Dec 2014 18:08:48 GMT
155
+ body:
156
+ encoding: UTF-8
157
+ string: ''
158
+ http_version:
159
+ recorded_at: Mon, 01 Dec 2014 18:08:48 GMT
290
160
  recorded_with: VCR 2.9.3
@@ -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
- - Mon, 27 Oct 2014 23:24:32 GMT
22
+ - Mon, 01 Dec 2014 18:08:48 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\":528903,\"total\":94863360,\"start\":1414452273},\"progress\":\"[\\u003e
31
- \ ] 528.9 kB/94.86 MB 3m40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1069575,\"total\":94863360,\"start\":1414452273},\"progress\":\"[\\u003e
32
- \ ] 1.07 MB/94.86 MB 1m58s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1610247,\"total\":94863360,\"start\":1414452273},\"progress\":\"[\\u003e
33
- \ ] 1.61 MB/94.86 MB 1m23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2150919,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=\\u003e
34
- \ ] 2.151 MB/94.86 MB 1m4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2691591,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=\\u003e
35
- \ ] 2.692 MB/94.86 MB 58s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3228375,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=\\u003e
36
- \ ] 3.228 MB/94.86 MB 1m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3762343,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=\\u003e
37
- \ ] 3.762 MB/94.86 MB 1m5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4287271,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==\\u003e
38
- \ ] 4.287 MB/94.86 MB 1m4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4824671,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==\\u003e
39
- \ ] 4.825 MB/94.86 MB 1m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5365343,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==\\u003e
40
- \ ] 5.365 MB/94.86 MB 1m1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5906015,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===\\u003e
41
- \ ] 5.906 MB/94.86 MB 1m0s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6446687,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===\\u003e
42
- \ ] 6.447 MB/94.86 MB 58s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6987359,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===\\u003e
43
- \ ] 6.987 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7528031,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===\\u003e
44
- \ ] 7.528 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8068703,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====\\u003e
45
- \ ] 8.069 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8609375,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====\\u003e
46
- \ ] 8.609 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9150047,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====\\u003e
47
- \ ] 9.15 MB/94.86 MB 52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9690719,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====\\u003e
48
- \ ] 9.691 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10231391,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====\\u003e
49
- \ ] 10.23 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10772063,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====\\u003e
50
- \ ] 10.77 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11312735,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====\\u003e
51
- \ ] 11.31 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11853407,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======\\u003e
52
- \ ] 11.85 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12394079,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======\\u003e
53
- \ ] 12.39 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12934751,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======\\u003e
54
- \ ] 12.93 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13475423,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======\\u003e
55
- \ ] 13.48 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14016095,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======\\u003e
56
- \ ] 14.02 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14556767,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======\\u003e
57
- \ ] 14.56 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15097439,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======\\u003e
58
- \ ] 15.1 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15638111,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========\\u003e
59
- \ ] 15.64 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16178783,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========\\u003e
60
- \ ] 16.18 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16719455,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========\\u003e
61
- \ ] 16.72 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17260127,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========\\u003e
62
- \ ] 17.26 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17800799,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========\\u003e
63
- \ ] 17.8 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18341471,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========\\u003e
64
- \ ] 18.34 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18882143,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========\\u003e
65
- \ ] 18.88 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19422815,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========\\u003e
66
- \ ] 19.42 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19963487,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========\\u003e
67
- \ ] 19.96 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20504159,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========\\u003e
68
- \ ] 20.5 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21044831,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========\\u003e
69
- \ ] 21.04 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21585503,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========\\u003e
70
- \ ] 21.59 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22126175,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========\\u003e
71
- \ ] 22.13 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22666847,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========\\u003e
72
- \ ] 22.67 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23207519,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============\\u003e
73
- \ ] 23.21 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23748191,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============\\u003e
74
- \ ] 23.75 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24288863,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============\\u003e
75
- \ ] 24.29 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24829535,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============\\u003e
76
- \ ] 24.83 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25370207,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============\\u003e
77
- \ ] 25.37 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25910879,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============\\u003e
78
- \ ] 25.91 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26451551,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============\\u003e
79
- \ ] 26.45 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26992223,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============\\u003e
80
- \ ] 26.99 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27532895,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============\\u003e
81
- \ ] 27.53 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28073567,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============\\u003e
82
- \ ] 28.07 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28614239,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============\\u003e
83
- \ ] 28.61 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29154911,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============\\u003e
84
- \ ] 29.15 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29695583,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============\\u003e
85
- \ ] 29.7 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30236255,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============\\u003e
86
- \ ] 30.24 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30776927,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================\\u003e
87
- \ ] 30.78 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31317599,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================\\u003e
88
- \ ] 31.32 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31858271,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================\\u003e
89
- \ ] 31.86 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32398943,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================\\u003e
90
- \ ] 32.4 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32939615,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================\\u003e
91
- \ ] 32.94 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33480287,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================\\u003e
92
- \ ] 33.48 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34020959,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================\\u003e
93
- \ ] 34.02 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34561631,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==================\\u003e
94
- \ ] 34.56 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35102303,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==================\\u003e
95
- \ ] 35.1 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35642975,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==================\\u003e
96
- \ ] 35.64 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36183647,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===================\\u003e
97
- \ ] 36.18 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36724319,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===================\\u003e
98
- \ ] 36.72 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37264991,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===================\\u003e
99
- \ ] 37.26 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37805663,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===================\\u003e
100
- \ ] 37.81 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38346335,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====================\\u003e
101
- \ ] 38.35 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38887007,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====================\\u003e
102
- \ ] 38.89 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39427679,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====================\\u003e
103
- \ ] 39.43 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39968351,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====================\\u003e
104
- \ ] 39.97 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40509023,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====================\\u003e
105
- \ ] 40.51 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41049695,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====================\\u003e
106
- \ ] 41.05 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41590367,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====================\\u003e
107
- \ ] 41.59 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42131039,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======================\\u003e
108
- \ ] 42.13 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42671711,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======================\\u003e
109
- \ ] 42.67 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43212383,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======================\\u003e
110
- \ ] 43.21 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43753055,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======================\\u003e
111
- \ ] 43.75 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44293727,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======================\\u003e
112
- \ ] 44.29 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44834399,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======================\\u003e
113
- \ ] 44.83 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45375071,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======================\\u003e
114
- \ ] 45.38 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45915743,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========================\\u003e
115
- \ ] 45.92 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46456415,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========================\\u003e
116
- \ ] 46.46 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46997087,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========================\\u003e
117
- \ ] 47 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47537759,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========================\\u003e
118
- \ ] 47.54 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48078431,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========================\\u003e
119
- \ ] 48.08 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48619103,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========================\\u003e
120
- \ ] 48.62 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49159775,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========================\\u003e
121
- \ ] 49.16 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49700447,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========================\\u003e
122
- \ ] 49.7 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50241119,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========================\\u003e
123
- \ ] 50.24 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50781791,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========================\\u003e
124
- \ ] 50.78 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51322463,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========================\\u003e
125
- \ ] 51.32 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51863135,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========================\\u003e
126
- \ ] 51.86 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52403807,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========================\\u003e
127
- \ ] 52.4 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52944479,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========================\\u003e
128
- \ ] 52.94 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53485151,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============================\\u003e
129
- \ ] 53.49 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54025823,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============================\\u003e
130
- \ ] 54.03 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54566495,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============================\\u003e
131
- \ ] 54.57 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55107167,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============================\\u003e
132
- \ ] 55.11 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55647839,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============================\\u003e
133
- \ ] 55.65 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56188511,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============================\\u003e
134
- \ ] 56.19 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56729183,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============================\\u003e
135
- \ ] 56.73 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57269855,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============================\\u003e
136
- \ ] 57.27 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57810527,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============================\\u003e
137
- \ ] 57.81 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58351199,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============================\\u003e
138
- \ ] 58.35 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58891871,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============================\\u003e
139
- \ ] 58.89 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59432543,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============================\\u003e
140
- \ ] 59.43 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59973215,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============================\\u003e
141
- \ ] 59.97 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60513887,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============================\\u003e
142
- \ ] 60.51 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61054559,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================================\\u003e
143
- \ ] 61.05 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61595231,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================================\\u003e
144
- \ ] 61.6 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62135903,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================================\\u003e
145
- \ ] 62.14 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62676575,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================================\\u003e
146
- \ ] 62.68 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63217247,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================================\\u003e
147
- \ ] 63.22 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63757919,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================================\\u003e
148
- \ ] 63.76 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64298591,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================================\\u003e
149
- \ ] 64.3 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64839263,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==================================\\u003e
150
- \ ] 64.84 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65379935,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==================================\\u003e
151
- \ ] 65.38 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65920607,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==================================\\u003e
152
- \ ] 65.92 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66461279,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===================================\\u003e
153
- \ ] 66.46 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67001951,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===================================\\u003e
154
- \ ] 67 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67542623,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===================================\\u003e
155
- \ ] 67.54 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68076511,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===================================\\u003e
156
- \ ] 68.08 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68617183,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====================================\\u003e
157
- \ ] 68.62 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69143687,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====================================\\u003e
158
- \ ] 69.14 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69684359,\"total\":94863360,\"start\":1414452273},\"progress\":\"[====================================\\u003e
159
- \ ] 69.68 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70225031,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====================================\\u003e
160
- \ ] 70.23 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70765703,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====================================\\u003e
161
- \ ] 70.77 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71306375,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====================================\\u003e
162
- \ ] 71.31 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71847047,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=====================================\\u003e
163
- \ ] 71.85 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72387719,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======================================\\u003e
164
- \ ] 72.39 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72928391,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======================================\\u003e
165
- \ ] 72.93 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73469063,\"total\":94863360,\"start\":1414452273},\"progress\":\"[======================================\\u003e
166
- \ ] 73.47 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74009735,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======================================\\u003e
167
- \ ] 74.01 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74550407,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======================================\\u003e
168
- \ ] 74.55 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75091079,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======================================\\u003e
169
- \ ] 75.09 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75631751,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=======================================\\u003e
170
- \ ] 75.63 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76172423,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========================================\\u003e
171
- \ ] 76.17 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76713095,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========================================\\u003e
172
- \ ] 76.71 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77253767,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========================================\\u003e
173
- \ ] 77.25 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77786719,\"total\":94863360,\"start\":1414452273},\"progress\":\"[========================================\\u003e
174
- \ ] 77.79 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78327391,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========================================\\u003e
175
- \ ] 78.33 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78868063,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========================================\\u003e
176
- \ ] 78.87 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79408735,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=========================================\\u003e
177
- \ ] 79.41 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79949407,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========================================\\u003e
178
- \ ] 79.95 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80490079,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========================================\\u003e
179
- \ ] 80.49 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81030751,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========================================\\u003e
180
- \ ] 81.03 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81571423,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==========================================\\u003e
181
- \ ] 81.57 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82112095,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========================================\\u003e
182
- \ ] 82.11 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82652767,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========================================\\u003e
183
- \ ] 82.65 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83193439,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===========================================\\u003e
184
- \ ] 83.19 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83734111,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============================================\\u003e
185
- \ ] 83.73 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84274783,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============================================\\u003e
186
- \ ] 84.27 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84815455,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============================================\\u003e
187
- \ ] 84.82 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85356127,\"total\":94863360,\"start\":1414452273},\"progress\":\"[============================================\\u003e
188
- \ ] 85.36 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85896799,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============================================\\u003e
189
- \ ] 85.9 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86437471,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============================================\\u003e
190
- \ ] 86.44 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86978143,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=============================================\\u003e
191
- \ ] 86.98 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87518815,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============================================\\u003e
192
- \ ] 87.52 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88059487,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============================================\\u003e
193
- \ ] 88.06 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88600159,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============================================\\u003e
194
- \ ] 88.6 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89140831,\"total\":94863360,\"start\":1414452273},\"progress\":\"[==============================================\\u003e
195
- \ ] 89.14 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89681503,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============================================\\u003e
196
- \ ] 89.68 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90222175,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============================================\\u003e
197
- \ ] 90.22 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90762847,\"total\":94863360,\"start\":1414452273},\"progress\":\"[===============================================\\u003e
198
- \ ] 90.76 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91303519,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================================================\\u003e
199
- \ ] 91.3 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91844191,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================================================\\u003e
200
- \ ] 91.84 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92384863,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================================================\\u003e
201
- \ ] 92.38 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92925535,\"total\":94863360,\"start\":1414452273},\"progress\":\"[================================================\\u003e
202
- \ ] 92.93 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93466207,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================================================\\u003e
203
- ] 93.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94006879,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================================================\\u003e
204
- ] 94.01 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94547551,\"total\":94863360,\"start\":1414452273},\"progress\":\"[=================================================\\u003e
205
- ] 94.55 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414452273},\"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\":630,\"total\":10240,\"start\":1414452300},\"progress\":\"[===\\u003e
209
- \ ] 630 B/10.24 kB 4s\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
210
- complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
211
- complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Status:
212
- Downloaded newer image for base\"}\r\n"
25
+ string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
26
+ exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
27
+ exists\",\"progressDetail\":{},\"id\":\"f10807909bc5\"}{\"status\":\"Already
28
+ exists\",\"progressDetail\":{},\"id\":\"f6fab3b798be\"}{\"status\":\"Status:
29
+ Image is up to date for debian:wheezy\"}\r\n"
213
30
  http_version:
214
- recorded_at: Mon, 27 Oct 2014 23:25:00 GMT
31
+ recorded_at: Mon, 01 Dec 2014 18:08:48 GMT
215
32
  - request:
216
33
  method: post
217
- uri: unix:///var/run/docker.sock/v1.12/containers/create
34
+ uri: "<DOCKER_HOST>/v1.15/containers/create"
218
35
  body:
219
36
  encoding: UTF-8
220
- string: '{"Image":"b750fe79269d","Cmd":["which","pwd"]}'
37
+ string: '{"Image":"f6fab3b798be","Cmd":["which","pwd"]}'
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
  - application/json
226
43
  response:
@@ -231,24 +48,24 @@ http_interactions:
231
48
  Content-Type:
232
49
  - application/json
233
50
  Date:
234
- - Mon, 27 Oct 2014 23:25:00 GMT
51
+ - Mon, 01 Dec 2014 18:08:48 GMT
235
52
  Content-Length:
236
53
  - '90'
237
54
  body:
238
55
  encoding: UTF-8
239
56
  string: |
240
- {"Id":"297e070a96c552e4b2f6a7642d8f158128b5db12881f22811c86772dfc391e17","Warnings":null}
57
+ {"Id":"ac8e9c43431e10077fc4f92bb2debb836190e13d8902e23639a4cf5f4a2d3a90","Warnings":null}
241
58
  http_version:
242
- recorded_at: Mon, 27 Oct 2014 23:25:00 GMT
59
+ recorded_at: Mon, 01 Dec 2014 18:08:48 GMT
243
60
  - request:
244
61
  method: post
245
- uri: unix:///var/run/docker.sock/v1.12/containers/297e070a96c552e4b2f6a7642d8f158128b5db12881f22811c86772dfc391e17/start
62
+ uri: "<DOCKER_HOST>/v1.15/containers/ac8e9c43431e10077fc4f92bb2debb836190e13d8902e23639a4cf5f4a2d3a90/start"
246
63
  body:
247
64
  encoding: UTF-8
248
65
  string: "{}"
249
66
  headers:
250
67
  User-Agent:
251
- - Swipely/Docker-API 1.13.6
68
+ - Swipely/Docker-API 1.15.0
252
69
  Content-Type:
253
70
  - application/json
254
71
  response:
@@ -257,21 +74,21 @@ http_interactions:
257
74
  message:
258
75
  headers:
259
76
  Date:
260
- - Mon, 27 Oct 2014 23:25:00 GMT
77
+ - Mon, 01 Dec 2014 18:08:49 GMT
261
78
  body:
262
79
  encoding: UTF-8
263
80
  string: ''
264
81
  http_version:
265
- recorded_at: Mon, 27 Oct 2014 23:25:00 GMT
82
+ recorded_at: Mon, 01 Dec 2014 18:08:49 GMT
266
83
  - request:
267
- method: post
268
- uri: unix:///var/run/docker.sock/v1.12/containers/297e070a96c552e4b2f6a7642d8f158128b5db12881f22811c86772dfc391e17/attach?stderr=true&stdout=true&stream=true
84
+ method: get
85
+ uri: "<DOCKER_HOST>/v1.15/containers/ac8e9c43431e10077fc4f92bb2debb836190e13d8902e23639a4cf5f4a2d3a90/logs?stdout=true"
269
86
  body:
270
87
  encoding: US-ASCII
271
88
  string: ''
272
89
  headers:
273
90
  User-Agent:
274
- - Swipely/Docker-API 1.13.6
91
+ - Swipely/Docker-API 1.15.0
275
92
  Content-Type:
276
93
  - text/plain
277
94
  response:
@@ -279,12 +96,65 @@ http_interactions:
279
96
  code: 200
280
97
  message:
281
98
  headers:
99
+ Date:
100
+ - Mon, 01 Dec 2014 18:08:49 GMT
282
101
  Content-Type:
283
- - application/vnd.docker.raw-stream
102
+ - application/octet-stream
284
103
  body:
285
104
  encoding: UTF-8
286
105
  string: !binary |-
287
106
  AQAAAAAAAAkvYmluL3B3ZAo=
288
107
  http_version:
289
- recorded_at: Mon, 27 Oct 2014 23:25:00 GMT
108
+ recorded_at: Mon, 01 Dec 2014 18:08:49 GMT
109
+ - request:
110
+ method: post
111
+ uri: "<DOCKER_HOST>/v1.15/containers/ac8e9c43431e10077fc4f92bb2debb836190e13d8902e23639a4cf5f4a2d3a90/wait"
112
+ body:
113
+ encoding: US-ASCII
114
+ string: ''
115
+ headers:
116
+ User-Agent:
117
+ - Swipely/Docker-API 1.15.0
118
+ Content-Type:
119
+ - text/plain
120
+ response:
121
+ status:
122
+ code: 200
123
+ message:
124
+ headers:
125
+ Content-Type:
126
+ - application/json
127
+ Date:
128
+ - Mon, 01 Dec 2014 18:08:49 GMT
129
+ Content-Length:
130
+ - '17'
131
+ body:
132
+ encoding: UTF-8
133
+ string: |
134
+ {"StatusCode":0}
135
+ http_version:
136
+ recorded_at: Mon, 01 Dec 2014 18:08:49 GMT
137
+ - request:
138
+ method: delete
139
+ uri: "<DOCKER_HOST>/v1.15/containers/ac8e9c43431e10077fc4f92bb2debb836190e13d8902e23639a4cf5f4a2d3a90"
140
+ body:
141
+ encoding: US-ASCII
142
+ string: ''
143
+ headers:
144
+ User-Agent:
145
+ - Swipely/Docker-API 1.15.0
146
+ Content-Type:
147
+ - text/plain
148
+ response:
149
+ status:
150
+ code: 204
151
+ message:
152
+ headers:
153
+ Date:
154
+ - Mon, 01 Dec 2014 18:08:49 GMT
155
+ body:
156
+ encoding: UTF-8
157
+ string: ''
158
+ http_version:
159
+ recorded_at: Mon, 01 Dec 2014 18:08:49 GMT
290
160
  recorded_with: VCR 2.9.3