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
@@ -0,0 +1,134 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=debian%3Awheezy"
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Swipely/Docker-API 1.15.0
|
12
|
+
Content-Type:
|
13
|
+
- text/plain
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message:
|
18
|
+
headers:
|
19
|
+
Content-Type:
|
20
|
+
- application/json
|
21
|
+
Date:
|
22
|
+
- Mon, 01 Dec 2014 18:07:43 GMT
|
23
|
+
body:
|
24
|
+
encoding: UTF-8
|
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"
|
30
|
+
http_version:
|
31
|
+
recorded_at: Mon, 01 Dec 2014 18:07:43 GMT
|
32
|
+
- request:
|
33
|
+
method: post
|
34
|
+
uri: "<DOCKER_HOST>/v1.15/containers/create"
|
35
|
+
body:
|
36
|
+
encoding: UTF-8
|
37
|
+
string: '{"Image":"f6fab3b798be","Cmd":["touch","/test"]}'
|
38
|
+
headers:
|
39
|
+
User-Agent:
|
40
|
+
- Swipely/Docker-API 1.15.0
|
41
|
+
Content-Type:
|
42
|
+
- application/json
|
43
|
+
response:
|
44
|
+
status:
|
45
|
+
code: 201
|
46
|
+
message:
|
47
|
+
headers:
|
48
|
+
Content-Type:
|
49
|
+
- application/json
|
50
|
+
Date:
|
51
|
+
- Mon, 01 Dec 2014 18:07:43 GMT
|
52
|
+
Content-Length:
|
53
|
+
- '90'
|
54
|
+
body:
|
55
|
+
encoding: UTF-8
|
56
|
+
string: |
|
57
|
+
{"Id":"38076d54d70f119e2b3345d6359605e9777bac36bea68facee102409d7a4c0d3","Warnings":null}
|
58
|
+
http_version:
|
59
|
+
recorded_at: Mon, 01 Dec 2014 18:07:43 GMT
|
60
|
+
- request:
|
61
|
+
method: post
|
62
|
+
uri: "<DOCKER_HOST>/v1.15/containers/38076d54d70f119e2b3345d6359605e9777bac36bea68facee102409d7a4c0d3/start"
|
63
|
+
body:
|
64
|
+
encoding: UTF-8
|
65
|
+
string: "{}"
|
66
|
+
headers:
|
67
|
+
User-Agent:
|
68
|
+
- Swipely/Docker-API 1.15.0
|
69
|
+
Content-Type:
|
70
|
+
- application/json
|
71
|
+
response:
|
72
|
+
status:
|
73
|
+
code: 204
|
74
|
+
message:
|
75
|
+
headers:
|
76
|
+
Date:
|
77
|
+
- Mon, 01 Dec 2014 18:07:44 GMT
|
78
|
+
body:
|
79
|
+
encoding: UTF-8
|
80
|
+
string: ''
|
81
|
+
http_version:
|
82
|
+
recorded_at: Mon, 01 Dec 2014 18:07:44 GMT
|
83
|
+
- request:
|
84
|
+
method: post
|
85
|
+
uri: "<DOCKER_HOST>/v1.15/containers/38076d54d70f119e2b3345d6359605e9777bac36bea68facee102409d7a4c0d3/wait"
|
86
|
+
body:
|
87
|
+
encoding: US-ASCII
|
88
|
+
string: ''
|
89
|
+
headers:
|
90
|
+
User-Agent:
|
91
|
+
- Swipely/Docker-API 1.15.0
|
92
|
+
Content-Type:
|
93
|
+
- text/plain
|
94
|
+
response:
|
95
|
+
status:
|
96
|
+
code: 200
|
97
|
+
message:
|
98
|
+
headers:
|
99
|
+
Content-Type:
|
100
|
+
- application/json
|
101
|
+
Date:
|
102
|
+
- Mon, 01 Dec 2014 18:07:44 GMT
|
103
|
+
Content-Length:
|
104
|
+
- '17'
|
105
|
+
body:
|
106
|
+
encoding: UTF-8
|
107
|
+
string: |
|
108
|
+
{"StatusCode":0}
|
109
|
+
http_version:
|
110
|
+
recorded_at: Mon, 01 Dec 2014 18:07:44 GMT
|
111
|
+
- request:
|
112
|
+
method: delete
|
113
|
+
uri: "<DOCKER_HOST>/v1.15/containers/38076d54d70f119e2b3345d6359605e9777bac36bea68facee102409d7a4c0d3"
|
114
|
+
body:
|
115
|
+
encoding: US-ASCII
|
116
|
+
string: ''
|
117
|
+
headers:
|
118
|
+
User-Agent:
|
119
|
+
- Swipely/Docker-API 1.15.0
|
120
|
+
Content-Type:
|
121
|
+
- text/plain
|
122
|
+
response:
|
123
|
+
status:
|
124
|
+
code: 204
|
125
|
+
message:
|
126
|
+
headers:
|
127
|
+
Date:
|
128
|
+
- Mon, 01 Dec 2014 18:07:44 GMT
|
129
|
+
body:
|
130
|
+
encoding: UTF-8
|
131
|
+
string: ''
|
132
|
+
http_version:
|
133
|
+
recorded_at: Mon, 01 Dec 2014 18:07:44 GMT
|
134
|
+
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/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:45 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\":525360,\"total\":94863360,\"start\":1414450440},\"progress\":\"[\\u003e
|
31
|
-
\ ] 525.4 kB/94.86 MB 2m28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1066032,\"total\":94863360,\"start\":1414450440},\"progress\":\"[\\u003e
|
32
|
-
\ ] 1.066 MB/94.86 MB 1m21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1606704,\"total\":94863360,\"start\":1414450440},\"progress\":\"[\\u003e
|
33
|
-
\ ] 1.607 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2142584,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=\\u003e
|
34
|
-
\ ] 2.143 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2683256,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=\\u003e
|
35
|
-
\ ] 2.683 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3223928,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=\\u003e
|
36
|
-
\ ] 3.224 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3764600,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=\\u003e
|
37
|
-
\ ] 3.765 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4305272,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==\\u003e
|
38
|
-
\ ] 4.305 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4845944,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==\\u003e
|
39
|
-
\ ] 4.846 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5386616,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==\\u003e
|
40
|
-
\ ] 5.387 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5927288,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===\\u003e
|
41
|
-
\ ] 5.927 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6467960,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===\\u003e
|
42
|
-
\ ] 6.468 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7008632,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===\\u003e
|
43
|
-
\ ] 7.009 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7549304,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===\\u003e
|
44
|
-
\ ] 7.549 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8089976,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====\\u003e
|
45
|
-
\ ] 8.09 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8630648,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====\\u003e
|
46
|
-
\ ] 8.631 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9171320,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====\\u003e
|
47
|
-
\ ] 9.171 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9711992,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====\\u003e
|
48
|
-
\ ] 9.712 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10252664,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====\\u003e
|
49
|
-
\ ] 10.25 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10793336,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====\\u003e
|
50
|
-
\ ] 10.79 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11334008,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====\\u003e
|
51
|
-
\ ] 11.33 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11874680,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======\\u003e
|
52
|
-
\ ] 11.87 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12415352,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======\\u003e
|
53
|
-
\ ] 12.42 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12956024,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======\\u003e
|
54
|
-
\ ] 12.96 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13496696,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======\\u003e
|
55
|
-
\ ] 13.5 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14037368,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======\\u003e
|
56
|
-
\ ] 14.04 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14578040,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======\\u003e
|
57
|
-
\ ] 14.58 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15118712,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======\\u003e
|
58
|
-
\ ] 15.12 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15659384,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========\\u003e
|
59
|
-
\ ] 15.66 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16200056,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========\\u003e
|
60
|
-
\ ] 16.2 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16740728,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========\\u003e
|
61
|
-
\ ] 16.74 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17281400,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========\\u003e
|
62
|
-
\ ] 17.28 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17822072,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========\\u003e
|
63
|
-
\ ] 17.82 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18362744,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========\\u003e
|
64
|
-
\ ] 18.36 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18903416,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========\\u003e
|
65
|
-
\ ] 18.9 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19444088,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========\\u003e
|
66
|
-
\ ] 19.44 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19984760,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========\\u003e
|
67
|
-
\ ] 19.98 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20525432,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========\\u003e
|
68
|
-
\ ] 20.53 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21066104,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========\\u003e
|
69
|
-
\ ] 21.07 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21606776,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========\\u003e
|
70
|
-
\ ] 21.61 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22147448,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========\\u003e
|
71
|
-
\ ] 22.15 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22688120,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========\\u003e
|
72
|
-
\ ] 22.69 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23228792,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============\\u003e
|
73
|
-
\ ] 23.23 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23769464,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============\\u003e
|
74
|
-
\ ] 23.77 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24310136,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============\\u003e
|
75
|
-
\ ] 24.31 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24850808,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============\\u003e
|
76
|
-
\ ] 24.85 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25391480,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============\\u003e
|
77
|
-
\ ] 25.39 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25932152,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============\\u003e
|
78
|
-
\ ] 25.93 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26462411,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============\\u003e
|
79
|
-
\ ] 26.46 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27001259,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============\\u003e
|
80
|
-
\ ] 27 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27541931,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============\\u003e
|
81
|
-
\ ] 27.54 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28078755,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============\\u003e
|
82
|
-
\ ] 28.08 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28606931,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============\\u003e
|
83
|
-
\ ] 28.61 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29147603,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============\\u003e
|
84
|
-
\ ] 29.15 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29688275,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============\\u003e
|
85
|
-
\ ] 29.69 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30228947,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============\\u003e
|
86
|
-
\ ] 30.23 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30758279,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================\\u003e
|
87
|
-
\ ] 30.76 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31298951,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================\\u003e
|
88
|
-
\ ] 31.3 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31839623,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================\\u003e
|
89
|
-
\ ] 31.84 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32380295,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================\\u003e
|
90
|
-
\ ] 32.38 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32914003,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================\\u003e
|
91
|
-
\ ] 32.91 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33454675,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================\\u003e
|
92
|
-
\ ] 33.45 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33995347,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================\\u003e
|
93
|
-
\ ] 34 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34536019,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================\\u003e
|
94
|
-
\ ] 34.54 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35076691,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================\\u003e
|
95
|
-
\ ] 35.08 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35617363,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================\\u003e
|
96
|
-
\ ] 35.62 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36158035,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================\\u003e
|
97
|
-
\ ] 36.16 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36698707,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================\\u003e
|
98
|
-
\ ] 36.7 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37239379,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================\\u003e
|
99
|
-
\ ] 37.24 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37780051,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================\\u003e
|
100
|
-
\ ] 37.78 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38320723,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================\\u003e
|
101
|
-
\ ] 38.32 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38848419,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================\\u003e
|
102
|
-
\ ] 38.85 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39389091,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================\\u003e
|
103
|
-
\ ] 39.39 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39929763,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================\\u003e
|
104
|
-
\ ] 39.93 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40470435,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================\\u003e
|
105
|
-
\ ] 40.47 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41011107,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================\\u003e
|
106
|
-
\ ] 41.01 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41551779,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================\\u003e
|
107
|
-
\ ] 41.55 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42092451,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================\\u003e
|
108
|
-
\ ] 42.09 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42633123,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================\\u003e
|
109
|
-
\ ] 42.63 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43173795,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================\\u003e
|
110
|
-
\ ] 43.17 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43714467,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================\\u003e
|
111
|
-
\ ] 43.71 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44255139,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================\\u003e
|
112
|
-
\ ] 44.26 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44795811,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================\\u003e
|
113
|
-
\ ] 44.8 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45336483,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================\\u003e
|
114
|
-
\ ] 45.34 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45861938,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================\\u003e
|
115
|
-
\ ] 45.86 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46402610,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================\\u003e
|
116
|
-
\ ] 46.4 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46943282,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================\\u003e
|
117
|
-
\ ] 46.94 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47483954,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================\\u003e
|
118
|
-
\ ] 47.48 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48024626,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================\\u003e
|
119
|
-
\ ] 48.02 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48565298,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================\\u003e
|
120
|
-
\ ] 48.57 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49105970,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================\\u003e
|
121
|
-
\ ] 49.11 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49646642,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================\\u003e
|
122
|
-
\ ] 49.65 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50187314,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================\\u003e
|
123
|
-
\ ] 50.19 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50727986,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================\\u003e
|
124
|
-
\ ] 50.73 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51268658,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================\\u003e
|
125
|
-
\ ] 51.27 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51809330,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================\\u003e
|
126
|
-
\ ] 51.81 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52350002,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================\\u003e
|
127
|
-
\ ] 52.35 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52885971,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================\\u003e
|
128
|
-
\ ] 52.89 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53426643,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================\\u003e
|
129
|
-
\ ] 53.43 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53967315,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================\\u003e
|
130
|
-
\ ] 53.97 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54493387,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================\\u003e
|
131
|
-
\ ] 54.49 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55034059,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================\\u003e
|
132
|
-
\ ] 55.03 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55574731,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================\\u003e
|
133
|
-
\ ] 55.57 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56115403,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================\\u003e
|
134
|
-
\ ] 56.12 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56656075,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================\\u003e
|
135
|
-
\ ] 56.66 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57196747,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================\\u003e
|
136
|
-
\ ] 57.2 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57737419,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================\\u003e
|
137
|
-
\ ] 57.74 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58278091,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================\\u003e
|
138
|
-
\ ] 58.28 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58818763,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================\\u003e
|
139
|
-
\ ] 58.82 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59355179,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================\\u003e
|
140
|
-
\ ] 59.36 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59884803,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================\\u003e
|
141
|
-
\ ] 59.88 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60425475,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================\\u003e
|
142
|
-
\ ] 60.43 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60966147,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================\\u003e
|
143
|
-
\ ] 60.97 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61506819,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================\\u003e
|
144
|
-
\ ] 61.51 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62047491,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================\\u003e
|
145
|
-
\ ] 62.05 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62588163,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================\\u003e
|
146
|
-
\ ] 62.59 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63126819,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================\\u003e
|
147
|
-
\ ] 63.13 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63667491,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================\\u003e
|
148
|
-
\ ] 63.67 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64208163,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================\\u003e
|
149
|
-
\ ] 64.21 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64748835,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================\\u003e
|
150
|
-
\ ] 64.75 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65289507,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================\\u003e
|
151
|
-
\ ] 65.29 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65830179,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================\\u003e
|
152
|
-
\ ] 65.83 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66370851,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================\\u003e
|
153
|
-
\ ] 66.37 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66911523,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================================\\u003e
|
154
|
-
\ ] 66.91 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67452195,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================================\\u003e
|
155
|
-
\ ] 67.45 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67992867,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================================\\u003e
|
156
|
-
\ ] 67.99 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68533539,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================================\\u003e
|
157
|
-
\ ] 68.53 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69074211,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================================\\u003e
|
158
|
-
\ ] 69.07 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69614883,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================================\\u003e
|
159
|
-
\ ] 69.61 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70155555,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================================\\u003e
|
160
|
-
\ ] 70.16 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70696227,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================================\\u003e
|
161
|
-
\ ] 70.7 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71236899,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================================\\u003e
|
162
|
-
\ ] 71.24 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71777571,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================================\\u003e
|
163
|
-
\ ] 71.78 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72318243,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================================\\u003e
|
164
|
-
\ ] 72.32 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72858915,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================================\\u003e
|
165
|
-
\ ] 72.86 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73399587,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================================\\u003e
|
166
|
-
\ ] 73.4 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73940259,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================================\\u003e
|
167
|
-
\ ] 73.94 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74480931,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================================\\u003e
|
168
|
-
\ ] 74.48 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75021603,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================================\\u003e
|
169
|
-
\ ] 75.02 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75562275,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================================\\u003e
|
170
|
-
\ ] 75.56 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76090760,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================================\\u003e
|
171
|
-
\ ] 76.09 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76631431,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================================\\u003e
|
172
|
-
\ ] 76.63 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77172103,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================================\\u003e
|
173
|
-
\ ] 77.17 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77712775,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================================\\u003e
|
174
|
-
\ ] 77.71 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78253447,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================================\\u003e
|
175
|
-
\ ] 78.25 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78794119,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================================\\u003e
|
176
|
-
\ ] 78.79 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79334791,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================================\\u003e
|
177
|
-
\ ] 79.33 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79875463,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================================\\u003e
|
178
|
-
\ ] 79.88 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80416135,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================================\\u003e
|
179
|
-
\ ] 80.42 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80956807,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================================\\u003e
|
180
|
-
\ ] 80.96 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81497479,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================================\\u003e
|
181
|
-
\ ] 81.5 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82038151,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================================\\u003e
|
182
|
-
\ ] 82.04 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82578823,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================================\\u003e
|
183
|
-
\ ] 82.58 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83119495,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================================\\u003e
|
184
|
-
\ ] 83.12 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83660167,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================================\\u003e
|
185
|
-
\ ] 83.66 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84200839,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================================\\u003e
|
186
|
-
\ ] 84.2 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84741511,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================================\\u003e
|
187
|
-
\ ] 84.74 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85282183,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================================\\u003e
|
188
|
-
\ ] 85.28 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85822855,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================================\\u003e
|
189
|
-
\ ] 85.82 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86363527,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================================\\u003e
|
190
|
-
\ ] 86.36 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86904199,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================================\\u003e
|
191
|
-
\ ] 86.9 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87444871,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================================\\u003e
|
192
|
-
\ ] 87.44 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87985543,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================================\\u003e
|
193
|
-
\ ] 87.99 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88526215,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================================\\u003e
|
194
|
-
\ ] 88.53 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89066887,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================================\\u003e
|
195
|
-
\ ] 89.07 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89607559,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================================\\u003e
|
196
|
-
\ ] 89.61 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90148231,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================================\\u003e
|
197
|
-
\ ] 90.15 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90688903,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================================\\u003e
|
198
|
-
\ ] 90.69 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91229575,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================================\\u003e
|
199
|
-
\ ] 91.23 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91770247,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================================\\u003e
|
200
|
-
\ ] 91.77 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92310919,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================================\\u003e
|
201
|
-
\ ] 92.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92851591,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================================\\u003e
|
202
|
-
\ ] 92.85 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93392263,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================================\\u003e
|
203
|
-
] 93.39 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93932935,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================================\\u003e
|
204
|
-
] 93.93 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94473607,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================================\\u003e
|
205
|
-
] 94.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414450440},\"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\":1414450461},\"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:45 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:46 GMT
|
235
52
|
Content-Length:
|
236
53
|
- '90'
|
237
54
|
body:
|
238
55
|
encoding: UTF-8
|
239
56
|
string: |
|
240
|
-
{"Id":"
|
57
|
+
{"Id":"e83576451b0fa9dd7551640d45dd242d4377b610a06809b426c25c248cb0a46a","Warnings":null}
|
241
58
|
http_version:
|
242
|
-
recorded_at: Mon,
|
59
|
+
recorded_at: Mon, 01 Dec 2014 18:07:46 GMT
|
243
60
|
- request:
|
244
61
|
method: post
|
245
|
-
uri:
|
62
|
+
uri: "<DOCKER_HOST>/v1.15/containers/e83576451b0fa9dd7551640d45dd242d4377b610a06809b426c25c248cb0a46a/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:46 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:46 GMT
|
266
83
|
- request:
|
267
84
|
method: post
|
268
|
-
uri:
|
85
|
+
uri: "<DOCKER_HOST>/v1.15/containers/e83576451b0fa9dd7551640d45dd242d4377b610a06809b426c25c248cb0a46a/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:46 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:46 GMT
|
294
111
|
- request:
|
295
112
|
method: post
|
296
|
-
uri:
|
113
|
+
uri: "<DOCKER_HOST>/v1.15/containers/e83576451b0fa9dd7551640d45dd242d4377b610a06809b426c25c248cb0a46a/copy"
|
297
114
|
body:
|
298
115
|
encoding: UTF-8
|
299
|
-
string: '{"Resource":"/etc/
|
116
|
+
string: '{"Resource":"/etc/logrotate.d"}'
|
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,14 +127,14 @@ http_interactions:
|
|
310
127
|
Content-Type:
|
311
128
|
- application/x-tar
|
312
129
|
Date:
|
313
|
-
- Mon,
|
130
|
+
- Mon, 01 Dec 2014 18:07:46 GMT
|
314
131
|
body:
|
315
132
|
encoding: UTF-8
|
316
133
|
string: !binary |-
|
317
|
-
|
134
|
+
bG9ncm90YXRlLmQvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
318
135
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
319
136
|
AAAAAAAAAAAAADAwNDA3NTUAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDAw
|
320
|
-
|
137
|
+
ADEyNDI2NTE0MjMyADAxMTQ3MwAgNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
321
138
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
322
139
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMAAAAAAA
|
323
140
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -325,10 +142,10 @@ http_interactions:
|
|
325
142
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
326
143
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
327
144
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
328
|
-
|
145
|
+
AAAAAAAAAAAAAAAAAAAAAABsb2dyb3RhdGUuZC9hcHQAAAAAAAAAAAAAAAAA
|
329
146
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
330
147
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDEwMDY0NAAwMDAwMDAwADAw
|
331
|
-
|
148
|
+
MDAwMDAAMDAwMDAwMDAyNTUAMTI0MTUxNzI2MjAAMDEyMjAwACAwAAAAAAAA
|
332
149
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
333
150
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
334
151
|
AAAAAHVzdGFyADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -336,56 +153,11 @@ http_interactions:
|
|
336
153
|
MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
337
154
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
338
155
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
YW5nZSBhbnkgb2YgdGhvc2Ugc2V0dGluZ3MsIHlvdSBzaG91bGQKIiBkbyBp
|
345
|
-
dCBpbiB0aGlzIGZpbGUgKC9ldGMvdmltL3ZpbXJjKSwgc2luY2UgZGViaWFu
|
346
|
-
LnZpbSB3aWxsIGJlIG92ZXJ3cml0dGVuCiIgZXZlcnl0aW1lIGFuIHVwZ3Jh
|
347
|
-
ZGUgb2YgdGhlIHZpbSBwYWNrYWdlcyBpcyBwZXJmb3JtZWQuICBJdCBpcyBy
|
348
|
-
ZWNvbW1lbmRlZCB0bwoiIG1ha2UgY2hhbmdlcyBhZnRlciBzb3VyY2luZyBk
|
349
|
-
ZWJpYW4udmltIHNpbmNlIGl0IGFsdGVycyB0aGUgdmFsdWUgb2YgdGhlCiIg
|
350
|
-
J2NvbXBhdGlibGUnIG9wdGlvbi4KCiIgVGhpcyBsaW5lIHNob3VsZCBub3Qg
|
351
|
-
YmUgcmVtb3ZlZCBhcyBpdCBlbnN1cmVzIHRoYXQgdmFyaW91cyBvcHRpb25z
|
352
|
-
IGFyZQoiIHByb3Blcmx5IHNldCB0byB3b3JrIHdpdGggdGhlIFZpbS1yZWxh
|
353
|
-
dGVkIHBhY2thZ2VzIGF2YWlsYWJsZSBpbiBEZWJpYW4uCnJ1bnRpbWUhIGRl
|
354
|
-
Ymlhbi52aW0KCiIgVW5jb21tZW50IHRoZSBuZXh0IGxpbmUgdG8gbWFrZSBW
|
355
|
-
aW0gbW9yZSBWaS1jb21wYXRpYmxlCiIgTk9URTogZGViaWFuLnZpbSBzZXRz
|
356
|
-
ICdub2NvbXBhdGlibGUnLiAgU2V0dGluZyAnY29tcGF0aWJsZScgY2hhbmdl
|
357
|
-
cyBudW1lcm91cwoiIG9wdGlvbnMsIHNvIGFueSBvdGhlciBvcHRpb25zIHNo
|
358
|
-
b3VsZCBiZSBzZXQgQUZURVIgc2V0dGluZyAnY29tcGF0aWJsZScuCiJzZXQg
|
359
|
-
Y29tcGF0aWJsZQoKIiBWaW01IGFuZCBsYXRlciB2ZXJzaW9ucyBzdXBwb3J0
|
360
|
-
IHN5bnRheCBoaWdobGlnaHRpbmcuIFVuY29tbWVudGluZyB0aGUgbmV4dAoi
|
361
|
-
IGxpbmUgZW5hYmxlcyBzeW50YXggaGlnaGxpZ2h0aW5nIGJ5IGRlZmF1bHQu
|
362
|
-
CmlmIGhhcygic3ludGF4IikKICBzeW50YXggb24KZW5kaWYKCiIgSWYgdXNp
|
363
|
-
bmcgYSBkYXJrIGJhY2tncm91bmQgd2l0aGluIHRoZSBlZGl0aW5nIGFyZWEg
|
364
|
-
YW5kIHN5bnRheCBoaWdobGlnaHRpbmcKIiB0dXJuIG9uIHRoaXMgb3B0aW9u
|
365
|
-
IGFzIHdlbGwKInNldCBiYWNrZ3JvdW5kPWRhcmsKCiIgVW5jb21tZW50IHRo
|
366
|
-
ZSBmb2xsb3dpbmcgdG8gaGF2ZSBWaW0ganVtcCB0byB0aGUgbGFzdCBwb3Np
|
367
|
-
dGlvbiB3aGVuCiIgcmVvcGVuaW5nIGEgZmlsZQoiaWYgaGFzKCJhdXRvY21k
|
368
|
-
IikKIiAgYXUgQnVmUmVhZFBvc3QgKiBpZiBsaW5lKCInXCIiKSA+IDEgJiYg
|
369
|
-
bGluZSgiJ1wiIikgPD0gbGluZSgiJCIpIHwgZXhlICJub3JtYWwhIGcnXCIi
|
370
|
-
IHwgZW5kaWYKImVuZGlmCgoiIFVuY29tbWVudCB0aGUgZm9sbG93aW5nIHRv
|
371
|
-
IGhhdmUgVmltIGxvYWQgaW5kZW50YXRpb24gcnVsZXMgYW5kIHBsdWdpbnMK
|
372
|
-
IiBhY2NvcmRpbmcgdG8gdGhlIGRldGVjdGVkIGZpbGV0eXBlLgoiaWYgaGFz
|
373
|
-
KCJhdXRvY21kIikKIiAgZmlsZXR5cGUgcGx1Z2luIGluZGVudCBvbgoiZW5k
|
374
|
-
aWYKCiIgVGhlIGZvbGxvd2luZyBhcmUgY29tbWVudGVkIG91dCBhcyB0aGV5
|
375
|
-
IGNhdXNlIHZpbSB0byBiZWhhdmUgYSBsb3QKIiBkaWZmZXJlbnRseSBmcm9t
|
376
|
-
IHJlZ3VsYXIgVmkuIFRoZXkgYXJlIGhpZ2hseSByZWNvbW1lbmRlZCB0aG91
|
377
|
-
Z2guCiJzZXQgc2hvd2NtZAkJIiBTaG93IChwYXJ0aWFsKSBjb21tYW5kIGlu
|
378
|
-
IHN0YXR1cyBsaW5lLgoic2V0IHNob3dtYXRjaAkJIiBTaG93IG1hdGNoaW5n
|
379
|
-
IGJyYWNrZXRzLgoic2V0IGlnbm9yZWNhc2UJCSIgRG8gY2FzZSBpbnNlbnNp
|
380
|
-
dGl2ZSBtYXRjaGluZwoic2V0IHNtYXJ0Y2FzZQkJIiBEbyBzbWFydCBjYXNl
|
381
|
-
IG1hdGNoaW5nCiJzZXQgaW5jc2VhcmNoCQkiIEluY3JlbWVudGFsIHNlYXJj
|
382
|
-
aAoic2V0IGF1dG93cml0ZQkJIiBBdXRvbWF0aWNhbGx5IHNhdmUgYmVmb3Jl
|
383
|
-
IGNvbW1hbmRzIGxpa2UgOm5leHQgYW5kIDptYWtlCiJzZXQgaGlkZGVuICAg
|
384
|
-
ICAgICAgICAgICIgSGlkZSBidWZmZXJzIHdoZW4gdGhleSBhcmUgYWJhbmRv
|
385
|
-
bmVkCiJzZXQgbW91c2U9YQkJIiBFbmFibGUgbW91c2UgdXNhZ2UgKGFsbCBt
|
386
|
-
b2RlcykKCiIgU291cmNlIGEgZ2xvYmFsIGNvbmZpZ3VyYXRpb24gZmlsZSBp
|
387
|
-
ZiBhdmFpbGFibGUKaWYgZmlsZXJlYWRhYmxlKCIvZXRjL3ZpbS92aW1yYy5s
|
388
|
-
b2NhbCIpCiAgc291cmNlIC9ldGMvdmltL3ZpbXJjLmxvY2FsCmVuZGlmCgoA
|
156
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC92YXIvbG9nL2Fw
|
157
|
+
dC90ZXJtLmxvZyB7CiAgcm90YXRlIDEyCiAgbW9udGhseQogIGNvbXByZXNz
|
158
|
+
CiAgbWlzc2luZ29rCiAgbm90aWZlbXB0eQp9CgovdmFyL2xvZy9hcHQvaGlz
|
159
|
+
dG9yeS5sb2cgewogIHJvdGF0ZSAxMgogIG1vbnRobHkKICBjb21wcmVzcwog
|
160
|
+
IG1pc3NpbmdvawogIG5vdGlmZW1wdHkKfQoKAAAAAAAAAAAAAAAAAAAAAAAA
|
389
161
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
390
162
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
391
163
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -393,35 +165,23 @@ http_interactions:
|
|
393
165
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
394
166
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
395
167
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
396
|
-
|
397
|
-
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
398
|
-
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDEwMDY0
|
399
|
-
NAAwMDAwMDAwADAwMDAwMDAAMDAwMDAwMDEyMjYAMTIwMTc1MDYzNDcAMDEy
|
400
|
-
MDczACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
401
|
-
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
402
|
-
AAAAAAAAAAAAAAAAAAAAAHVzdGFyADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
403
|
-
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAw
|
404
|
-
MDAwMDAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
168
|
+
AAAAAAAAbG9ncm90YXRlLmQvZHBrZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
405
169
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
170
|
+
AAAAAAAAAAAAAAAAAAAAADAxMDA2NDQAMDAwMDAwMAAwMDAwMDAwADAwMDAw
|
171
|
+
MDAwMzUwADEyMzQ0MTU1MDYyADAxMjMzNwAgMAAAAAAAAAAAAAAAAAAAAAAA
|
406
172
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
173
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAw
|
174
|
+
MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
175
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwADAwMDAwMDAAAAAAAAAAAAAA
|
407
176
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
408
|
-
ACIgVmltIGNvbmZpZ3VyYXRpb24gZmlsZSwgaW4gZWZmZWN0IHdoZW4gaW52
|
409
|
-
b2tlZCBhcyAidmkiLiBUaGUgYWltIG9mIHRoaXMKIiBjb25maWd1cmF0aW9u
|
410
|
-
IGZpbGUgaXMgdG8gcHJvdmlkZSBhIFZpbSBlbnZpcm9ubWVudCBhcyBjb21w
|
411
|
-
YXRpYmxlIHdpdGggdGhlCiIgb3JpZ2luYWwgdmkgYXMgcG9zc2libGUuIE5v
|
412
|
-
dGUgdGhhdCB+Ly52aW1yYyBjb25maWd1cmF0aW9uIGZpbGVzIGFzIG90aGVy
|
413
|
-
CiIgY29uZmlndXJhdGlvbiBmaWxlcyBpbiB0aGUgcnVudGltZXBhdGggYXJl
|
414
|
-
IHN0aWxsIHNvdXJjZWQuCiIgV2hlbiBWaW0gaXMgaW52b2tlZCBkaWZmZXJl
|
415
|
-
bnRseSAoInZpbSIsICJ2aWV3IiwgImV2aW0iLCAuLi4pIHRoaXMgZmlsZSBp
|
416
|
-
cwoiIF9ub3RfIHNvdXJjZWQ7IC9ldGMvdmltL3ZpbXJjIGFuZC9vciAvZXRj
|
417
|
-
L3ZpbS9ndmltcmMgYXJlLgoKIiBEZWJpYW4gc3lzdGVtLXdpZGUgZGVmYXVs
|
418
|
-
dCBjb25maWd1cmF0aW9uIFZpbQpzZXQgcnVudGltZXBhdGg9fi8udmltLC92
|
419
|
-
YXIvbGliL3ZpbS9hZGRvbnMsL3Vzci9zaGFyZS92aW0vdmltZmlsZXMsL3Vz
|
420
|
-
ci9zaGFyZS92aW0vdmltNzMsL3Vzci9zaGFyZS92aW0vdmltZmlsZXMvYWZ0
|
421
|
-
ZXIsL3Zhci9saWIvdmltL2FkZG9ucy9hZnRlcix+Ly52aW0vYWZ0ZXIKCnNl
|
422
|
-
dCBjb21wYXRpYmxlCgoiIHZpbTogc2V0IGZ0PXZpbToKAAAAAAAAAAAAAAAA
|
423
177
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
424
178
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
179
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvdmFyL2xvZy9kcGtnLmxvZyB7Cglt
|
180
|
+
b250aGx5Cglyb3RhdGUgMTIKCWNvbXByZXNzCglkZWxheWNvbXByZXNzCglt
|
181
|
+
aXNzaW5nb2sKCW5vdGlmZW1wdHkKCWNyZWF0ZSA2NDQgcm9vdCByb290Cn0K
|
182
|
+
L3Zhci9sb2cvYWx0ZXJuYXRpdmVzLmxvZyB7Cgltb250aGx5Cglyb3RhdGUg
|
183
|
+
MTIKCWNvbXByZXNzCglkZWxheWNvbXByZXNzCgltaXNzaW5nb2sKCW5vdGlm
|
184
|
+
ZW1wdHkKCWNyZWF0ZSA2NDQgcm9vdCByb290Cn0KAAAAAAAAAAAAAAAAAAAA
|
425
185
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
426
186
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
427
187
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -450,7 +210,30 @@ http_interactions:
|
|
450
210
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
451
211
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
452
212
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
453
|
-
|
213
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
214
|
+
http_version:
|
215
|
+
recorded_at: Mon, 01 Dec 2014 18:07:46 GMT
|
216
|
+
- request:
|
217
|
+
method: delete
|
218
|
+
uri: "<DOCKER_HOST>/v1.15/containers/e83576451b0fa9dd7551640d45dd242d4377b610a06809b426c25c248cb0a46a"
|
219
|
+
body:
|
220
|
+
encoding: US-ASCII
|
221
|
+
string: ''
|
222
|
+
headers:
|
223
|
+
User-Agent:
|
224
|
+
- Swipely/Docker-API 1.15.0
|
225
|
+
Content-Type:
|
226
|
+
- text/plain
|
227
|
+
response:
|
228
|
+
status:
|
229
|
+
code: 204
|
230
|
+
message:
|
231
|
+
headers:
|
232
|
+
Date:
|
233
|
+
- Mon, 01 Dec 2014 18:07:46 GMT
|
234
|
+
body:
|
235
|
+
encoding: UTF-8
|
236
|
+
string: ''
|
454
237
|
http_version:
|
455
|
-
recorded_at: Mon,
|
238
|
+
recorded_at: Mon, 01 Dec 2014 18:07:46 GMT
|
456
239
|
recorded_with: VCR 2.9.3
|