docker-api 1.15.0 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +26 -1
- data/Rakefile +37 -0
- data/TESTING.md +61 -0
- data/lib/docker.rb +8 -1
- data/lib/docker/container.rb +44 -80
- data/lib/docker/exec.rb +98 -0
- data/lib/docker/image.rb +4 -3
- data/lib/docker/util.rb +79 -0
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +192 -56
- data/spec/docker/event_spec.rb +4 -4
- data/spec/docker/exec_spec.rb +197 -0
- data/spec/docker/image_spec.rb +131 -102
- data/spec/docker_spec.rb +37 -27
- data/spec/fixtures/build_from_dir/Dockerfile +2 -2
- data/spec/fixtures/export.tar +0 -0
- data/spec/fixtures/top/Dockerfile +2 -2
- data/spec/spec_helper.rb +10 -0
- data/spec/support/vcr.rb +5 -0
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -8
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +46 -139
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +62 -20
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +62 -20
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +71 -28
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +69 -23
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +134 -0
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +73 -290
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +51 -211
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +36 -17
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +30 -9
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -23
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +151 -0
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +153 -0
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +153 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +100 -0
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +152 -0
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +263 -28
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +36 -17
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +36 -17
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +55 -53
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +74 -96
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +34 -15
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +98 -45
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +88 -56
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +39 -22
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +212 -60
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +45 -30
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +54 -83
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +46 -30
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +103 -40
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +81 -57
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +39 -22
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +39 -22
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +128 -0
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +155 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +152 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +152 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +151 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +151 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +151 -0
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +86 -200
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +10 -14
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +147 -39
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +10 -14
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +12 -14
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +118 -16
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +118 -14
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +109 -37
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml +214 -60
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +41 -2631
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +12 -19
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +17 -198
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +26 -30
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +246 -22
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +35 -10
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +1249 -74
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +84 -94
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +70 -92
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +125 -98
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +13 -60
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +190 -135
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +15 -198
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +169 -264
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +175 -4543
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +90 -206
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +300 -0
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +77 -207
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +77 -207
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +160 -0
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +16 -197
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +151 -73
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +42 -196
- metadata +67 -41
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +0 -58
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/returns_the_error_message.yml +0 -163
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +0 -58
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +0 -41
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +0 -276
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=debian%3Awheezy"
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.15.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,208 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
- Mon,
|
22
|
+
- Mon, 01 Dec 2014 18:07:44 GMT
|
23
23
|
body:
|
24
24
|
encoding: UTF-8
|
25
|
-
string: "{\"status\":\"
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":524993,\"total\":94863360,\"start\":1414450342},\"progress\":\"[\\u003e
|
31
|
-
\ ] 525 kB/94.86 MB 3m49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1065665,\"total\":94863360,\"start\":1414450342},\"progress\":\"[\\u003e
|
32
|
-
\ ] 1.066 MB/94.86 MB 3m9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1606337,\"total\":94863360,\"start\":1414450342},\"progress\":\"[\\u003e
|
33
|
-
\ ] 1.606 MB/94.86 MB 2m46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2147009,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=\\u003e
|
34
|
-
\ ] 2.147 MB/94.86 MB 2m28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2687681,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=\\u003e
|
35
|
-
\ ] 2.688 MB/94.86 MB 2m12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3228353,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=\\u003e
|
36
|
-
\ ] 3.228 MB/94.86 MB 2m1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3769025,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=\\u003e
|
37
|
-
\ ] 3.769 MB/94.86 MB 1m52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4309697,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==\\u003e
|
38
|
-
\ ] 4.31 MB/94.86 MB 1m43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4850369,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==\\u003e
|
39
|
-
\ ] 4.85 MB/94.86 MB 1m37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5391041,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==\\u003e
|
40
|
-
\ ] 5.391 MB/94.86 MB 1m31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5931713,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===\\u003e
|
41
|
-
\ ] 5.932 MB/94.86 MB 1m27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6472385,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===\\u003e
|
42
|
-
\ ] 6.472 MB/94.86 MB 1m23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7013057,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===\\u003e
|
43
|
-
\ ] 7.013 MB/94.86 MB 1m20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7553729,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===\\u003e
|
44
|
-
\ ] 7.554 MB/94.86 MB 1m18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8094401,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====\\u003e
|
45
|
-
\ ] 8.094 MB/94.86 MB 1m16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8635073,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====\\u003e
|
46
|
-
\ ] 8.635 MB/94.86 MB 1m15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9175745,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====\\u003e
|
47
|
-
\ ] 9.176 MB/94.86 MB 1m14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9716417,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====\\u003e
|
48
|
-
\ ] 9.716 MB/94.86 MB 1m13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10257089,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====\\u003e
|
49
|
-
\ ] 10.26 MB/94.86 MB 1m11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10797761,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====\\u003e
|
50
|
-
\ ] 10.8 MB/94.86 MB 1m9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11338433,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====\\u003e
|
51
|
-
\ ] 11.34 MB/94.86 MB 1m7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11879105,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======\\u003e
|
52
|
-
\ ] 11.88 MB/94.86 MB 1m6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12419777,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======\\u003e
|
53
|
-
\ ] 12.42 MB/94.86 MB 1m5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12960449,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======\\u003e
|
54
|
-
\ ] 12.96 MB/94.86 MB 1m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13501121,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======\\u003e
|
55
|
-
\ ] 13.5 MB/94.86 MB 1m2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14041793,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======\\u003e
|
56
|
-
\ ] 14.04 MB/94.86 MB 1m0s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14582465,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======\\u003e
|
57
|
-
\ ] 14.58 MB/94.86 MB 59s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15123137,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======\\u003e
|
58
|
-
\ ] 15.12 MB/94.86 MB 59s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15663809,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========\\u003e
|
59
|
-
\ ] 15.66 MB/94.86 MB 58s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16204481,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========\\u003e
|
60
|
-
\ ] 16.2 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16745153,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========\\u003e
|
61
|
-
\ ] 16.75 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17285825,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========\\u003e
|
62
|
-
\ ] 17.29 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17826497,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========\\u003e
|
63
|
-
\ ] 17.83 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18367169,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========\\u003e
|
64
|
-
\ ] 18.37 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18907841,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========\\u003e
|
65
|
-
\ ] 18.91 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19448513,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========\\u003e
|
66
|
-
\ ] 19.45 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19989185,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========\\u003e
|
67
|
-
\ ] 19.99 MB/94.86 MB 52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20529857,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========\\u003e
|
68
|
-
\ ] 20.53 MB/94.86 MB 51s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21070529,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========\\u003e
|
69
|
-
\ ] 21.07 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21611201,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========\\u003e
|
70
|
-
\ ] 21.61 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22151873,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========\\u003e
|
71
|
-
\ ] 22.15 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22692545,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========\\u003e
|
72
|
-
\ ] 22.69 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23233217,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============\\u003e
|
73
|
-
\ ] 23.23 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23773889,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============\\u003e
|
74
|
-
\ ] 23.77 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24314561,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============\\u003e
|
75
|
-
\ ] 24.31 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24855233,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============\\u003e
|
76
|
-
\ ] 24.86 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25395905,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============\\u003e
|
77
|
-
\ ] 25.4 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25936577,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============\\u003e
|
78
|
-
\ ] 25.94 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26477249,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============\\u003e
|
79
|
-
\ ] 26.48 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27017921,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============\\u003e
|
80
|
-
\ ] 27.02 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27558593,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============\\u003e
|
81
|
-
\ ] 27.56 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28099265,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============\\u003e
|
82
|
-
\ ] 28.1 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28639937,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============\\u003e
|
83
|
-
\ ] 28.64 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29180609,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============\\u003e
|
84
|
-
\ ] 29.18 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29721281,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============\\u003e
|
85
|
-
\ ] 29.72 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30261953,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============\\u003e
|
86
|
-
\ ] 30.26 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30802625,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================\\u003e
|
87
|
-
\ ] 30.8 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31343297,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================\\u003e
|
88
|
-
\ ] 31.34 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31883969,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================\\u003e
|
89
|
-
\ ] 31.88 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32424641,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================\\u003e
|
90
|
-
\ ] 32.42 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32965313,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================\\u003e
|
91
|
-
\ ] 32.97 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33505985,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================\\u003e
|
92
|
-
\ ] 33.51 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34046657,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================\\u003e
|
93
|
-
\ ] 34.05 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34587329,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================\\u003e
|
94
|
-
\ ] 34.59 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35128001,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================\\u003e
|
95
|
-
\ ] 35.13 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35668673,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================\\u003e
|
96
|
-
\ ] 35.67 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36209345,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================\\u003e
|
97
|
-
\ ] 36.21 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36750017,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================\\u003e
|
98
|
-
\ ] 36.75 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37290689,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================\\u003e
|
99
|
-
\ ] 37.29 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37831361,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================\\u003e
|
100
|
-
\ ] 37.83 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38372033,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================\\u003e
|
101
|
-
\ ] 38.37 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38912705,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================\\u003e
|
102
|
-
\ ] 38.91 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39453377,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================\\u003e
|
103
|
-
\ ] 39.45 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39994049,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================\\u003e
|
104
|
-
\ ] 39.99 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40534721,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================\\u003e
|
105
|
-
\ ] 40.53 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41075393,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================\\u003e
|
106
|
-
\ ] 41.08 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41616065,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================\\u003e
|
107
|
-
\ ] 41.62 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42156737,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================\\u003e
|
108
|
-
\ ] 42.16 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42697409,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================\\u003e
|
109
|
-
\ ] 42.7 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43238081,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================\\u003e
|
110
|
-
\ ] 43.24 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43778753,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================\\u003e
|
111
|
-
\ ] 43.78 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44319425,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================\\u003e
|
112
|
-
\ ] 44.32 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44860097,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================\\u003e
|
113
|
-
\ ] 44.86 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45400769,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================\\u003e
|
114
|
-
\ ] 45.4 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45941441,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================\\u003e
|
115
|
-
\ ] 45.94 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46482113,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================\\u003e
|
116
|
-
\ ] 46.48 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022785,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================\\u003e
|
117
|
-
\ ] 47.02 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47563457,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================\\u003e
|
118
|
-
\ ] 47.56 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48104129,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================\\u003e
|
119
|
-
\ ] 48.1 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48644801,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================\\u003e
|
120
|
-
\ ] 48.64 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49185473,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================\\u003e
|
121
|
-
\ ] 49.19 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49726145,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================\\u003e
|
122
|
-
\ ] 49.73 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50266817,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================\\u003e
|
123
|
-
\ ] 50.27 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50807489,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================\\u003e
|
124
|
-
\ ] 50.81 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51348161,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================\\u003e
|
125
|
-
\ ] 51.35 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51888833,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================\\u003e
|
126
|
-
\ ] 51.89 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52429505,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================\\u003e
|
127
|
-
\ ] 52.43 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52970177,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================\\u003e
|
128
|
-
\ ] 52.97 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53510849,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================\\u003e
|
129
|
-
\ ] 53.51 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54051521,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================\\u003e
|
130
|
-
\ ] 54.05 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54592193,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================\\u003e
|
131
|
-
\ ] 54.59 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55132865,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================\\u003e
|
132
|
-
\ ] 55.13 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55673537,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================\\u003e
|
133
|
-
\ ] 55.67 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56214209,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================\\u003e
|
134
|
-
\ ] 56.21 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56754881,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================\\u003e
|
135
|
-
\ ] 56.75 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57295553,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================\\u003e
|
136
|
-
\ ] 57.3 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57836225,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================\\u003e
|
137
|
-
\ ] 57.84 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58376897,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================\\u003e
|
138
|
-
\ ] 58.38 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58917569,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================\\u003e
|
139
|
-
\ ] 58.92 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59458241,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================\\u003e
|
140
|
-
\ ] 59.46 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59998913,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================\\u003e
|
141
|
-
\ ] 60 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60539585,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================\\u003e
|
142
|
-
\ ] 60.54 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61080257,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================\\u003e
|
143
|
-
\ ] 61.08 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61620929,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================\\u003e
|
144
|
-
\ ] 61.62 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62161601,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================\\u003e
|
145
|
-
\ ] 62.16 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62702273,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================\\u003e
|
146
|
-
\ ] 62.7 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63242945,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================\\u003e
|
147
|
-
\ ] 63.24 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63783617,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================\\u003e
|
148
|
-
\ ] 63.78 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64324289,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================\\u003e
|
149
|
-
\ ] 64.32 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64864961,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================================\\u003e
|
150
|
-
\ ] 64.86 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65405633,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================================\\u003e
|
151
|
-
\ ] 65.41 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65946305,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================================\\u003e
|
152
|
-
\ ] 65.95 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66486977,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================================\\u003e
|
153
|
-
\ ] 66.49 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67027649,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================================\\u003e
|
154
|
-
\ ] 67.03 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67568321,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================================\\u003e
|
155
|
-
\ ] 67.57 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68108993,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================================\\u003e
|
156
|
-
\ ] 68.11 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68649665,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================================\\u003e
|
157
|
-
\ ] 68.65 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69190337,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================================\\u003e
|
158
|
-
\ ] 69.19 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69731009,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================================\\u003e
|
159
|
-
\ ] 69.73 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70271681,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================================\\u003e
|
160
|
-
\ ] 70.27 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70812353,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================================\\u003e
|
161
|
-
\ ] 70.81 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71353025,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================================\\u003e
|
162
|
-
\ ] 71.35 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71893697,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================================\\u003e
|
163
|
-
\ ] 71.89 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72434369,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================================\\u003e
|
164
|
-
\ ] 72.43 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72975041,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================================\\u003e
|
165
|
-
\ ] 72.98 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73515713,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================================\\u003e
|
166
|
-
\ ] 73.52 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74056385,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================================\\u003e
|
167
|
-
\ ] 74.06 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74597057,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================================\\u003e
|
168
|
-
\ ] 74.6 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75137729,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================================\\u003e
|
169
|
-
\ ] 75.14 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75678401,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================================\\u003e
|
170
|
-
\ ] 75.68 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76219073,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================================\\u003e
|
171
|
-
\ ] 76.22 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76759745,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================================\\u003e
|
172
|
-
\ ] 76.76 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77300417,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================================\\u003e
|
173
|
-
\ ] 77.3 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77841089,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================================\\u003e
|
174
|
-
\ ] 77.84 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78381761,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================================\\u003e
|
175
|
-
\ ] 78.38 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78922433,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================================\\u003e
|
176
|
-
\ ] 78.92 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79463105,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================================\\u003e
|
177
|
-
\ ] 79.46 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80003777,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================================\\u003e
|
178
|
-
\ ] 80 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80544449,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================================\\u003e
|
179
|
-
\ ] 80.54 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81085121,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================================\\u003e
|
180
|
-
\ ] 81.09 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81625793,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================================\\u003e
|
181
|
-
\ ] 81.63 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82166465,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================================\\u003e
|
182
|
-
\ ] 82.17 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82707137,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================================\\u003e
|
183
|
-
\ ] 82.71 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83247809,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================================\\u003e
|
184
|
-
\ ] 83.25 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83788481,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================================\\u003e
|
185
|
-
\ ] 83.79 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84329153,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================================\\u003e
|
186
|
-
\ ] 84.33 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84869825,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================================\\u003e
|
187
|
-
\ ] 84.87 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85410497,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================================\\u003e
|
188
|
-
\ ] 85.41 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85951169,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================================\\u003e
|
189
|
-
\ ] 85.95 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86491841,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================================\\u003e
|
190
|
-
\ ] 86.49 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87032513,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================================\\u003e
|
191
|
-
\ ] 87.03 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87573185,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================================\\u003e
|
192
|
-
\ ] 87.57 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88113857,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================================\\u003e
|
193
|
-
\ ] 88.11 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88654529,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================================\\u003e
|
194
|
-
\ ] 88.65 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89195201,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================================\\u003e
|
195
|
-
\ ] 89.2 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89735873,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================================\\u003e
|
196
|
-
\ ] 89.74 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90276545,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================================\\u003e
|
197
|
-
\ ] 90.28 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90817217,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================================\\u003e
|
198
|
-
\ ] 90.82 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91357889,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================================\\u003e
|
199
|
-
\ ] 91.36 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91898561,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================================\\u003e
|
200
|
-
\ ] 91.9 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92439233,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================================\\u003e
|
201
|
-
\ ] 92.44 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92979905,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================================\\u003e
|
202
|
-
] 92.98 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93520577,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================================\\u003e
|
203
|
-
] 93.52 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94061249,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================================\\u003e
|
204
|
-
] 94.06 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94601921,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================================\\u003e
|
205
|
-
] 94.6 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================================================\\u003e]
|
206
|
-
94.86 MB/94.86 MB\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
207
|
-
metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
208
|
-
fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3646,\"total\":10240,\"start\":1414450399},\"progress\":\"[=================\\u003e
|
209
|
-
\ ] 3.646 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
210
|
-
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
211
|
-
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Status:
|
212
|
-
Downloaded newer image for base\"}\r\n"
|
25
|
+
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
26
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"f10807909bc5\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"f6fab3b798be\"}{\"status\":\"Status:
|
29
|
+
Image is up to date for debian:wheezy\"}\r\n"
|
213
30
|
http_version:
|
214
|
-
recorded_at: Mon,
|
31
|
+
recorded_at: Mon, 01 Dec 2014 18:07:44 GMT
|
215
32
|
- request:
|
216
33
|
method: post
|
217
|
-
uri:
|
34
|
+
uri: "<DOCKER_HOST>/v1.15/containers/create"
|
218
35
|
body:
|
219
36
|
encoding: UTF-8
|
220
|
-
string: '{"Image":"
|
37
|
+
string: '{"Image":"f6fab3b798be","Cmd":["touch","/test"]}'
|
221
38
|
headers:
|
222
39
|
User-Agent:
|
223
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.15.0
|
224
41
|
Content-Type:
|
225
42
|
- application/json
|
226
43
|
response:
|
@@ -231,24 +48,24 @@ http_interactions:
|
|
231
48
|
Content-Type:
|
232
49
|
- application/json
|
233
50
|
Date:
|
234
|
-
- Mon,
|
51
|
+
- Mon, 01 Dec 2014 18:07:44 GMT
|
235
52
|
Content-Length:
|
236
53
|
- '90'
|
237
54
|
body:
|
238
55
|
encoding: UTF-8
|
239
56
|
string: |
|
240
|
-
{"Id":"
|
57
|
+
{"Id":"07b9de93548dbca9d55c0ee8b1513b49cd8d87e91f046b481698560927fc238e","Warnings":null}
|
241
58
|
http_version:
|
242
|
-
recorded_at: Mon,
|
59
|
+
recorded_at: Mon, 01 Dec 2014 18:07:44 GMT
|
243
60
|
- request:
|
244
61
|
method: post
|
245
|
-
uri:
|
62
|
+
uri: "<DOCKER_HOST>/v1.15/containers/07b9de93548dbca9d55c0ee8b1513b49cd8d87e91f046b481698560927fc238e/start"
|
246
63
|
body:
|
247
64
|
encoding: UTF-8
|
248
65
|
string: "{}"
|
249
66
|
headers:
|
250
67
|
User-Agent:
|
251
|
-
- Swipely/Docker-API 1.
|
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,
|
77
|
+
- Mon, 01 Dec 2014 18:07:45 GMT
|
261
78
|
body:
|
262
79
|
encoding: UTF-8
|
263
80
|
string: ''
|
264
81
|
http_version:
|
265
|
-
recorded_at: Mon,
|
82
|
+
recorded_at: Mon, 01 Dec 2014 18:07:45 GMT
|
266
83
|
- request:
|
267
84
|
method: post
|
268
|
-
uri:
|
85
|
+
uri: "<DOCKER_HOST>/v1.15/containers/07b9de93548dbca9d55c0ee8b1513b49cd8d87e91f046b481698560927fc238e/wait"
|
269
86
|
body:
|
270
87
|
encoding: US-ASCII
|
271
88
|
string: ''
|
272
89
|
headers:
|
273
90
|
User-Agent:
|
274
|
-
- Swipely/Docker-API 1.
|
91
|
+
- Swipely/Docker-API 1.15.0
|
275
92
|
Content-Type:
|
276
93
|
- text/plain
|
277
94
|
response:
|
@@ -282,7 +99,7 @@ http_interactions:
|
|
282
99
|
Content-Type:
|
283
100
|
- application/json
|
284
101
|
Date:
|
285
|
-
- Mon,
|
102
|
+
- Mon, 01 Dec 2014 18:07:45 GMT
|
286
103
|
Content-Length:
|
287
104
|
- '17'
|
288
105
|
body:
|
@@ -290,16 +107,16 @@ http_interactions:
|
|
290
107
|
string: |
|
291
108
|
{"StatusCode":0}
|
292
109
|
http_version:
|
293
|
-
recorded_at: Mon,
|
110
|
+
recorded_at: Mon, 01 Dec 2014 18:07:45 GMT
|
294
111
|
- request:
|
295
112
|
method: post
|
296
|
-
uri:
|
113
|
+
uri: "<DOCKER_HOST>/v1.15/containers/07b9de93548dbca9d55c0ee8b1513b49cd8d87e91f046b481698560927fc238e/copy"
|
297
114
|
body:
|
298
115
|
encoding: UTF-8
|
299
116
|
string: '{"Resource":"/test"}'
|
300
117
|
headers:
|
301
118
|
User-Agent:
|
302
|
-
- Swipely/Docker-API 1.
|
119
|
+
- Swipely/Docker-API 1.15.0
|
303
120
|
Content-Type:
|
304
121
|
- application/json
|
305
122
|
response:
|
@@ -310,7 +127,7 @@ http_interactions:
|
|
310
127
|
Content-Type:
|
311
128
|
- application/x-tar
|
312
129
|
Date:
|
313
|
-
- Mon,
|
130
|
+
- Mon, 01 Dec 2014 18:07:45 GMT
|
314
131
|
Content-Length:
|
315
132
|
- '1536'
|
316
133
|
body:
|
@@ -319,7 +136,7 @@ http_interactions:
|
|
319
136
|
dGVzdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
320
137
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
321
138
|
AAAAAAAAAAAAADAxMDA2NDQAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDAw
|
322
|
-
|
139
|
+
ADEyNDM3MTI3MTYxADAxMDE0MQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
323
140
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
324
141
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMAAAAAAA
|
325
142
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -352,5 +169,28 @@ http_interactions:
|
|
352
169
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
353
170
|
AAAAAAAA
|
354
171
|
http_version:
|
355
|
-
recorded_at: Mon,
|
172
|
+
recorded_at: Mon, 01 Dec 2014 18:07:45 GMT
|
173
|
+
- request:
|
174
|
+
method: delete
|
175
|
+
uri: "<DOCKER_HOST>/v1.15/containers/07b9de93548dbca9d55c0ee8b1513b49cd8d87e91f046b481698560927fc238e"
|
176
|
+
body:
|
177
|
+
encoding: US-ASCII
|
178
|
+
string: ''
|
179
|
+
headers:
|
180
|
+
User-Agent:
|
181
|
+
- Swipely/Docker-API 1.15.0
|
182
|
+
Content-Type:
|
183
|
+
- text/plain
|
184
|
+
response:
|
185
|
+
status:
|
186
|
+
code: 204
|
187
|
+
message:
|
188
|
+
headers:
|
189
|
+
Date:
|
190
|
+
- Mon, 01 Dec 2014 18:07:45 GMT
|
191
|
+
body:
|
192
|
+
encoding: UTF-8
|
193
|
+
string: ''
|
194
|
+
http_version:
|
195
|
+
recorded_at: Mon, 01 Dec 2014 18:07:45 GMT
|
356
196
|
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/containers/create?name=bob"
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["true"],"Image":"
|
8
|
+
string: '{"Cmd":["true"],"Image":"debian:wheezy"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.15.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
response:
|
@@ -19,26 +19,24 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Mon, 01 Dec 2014 18:07:39 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
|
-
Connection:
|
26
|
-
- close
|
27
25
|
body:
|
28
26
|
encoding: UTF-8
|
29
27
|
string: |
|
30
|
-
{"Id":"
|
28
|
+
{"Id":"9bf359072de70ec2cca7c47eaf6c28751c7b924f9bc221b1f7af5818ed249f1b","Warnings":null}
|
31
29
|
http_version:
|
32
|
-
recorded_at:
|
30
|
+
recorded_at: Mon, 01 Dec 2014 18:07:39 GMT
|
33
31
|
- request:
|
34
32
|
method: get
|
35
|
-
uri:
|
33
|
+
uri: "<DOCKER_HOST>/v1.15/containers/9bf359072de70ec2cca7c47eaf6c28751c7b924f9bc221b1f7af5818ed249f1b/json"
|
36
34
|
body:
|
37
35
|
encoding: US-ASCII
|
38
36
|
string: ''
|
39
37
|
headers:
|
40
38
|
User-Agent:
|
41
|
-
- Swipely/Docker-API 1.
|
39
|
+
- Swipely/Docker-API 1.15.0
|
42
40
|
Content-Type:
|
43
41
|
- text/plain
|
44
42
|
response:
|
@@ -49,15 +47,36 @@ http_interactions:
|
|
49
47
|
Content-Type:
|
50
48
|
- application/json
|
51
49
|
Date:
|
52
|
-
-
|
50
|
+
- Mon, 01 Dec 2014 18:07:39 GMT
|
53
51
|
Content-Length:
|
54
|
-
- '
|
55
|
-
Connection:
|
56
|
-
- close
|
52
|
+
- '1486'
|
57
53
|
body:
|
58
54
|
encoding: UTF-8
|
59
55
|
string: |
|
60
|
-
{"Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":
|
56
|
+
{"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["true"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"9bf359072de7","Image":"debian:wheezy","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-12-01T18:07:39.488526938Z","Driver":"aufs","ExecDriver":"native-0.2","HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"Links":null,"LxcConf":null,"NetworkMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"9bf359072de70ec2cca7c47eaf6c28751c7b924f9bc221b1f7af5818ed249f1b","Image":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","MountLabel":"","Name":"/bob","NetworkSettings":{"Bridge":"","Gateway":"","IPAddress":"","IPPrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"true","ProcessLabel":"","ResolvConfPath":"","State":{"ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
|
61
57
|
http_version:
|
62
|
-
recorded_at:
|
63
|
-
|
58
|
+
recorded_at: Mon, 01 Dec 2014 18:07:39 GMT
|
59
|
+
- request:
|
60
|
+
method: delete
|
61
|
+
uri: "<DOCKER_HOST>/v1.15/containers/9bf359072de70ec2cca7c47eaf6c28751c7b924f9bc221b1f7af5818ed249f1b"
|
62
|
+
body:
|
63
|
+
encoding: US-ASCII
|
64
|
+
string: ''
|
65
|
+
headers:
|
66
|
+
User-Agent:
|
67
|
+
- Swipely/Docker-API 1.15.0
|
68
|
+
Content-Type:
|
69
|
+
- text/plain
|
70
|
+
response:
|
71
|
+
status:
|
72
|
+
code: 204
|
73
|
+
message:
|
74
|
+
headers:
|
75
|
+
Date:
|
76
|
+
- Mon, 01 Dec 2014 18:07:39 GMT
|
77
|
+
body:
|
78
|
+
encoding: UTF-8
|
79
|
+
string: ''
|
80
|
+
http_version:
|
81
|
+
recorded_at: Mon, 01 Dec 2014 18:07:39 GMT
|
82
|
+
recorded_with: VCR 2.9.3
|