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,160 @@
|
|
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:08:51 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:08:51 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":["pwd"]}'
|
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:08:51 GMT
|
52
|
+
Content-Length:
|
53
|
+
- '90'
|
54
|
+
body:
|
55
|
+
encoding: UTF-8
|
56
|
+
string: |
|
57
|
+
{"Id":"d29c84c41fea95f38158d94799db034bfcf5f285df6e2ec51521a9f8fb36db4c","Warnings":null}
|
58
|
+
http_version:
|
59
|
+
recorded_at: Mon, 01 Dec 2014 18:08:51 GMT
|
60
|
+
- request:
|
61
|
+
method: post
|
62
|
+
uri: "<DOCKER_HOST>/v1.15/containers/d29c84c41fea95f38158d94799db034bfcf5f285df6e2ec51521a9f8fb36db4c/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:08:51 GMT
|
78
|
+
body:
|
79
|
+
encoding: UTF-8
|
80
|
+
string: ''
|
81
|
+
http_version:
|
82
|
+
recorded_at: Mon, 01 Dec 2014 18:08:51 GMT
|
83
|
+
- request:
|
84
|
+
method: get
|
85
|
+
uri: "<DOCKER_HOST>/v1.15/containers/d29c84c41fea95f38158d94799db034bfcf5f285df6e2ec51521a9f8fb36db4c/logs?stdout=true"
|
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
|
+
Date:
|
100
|
+
- Mon, 01 Dec 2014 18:08:51 GMT
|
101
|
+
Content-Type:
|
102
|
+
- application/octet-stream
|
103
|
+
body:
|
104
|
+
encoding: UTF-8
|
105
|
+
string: !binary |-
|
106
|
+
AQAAAAAAAAIvCg==
|
107
|
+
http_version:
|
108
|
+
recorded_at: Mon, 01 Dec 2014 18:08:51 GMT
|
109
|
+
- request:
|
110
|
+
method: post
|
111
|
+
uri: "<DOCKER_HOST>/v1.15/containers/d29c84c41fea95f38158d94799db034bfcf5f285df6e2ec51521a9f8fb36db4c/wait"
|
112
|
+
body:
|
113
|
+
encoding: US-ASCII
|
114
|
+
string: ''
|
115
|
+
headers:
|
116
|
+
User-Agent:
|
117
|
+
- Swipely/Docker-API 1.15.0
|
118
|
+
Content-Type:
|
119
|
+
- text/plain
|
120
|
+
response:
|
121
|
+
status:
|
122
|
+
code: 200
|
123
|
+
message:
|
124
|
+
headers:
|
125
|
+
Content-Type:
|
126
|
+
- application/json
|
127
|
+
Date:
|
128
|
+
- Mon, 01 Dec 2014 18:08:51 GMT
|
129
|
+
Content-Length:
|
130
|
+
- '17'
|
131
|
+
body:
|
132
|
+
encoding: UTF-8
|
133
|
+
string: |
|
134
|
+
{"StatusCode":0}
|
135
|
+
http_version:
|
136
|
+
recorded_at: Mon, 01 Dec 2014 18:08:51 GMT
|
137
|
+
- request:
|
138
|
+
method: delete
|
139
|
+
uri: "<DOCKER_HOST>/v1.15/containers/d29c84c41fea95f38158d94799db034bfcf5f285df6e2ec51521a9f8fb36db4c"
|
140
|
+
body:
|
141
|
+
encoding: US-ASCII
|
142
|
+
string: ''
|
143
|
+
headers:
|
144
|
+
User-Agent:
|
145
|
+
- Swipely/Docker-API 1.15.0
|
146
|
+
Content-Type:
|
147
|
+
- text/plain
|
148
|
+
response:
|
149
|
+
status:
|
150
|
+
code: 204
|
151
|
+
message:
|
152
|
+
headers:
|
153
|
+
Date:
|
154
|
+
- Mon, 01 Dec 2014 18:08:51 GMT
|
155
|
+
body:
|
156
|
+
encoding: UTF-8
|
157
|
+
string: ''
|
158
|
+
http_version:
|
159
|
+
recorded_at: Mon, 01 Dec 2014 18:08:51 GMT
|
160
|
+
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=scratch"
|
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,27 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
- Mon,
|
22
|
+
- Mon, 01 Dec 2014 18:08:49 GMT
|
23
23
|
body:
|
24
24
|
encoding: UTF-8
|
25
|
-
string: "{\"status\":\"Pulling repository
|
26
|
-
(
|
27
|
-
image (
|
28
|
-
dependent layers\",\"progressDetail\":{},\"id\":\"
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
\ ] 1.066 MB/94.86 MB 1m4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1606359,\"total\":94863360,\"start\":1414452380},\"progress\":\"[\\u003e
|
33
|
-
\ ] 1.606 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2147031,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=\\u003e
|
34
|
-
\ ] 2.147 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2687703,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=\\u003e
|
35
|
-
\ ] 2.688 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3228375,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=\\u003e
|
36
|
-
\ ] 3.228 MB/94.86 MB 51s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3769047,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=\\u003e
|
37
|
-
\ ] 3.769 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4309719,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==\\u003e
|
38
|
-
\ ] 4.31 MB/94.86 MB 52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4850391,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==\\u003e
|
39
|
-
\ ] 4.85 MB/94.86 MB 51s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5391063,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==\\u003e
|
40
|
-
\ ] 5.391 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5931735,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===\\u003e
|
41
|
-
\ ] 5.932 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6472407,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===\\u003e
|
42
|
-
\ ] 6.472 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7013079,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===\\u003e
|
43
|
-
\ ] 7.013 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7553751,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===\\u003e
|
44
|
-
\ ] 7.554 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8094423,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====\\u003e
|
45
|
-
\ ] 8.094 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8635095,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====\\u003e
|
46
|
-
\ ] 8.635 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9175767,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====\\u003e
|
47
|
-
\ ] 9.176 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9716439,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====\\u003e
|
48
|
-
\ ] 9.716 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10257111,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====\\u003e
|
49
|
-
\ ] 10.26 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10797783,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====\\u003e
|
50
|
-
\ ] 10.8 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11338455,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====\\u003e
|
51
|
-
\ ] 11.34 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11879127,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======\\u003e
|
52
|
-
\ ] 11.88 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12419799,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======\\u003e
|
53
|
-
\ ] 12.42 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12960471,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======\\u003e
|
54
|
-
\ ] 12.96 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13501143,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======\\u003e
|
55
|
-
\ ] 13.5 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14041815,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======\\u003e
|
56
|
-
\ ] 14.04 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14582487,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======\\u003e
|
57
|
-
\ ] 14.58 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15123159,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======\\u003e
|
58
|
-
\ ] 15.12 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15663831,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========\\u003e
|
59
|
-
\ ] 15.66 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16204503,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========\\u003e
|
60
|
-
\ ] 16.2 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16745175,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========\\u003e
|
61
|
-
\ ] 16.75 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17285847,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========\\u003e
|
62
|
-
\ ] 17.29 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17826519,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========\\u003e
|
63
|
-
\ ] 17.83 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18367191,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========\\u003e
|
64
|
-
\ ] 18.37 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18907863,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========\\u003e
|
65
|
-
\ ] 18.91 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19448535,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========\\u003e
|
66
|
-
\ ] 19.45 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19989207,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========\\u003e
|
67
|
-
\ ] 19.99 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20529879,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========\\u003e
|
68
|
-
\ ] 20.53 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21070551,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========\\u003e
|
69
|
-
\ ] 21.07 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21611223,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========\\u003e
|
70
|
-
\ ] 21.61 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22151895,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========\\u003e
|
71
|
-
\ ] 22.15 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22692567,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========\\u003e
|
72
|
-
\ ] 22.69 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23233239,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============\\u003e
|
73
|
-
\ ] 23.23 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23773911,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============\\u003e
|
74
|
-
\ ] 23.77 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24314583,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============\\u003e
|
75
|
-
\ ] 24.31 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24855255,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============\\u003e
|
76
|
-
\ ] 24.86 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25395927,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============\\u003e
|
77
|
-
\ ] 25.4 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25936599,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============\\u003e
|
78
|
-
\ ] 25.94 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26477271,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============\\u003e
|
79
|
-
\ ] 26.48 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27017943,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============\\u003e
|
80
|
-
\ ] 27.02 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27558615,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============\\u003e
|
81
|
-
\ ] 27.56 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28099287,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============\\u003e
|
82
|
-
\ ] 28.1 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28639959,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============\\u003e
|
83
|
-
\ ] 28.64 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29180631,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============\\u003e
|
84
|
-
\ ] 29.18 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29721303,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============\\u003e
|
85
|
-
\ ] 29.72 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30261975,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============\\u003e
|
86
|
-
\ ] 30.26 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30802647,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================\\u003e
|
87
|
-
\ ] 30.8 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31343319,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================\\u003e
|
88
|
-
\ ] 31.34 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31883991,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================\\u003e
|
89
|
-
\ ] 31.88 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32424663,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================\\u003e
|
90
|
-
\ ] 32.42 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32965335,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================\\u003e
|
91
|
-
\ ] 32.97 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33506007,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================\\u003e
|
92
|
-
\ ] 33.51 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34046679,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================\\u003e
|
93
|
-
\ ] 34.05 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34587351,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==================\\u003e
|
94
|
-
\ ] 34.59 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35128023,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==================\\u003e
|
95
|
-
\ ] 35.13 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35668695,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==================\\u003e
|
96
|
-
\ ] 35.67 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36209367,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===================\\u003e
|
97
|
-
\ ] 36.21 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36750039,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===================\\u003e
|
98
|
-
\ ] 36.75 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37290711,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===================\\u003e
|
99
|
-
\ ] 37.29 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37831383,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===================\\u003e
|
100
|
-
\ ] 37.83 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38372055,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====================\\u003e
|
101
|
-
\ ] 38.37 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38912727,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====================\\u003e
|
102
|
-
\ ] 38.91 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39453399,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====================\\u003e
|
103
|
-
\ ] 39.45 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39994071,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====================\\u003e
|
104
|
-
\ ] 39.99 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40534743,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====================\\u003e
|
105
|
-
\ ] 40.53 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41075415,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====================\\u003e
|
106
|
-
\ ] 41.08 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41616087,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====================\\u003e
|
107
|
-
\ ] 41.62 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42156759,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======================\\u003e
|
108
|
-
\ ] 42.16 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42697431,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======================\\u003e
|
109
|
-
\ ] 42.7 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43238103,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======================\\u003e
|
110
|
-
\ ] 43.24 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43778775,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======================\\u003e
|
111
|
-
\ ] 43.78 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44319447,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======================\\u003e
|
112
|
-
\ ] 44.32 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44860119,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======================\\u003e
|
113
|
-
\ ] 44.86 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45400791,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======================\\u003e
|
114
|
-
\ ] 45.4 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45941463,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========================\\u003e
|
115
|
-
\ ] 45.94 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46482135,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========================\\u003e
|
116
|
-
\ ] 46.48 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022807,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========================\\u003e
|
117
|
-
\ ] 47.02 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47563479,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========================\\u003e
|
118
|
-
\ ] 47.56 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48104151,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========================\\u003e
|
119
|
-
\ ] 48.1 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48644823,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========================\\u003e
|
120
|
-
\ ] 48.64 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49185495,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========================\\u003e
|
121
|
-
\ ] 49.19 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49726167,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========================\\u003e
|
122
|
-
\ ] 49.73 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50266839,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========================\\u003e
|
123
|
-
\ ] 50.27 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50807511,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========================\\u003e
|
124
|
-
\ ] 50.81 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51348183,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========================\\u003e
|
125
|
-
\ ] 51.35 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51888855,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========================\\u003e
|
126
|
-
\ ] 51.89 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52429527,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========================\\u003e
|
127
|
-
\ ] 52.43 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52970199,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========================\\u003e
|
128
|
-
\ ] 52.97 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53510871,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============================\\u003e
|
129
|
-
\ ] 53.51 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54051543,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============================\\u003e
|
130
|
-
\ ] 54.05 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54592215,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============================\\u003e
|
131
|
-
\ ] 54.59 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55132887,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============================\\u003e
|
132
|
-
\ ] 55.13 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55673559,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============================\\u003e
|
133
|
-
\ ] 55.67 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56214231,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============================\\u003e
|
134
|
-
\ ] 56.21 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56754903,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============================\\u003e
|
135
|
-
\ ] 56.75 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57295575,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============================\\u003e
|
136
|
-
\ ] 57.3 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57836247,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============================\\u003e
|
137
|
-
\ ] 57.84 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58376919,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============================\\u003e
|
138
|
-
\ ] 58.38 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58917591,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============================\\u003e
|
139
|
-
\ ] 58.92 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59458263,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============================\\u003e
|
140
|
-
\ ] 59.46 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59998935,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============================\\u003e
|
141
|
-
\ ] 60 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60539607,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============================\\u003e
|
142
|
-
\ ] 60.54 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61071645,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================================\\u003e
|
143
|
-
\ ] 61.07 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61612317,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================================\\u003e
|
144
|
-
\ ] 61.61 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62152989,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================================\\u003e
|
145
|
-
\ ] 62.15 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62693661,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================================\\u003e
|
146
|
-
\ ] 62.69 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63234333,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================================\\u003e
|
147
|
-
\ ] 63.23 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63766151,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================================\\u003e
|
148
|
-
\ ] 63.77 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64297111,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================================\\u003e
|
149
|
-
\ ] 64.3 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64826999,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==================================\\u003e
|
150
|
-
\ ] 64.83 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65362039,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==================================\\u003e
|
151
|
-
\ ] 65.36 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65902711,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==================================\\u003e
|
152
|
-
\ ] 65.9 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66443383,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===================================\\u003e
|
153
|
-
\ ] 66.44 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66984055,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===================================\\u003e
|
154
|
-
\ ] 66.98 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67524727,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===================================\\u003e
|
155
|
-
\ ] 67.52 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68065399,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===================================\\u003e
|
156
|
-
\ ] 68.07 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68606071,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====================================\\u003e
|
157
|
-
\ ] 68.61 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69146743,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====================================\\u003e
|
158
|
-
\ ] 69.15 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69687415,\"total\":94863360,\"start\":1414452380},\"progress\":\"[====================================\\u003e
|
159
|
-
\ ] 69.69 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70228087,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====================================\\u003e
|
160
|
-
\ ] 70.23 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70768759,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====================================\\u003e
|
161
|
-
\ ] 70.77 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71309431,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====================================\\u003e
|
162
|
-
\ ] 71.31 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71850103,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=====================================\\u003e
|
163
|
-
\ ] 71.85 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72390775,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======================================\\u003e
|
164
|
-
\ ] 72.39 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72931447,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======================================\\u003e
|
165
|
-
\ ] 72.93 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73472119,\"total\":94863360,\"start\":1414452380},\"progress\":\"[======================================\\u003e
|
166
|
-
\ ] 73.47 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74012791,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======================================\\u003e
|
167
|
-
\ ] 74.01 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74553463,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======================================\\u003e
|
168
|
-
\ ] 74.55 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75094135,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======================================\\u003e
|
169
|
-
\ ] 75.09 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75634807,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=======================================\\u003e
|
170
|
-
\ ] 75.63 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76175479,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========================================\\u003e
|
171
|
-
\ ] 76.18 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76716151,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========================================\\u003e
|
172
|
-
\ ] 76.72 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77256823,\"total\":94863360,\"start\":1414452380},\"progress\":\"[========================================\\u003e
|
173
|
-
\ ] 77.26 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77797495,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========================================\\u003e
|
174
|
-
\ ] 77.8 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78338167,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========================================\\u003e
|
175
|
-
\ ] 78.34 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78878839,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========================================\\u003e
|
176
|
-
\ ] 78.88 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79419511,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=========================================\\u003e
|
177
|
-
\ ] 79.42 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79960183,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========================================\\u003e
|
178
|
-
\ ] 79.96 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80500855,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========================================\\u003e
|
179
|
-
\ ] 80.5 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81041527,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========================================\\u003e
|
180
|
-
\ ] 81.04 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81582199,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==========================================\\u003e
|
181
|
-
\ ] 81.58 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82122871,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========================================\\u003e
|
182
|
-
\ ] 82.12 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82663543,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========================================\\u003e
|
183
|
-
\ ] 82.66 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83204215,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===========================================\\u003e
|
184
|
-
\ ] 83.2 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83744887,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============================================\\u003e
|
185
|
-
\ ] 83.74 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84285559,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============================================\\u003e
|
186
|
-
\ ] 84.29 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84826231,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============================================\\u003e
|
187
|
-
\ ] 84.83 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85366903,\"total\":94863360,\"start\":1414452380},\"progress\":\"[============================================\\u003e
|
188
|
-
\ ] 85.37 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85907575,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============================================\\u003e
|
189
|
-
\ ] 85.91 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86448247,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============================================\\u003e
|
190
|
-
\ ] 86.45 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86988919,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=============================================\\u003e
|
191
|
-
\ ] 86.99 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87529591,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============================================\\u003e
|
192
|
-
\ ] 87.53 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88070263,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============================================\\u003e
|
193
|
-
\ ] 88.07 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88610935,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============================================\\u003e
|
194
|
-
\ ] 88.61 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89151607,\"total\":94863360,\"start\":1414452380},\"progress\":\"[==============================================\\u003e
|
195
|
-
\ ] 89.15 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89692279,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============================================\\u003e
|
196
|
-
\ ] 89.69 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90232951,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============================================\\u003e
|
197
|
-
\ ] 90.23 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90773623,\"total\":94863360,\"start\":1414452380},\"progress\":\"[===============================================\\u003e
|
198
|
-
\ ] 90.77 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91314295,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================================================\\u003e
|
199
|
-
\ ] 91.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91854967,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================================================\\u003e
|
200
|
-
\ ] 91.85 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92390020,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================================================\\u003e
|
201
|
-
\ ] 92.39 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92930692,\"total\":94863360,\"start\":1414452380},\"progress\":\"[================================================\\u003e
|
202
|
-
\ ] 92.93 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93471364,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================================================\\u003e
|
203
|
-
] 93.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94012036,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================================================\\u003e
|
204
|
-
] 94.01 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94552708,\"total\":94863360,\"start\":1414452380},\"progress\":\"[=================================================\\u003e
|
205
|
-
] 94.55 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414452380},\"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\":3647,\"total\":10240,\"start\":1414452402},\"progress\":\"[=================\\u003e
|
209
|
-
\ ] 3.647 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\":\"Pulling repository scratch\"}\r\n{\"status\":\"Pulling
|
26
|
+
image (latest) from scratch\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
27
|
+
image (latest) from scratch, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
28
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
|
29
|
+
complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
|
30
|
+
complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Status:
|
31
|
+
Image is up to date for scratch\"}\r\n"
|
213
32
|
http_version:
|
214
|
-
recorded_at: Mon,
|
33
|
+
recorded_at: Mon, 01 Dec 2014 18:08:50 GMT
|
215
34
|
- request:
|
216
35
|
method: post
|
217
|
-
uri:
|
36
|
+
uri: "<DOCKER_HOST>/v1.15/containers/create"
|
218
37
|
body:
|
219
38
|
encoding: UTF-8
|
220
|
-
string: '{"Image":"
|
39
|
+
string: '{"Image":"511136ea3c5a","Cmd":null}'
|
221
40
|
headers:
|
222
41
|
User-Agent:
|
223
|
-
- Swipely/Docker-API 1.
|
42
|
+
- Swipely/Docker-API 1.15.0
|
224
43
|
Content-Type:
|
225
44
|
- application/json
|
226
45
|
response:
|
@@ -231,7 +50,7 @@ http_interactions:
|
|
231
50
|
Content-Type:
|
232
51
|
- text/plain; charset=utf-8
|
233
52
|
Date:
|
234
|
-
- Mon,
|
53
|
+
- Mon, 01 Dec 2014 18:08:51 GMT
|
235
54
|
Content-Length:
|
236
55
|
- '21'
|
237
56
|
body:
|
@@ -239,5 +58,5 @@ http_interactions:
|
|
239
58
|
string: |
|
240
59
|
No command specified
|
241
60
|
http_version:
|
242
|
-
recorded_at: Mon,
|
61
|
+
recorded_at: Mon, 01 Dec 2014 18:08:50 GMT
|
243
62
|
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/images/search?term=sshd"
|
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,144 +19,222 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
23
|
-
Connection:
|
24
|
-
- close
|
25
|
-
Transfer-Encoding:
|
26
|
-
- ''
|
22
|
+
- Mon, 01 Dec 2014 18:09:00 GMT
|
27
23
|
body:
|
28
24
|
encoding: UTF-8
|
29
25
|
string: |-
|
30
|
-
[{"description":"SSH Daemon created in the ssh daemon documentation example","is_official":false,"is_trusted":false,"name":"dhrp/sshd","star_count":
|
31
|
-
,{"description":"
|
26
|
+
[{"description":"SSH Daemon created in the ssh daemon documentation example","is_official":false,"is_trusted":false,"name":"dhrp/sshd","star_count":6}
|
27
|
+
,{"description":"Centos6 based image with sshd and openjdk, used as a base for your custom mw images.","is_official":false,"is_trusted":true,"name":"pantinor/fuse","star_count":2}
|
32
28
|
,{"description":"Ubuntu 13.10 with openssh based on the stackbrew/ubuntu:13.10 image.","is_official":false,"is_trusted":false,"name":"stephens/sshd","star_count":2}
|
33
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
34
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"craigske/sshd-server","star_count":1}
|
29
|
+
,{"description":"Docker container with supervisord, httpd, sshd, crond, rsyslogd on CentOS","is_official":false,"is_trusted":true,"name":"kawanamiyuu/docker-centos-supervisord","star_count":2}
|
35
30
|
,{"description":"This is an image which runs a SSH deamon under supervision of runit.","is_official":false,"is_trusted":false,"name":"skxskx/sshd","star_count":1}
|
31
|
+
,{"description":"Apache image managed with circus. Config parameters with envtpl. apache, proftpd and sshd managed by circus.","is_official":false,"is_trusted":true,"name":"apsl/lamp","star_count":1}
|
32
|
+
,{"description":"A vagrant ready debian with installed nodejs, mongodb ","is_official":false,"is_trusted":false,"name":"farhadix/debian-nodejs-mongodb-sshd","star_count":1}
|
33
|
+
,{"description":"Docker image to spawn a compute node running slurmd (+munge), diamond (metric-gathering), sshd, supervisord, syslog-ng","is_official":false,"is_trusted":true,"name":"qnib/compute","star_count":1}
|
36
34
|
,{"description":"","is_official":false,"is_trusted":true,"name":"iliyan/docker-nginx-sshd","star_count":1}
|
37
|
-
,{"description":"
|
35
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"craigske/sshd-server","star_count":1}
|
36
|
+
,{"description":"Fedora docker file for ssh service which managed by supervisor","is_official":false,"is_trusted":true,"name":"kumarpraveen/fedora-sshd","star_count":1}
|
37
|
+
,{"description":"million12/php-app, extended with SSHD and easy keys management (via GitHub API)","is_official":false,"is_trusted":true,"name":"million12/php-app-ssh","star_count":1}
|
38
|
+
,{"description":"Dockerized SSH service, built on top of official Ubuntu images.","is_official":false,"is_trusted":true,"name":"rastasheep/ubuntu-sshd","star_count":1}
|
38
39
|
,{"description":"","is_official":false,"is_trusted":true,"name":"moul/sshd","star_count":1}
|
39
|
-
,{"description":"
|
40
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
41
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
40
|
+
,{"description":"ssh server: Ubuntu 13.10, user=root, passwd=root","is_official":false,"is_trusted":true,"name":"jchavas/saucy-sshd","star_count":1}
|
41
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"eyenx/archlinux-sshd","star_count":0}
|
42
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"kiss/sshd","star_count":0}
|
43
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"flowhealth/sshd","star_count":0}
|
42
44
|
,{"description":"","is_official":false,"is_trusted":true,"name":"dockeruser/sshd","star_count":0}
|
45
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"zanegrey/sshd","star_count":0}
|
46
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"sgyang/sshd","star_count":0}
|
43
47
|
,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd-supervisor","star_count":0}
|
48
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"jschueths/sshd","star_count":0}
|
49
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"mckoss/sshd","star_count":0}
|
50
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"takashi209/sshd","star_count":0}
|
51
|
+
,{"description":"Base image with sshd service","is_official":false,"is_trusted":false,"name":"llun/sshd","star_count":0}
|
52
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"jdauphant/jenkins-slave-sshd","star_count":0}
|
53
|
+
,{"description":"DOCKER SSH SERVICE","is_official":false,"is_trusted":true,"name":"jiaozhu/docker-sshd","star_count":0}
|
44
54
|
,{"description":"","is_official":false,"is_trusted":true,"name":"eternnoir/ubuntu-14.04-sshd","star_count":0}
|
45
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
55
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"kiyohara/docker-sshd","star_count":0}
|
46
56
|
,{"description":"","is_official":false,"is_trusted":true,"name":"viliusl/ubuntu-sshd-nginx","star_count":0}
|
47
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
48
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
49
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"brandonmartin/docker-ubuntu-runit-sshd","star_count":0}
|
57
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"kiyohara/docker-python-sshd","star_count":0}
|
58
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"andrefernandes/docker-sshd","star_count":0}
|
50
59
|
,{"description":"CentOS with sshd","is_official":false,"is_trusted":false,"name":"mkrishnamurthy/sshd","star_count":0}
|
51
60
|
,{"description":"Centos 6.4 (64bit) with sshd","is_official":false,"is_trusted":false,"name":"jonhadfield/sshd","star_count":0}
|
61
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"gedex/ubuntu-sshd","star_count":0}
|
62
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"jcheng/docker-sshd","star_count":0}
|
52
63
|
,{"description":"Runs a SSHd server in daemon mode","is_official":false,"is_trusted":false,"name":"zefhemel/sshd","star_count":0}
|
64
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"webdizz/centos-java8-sshd","star_count":0}
|
65
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"kiyohara/docker-ruby-sshd","star_count":0}
|
66
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"brandonmartin/docker-ubuntu-runit-sshd","star_count":0}
|
53
67
|
,{"description":"","is_official":false,"is_trusted":false,"name":"dongweiming/sshd","star_count":0}
|
68
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"toyplot/sshd","star_count":0}
|
54
69
|
,{"description":"","is_official":false,"is_trusted":false,"name":"fclaeys/sshd","star_count":0}
|
55
|
-
,{"description":"","is_official":false,"is_trusted":
|
70
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"webdizz/centos-java8-sshd-chef","star_count":0}
|
56
71
|
,{"description":"Base + sshd + proxy + static ip addr.","is_official":false,"is_trusted":false,"name":"simoman/sshd","star_count":0}
|
57
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"shparker0624/sshd","star_count":0}
|
58
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"tekknolagi/sshd","star_count":0}
|
59
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"jamtur01/sshd","star_count":0}
|
60
72
|
,{"description":"","is_official":false,"is_trusted":false,"name":"oss17888/sshd","star_count":0}
|
61
|
-
,{"description":"
|
62
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
73
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"tekknolagi/sshd","star_count":0}
|
74
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"gridiron/sshd","star_count":0}
|
75
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"digoal/sshd","star_count":0}
|
76
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"i686/sshd","star_count":0}
|
77
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"sthulb/sshd","star_count":0}
|
78
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"xiaoyuan234/sshd","star_count":0}
|
63
79
|
,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshd","star_count":0}
|
80
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"kpelykh/sshd","star_count":0}
|
81
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"blissdev/sshd","star_count":0}
|
64
82
|
,{"description":"","is_official":false,"is_trusted":false,"name":"hyone/sshd","star_count":0}
|
83
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"jamtur01/sshd","star_count":0}
|
84
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"sandialabs/sshd","star_count":0}
|
85
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"colorscode/sshd","star_count":0}
|
86
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"woosung225/sshd","star_count":0}
|
65
87
|
,{"description":"","is_official":false,"is_trusted":false,"name":"pmerrell/sshd","star_count":0}
|
66
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
88
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"dneff/sshd","star_count":0}
|
89
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"vgauthier/sshd","star_count":0}
|
90
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"uzero/sshd","star_count":0}
|
91
|
+
,{"description":"sshd daemon supervised by DJB daemontools - run cmd :\r\ndocker run -d -p 22 toorop/daemontools-sshd /usr/bin/svscanboot - \r\n\r\nDefault root password : demo - \r\n\r\nSSHD logs location : /var/log/sshd\r\n\r\n","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd","star_count":0}
|
92
|
+
,{"description":"Education purpose","is_official":false,"is_trusted":false,"name":"ovekli/sshd","star_count":0}
|
93
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"jurajpelikan/sshd","star_count":0}
|
94
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"nicolasg/sshd","star_count":0}
|
95
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"yokoih/sshd","star_count":0}
|
96
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"shparker0624/sshd","star_count":0}
|
97
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"jameschao/sshd","star_count":0}
|
98
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"dragon9783/sshd","star_count":0}
|
99
|
+
,{"description":"sshd daemon \u0026 Nginx supervised by DJB daemontools - run cmd : docker run -d -p 22 -p 80 toorop/daemontools-sshd-nginx /usr/bin/svscanboot - Default root password : demo - SSHD logs location : /var/log/sshd","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd-nginx","star_count":0}
|
100
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"slowbluecamera/sshd","star_count":0}
|
101
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"sayaleehande/sshd","star_count":0}
|
102
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"razasayed/sshd","star_count":0}
|
103
|
+
,{"description":"centos image with openssh installed and vagrant user with keys ","is_official":false,"is_trusted":false,"name":"phiroict/centos-sshd","star_count":0}
|
104
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"fahmpress/sshd","star_count":0}
|
105
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"yiyuandao/sshd","star_count":0}
|
106
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"hippoom/sshd","star_count":0}
|
107
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"fruitsandwich/sshd","star_count":0}
|
108
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"lijin/sshd","star_count":0}
|
109
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"arminc/sshd","star_count":0}
|
110
|
+
,{"description":"OpenSSH daemon,built on top of official CentOS6 images. Fix the ssh login problem with root's password is 'secret' ","is_official":false,"is_trusted":false,"name":"perlbox/sshd","star_count":0}
|
111
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"skardan/sshd","star_count":0}
|
112
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"souche/sshd","star_count":0}
|
113
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"thanhn2001/sshd","star_count":0}
|
114
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"tgkurt/sshd","star_count":0}
|
115
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"tjordanchat/sshd","star_count":0}
|
116
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"mammal/sshd","star_count":0}
|
117
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"acockrell37/sshd","star_count":0}
|
118
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"yuyat/sshd","star_count":0}
|
119
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"gldamao/sshd","star_count":0}
|
120
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"yestxh/sshd","star_count":0}
|
121
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"kallin/sshd","star_count":0}
|
122
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"yoshiso/sshd","star_count":0}
|
123
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"rblomberg/sshd","star_count":0}
|
124
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"marcosvm/sshd","star_count":0}
|
125
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"apetersen/sshd","star_count":0}
|
126
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"hyao/sshd","star_count":0}
|
127
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"daguz/sshd","star_count":0}
|
128
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"malbin/sshd","star_count":0}
|
67
129
|
,{"description":"","is_official":false,"is_trusted":false,"name":"ks2mirror/sshd","star_count":0}
|
68
130
|
,{"description":"","is_official":false,"is_trusted":false,"name":"shuvoovuhs/sshd","star_count":0}
|
69
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"michedlp/sshd","star_count":0}
|
70
131
|
,{"description":"","is_official":false,"is_trusted":false,"name":"superbenk/sshd","star_count":0}
|
132
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"michedlp/sshd","star_count":0}
|
71
133
|
,{"description":"","is_official":false,"is_trusted":false,"name":"mesterkent/sshd","star_count":0}
|
72
134
|
,{"description":"","is_official":false,"is_trusted":false,"name":"bonesvoll/sshd","star_count":0}
|
73
135
|
,{"description":"","is_official":false,"is_trusted":false,"name":"amdra/sshd","star_count":0}
|
74
136
|
,{"description":"","is_official":false,"is_trusted":false,"name":"csnate/sshd","star_count":0}
|
75
137
|
,{"description":"","is_official":false,"is_trusted":false,"name":"milkbikis/sshd","star_count":0}
|
76
138
|
,{"description":"","is_official":false,"is_trusted":false,"name":"pdana/sshd","star_count":0}
|
77
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"marcoshack/sshd","star_count":0}
|
78
139
|
,{"description":"","is_official":false,"is_trusted":false,"name":"abrahamoshel/sshd","star_count":0}
|
140
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"marcoshack/sshd","star_count":0}
|
79
141
|
,{"description":"","is_official":false,"is_trusted":false,"name":"junhochoi/sshd","star_count":0}
|
80
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"edyu/sshd","star_count":0}
|
81
142
|
,{"description":"","is_official":false,"is_trusted":false,"name":"perrygeorget/sshd","star_count":0}
|
143
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"edyu/sshd","star_count":0}
|
82
144
|
,{"description":"","is_official":false,"is_trusted":false,"name":"gburton/sshd","star_count":0}
|
83
145
|
,{"description":"","is_official":false,"is_trusted":false,"name":"bentis/sshd","star_count":0}
|
84
146
|
,{"description":"","is_official":false,"is_trusted":false,"name":"8bitbrad/sshd","star_count":0}
|
85
147
|
,{"description":"","is_official":false,"is_trusted":false,"name":"wilde/sshd","star_count":0}
|
86
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
87
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
88
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"danieldreier/sshd","star_count":0}
|
89
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"richburroughs/sshd","star_count":0}
|
148
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"njal26/sshd","star_count":0}
|
149
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"yulong/sshd","star_count":0}
|
90
150
|
,{"description":"","is_official":false,"is_trusted":false,"name":"jiahut/sshd","star_count":0}
|
91
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"uzero/sshd","star_count":0}
|
92
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"aronr/sshd","star_count":0}
|
93
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"vgauthier/sshd","star_count":0}
|
94
151
|
,{"description":"","is_official":false,"is_trusted":false,"name":"cursolv00/sshd","star_count":0}
|
95
152
|
,{"description":"","is_official":false,"is_trusted":false,"name":"vmtrooper/sshd","star_count":0}
|
96
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
97
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"jurajpelikan/sshd","star_count":0}
|
98
|
-
,{"description":"sshd daemon supervised by DJB daemontools - run cmd :\r\ndocker run -d -p 22 toorop/daemontools-sshd /usr/bin/svscanboot - \r\n\r\nDefault root password : demo - \r\n\r\nSSHD logs location : /var/log/sshd\r\n\r\n","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd","star_count":0}
|
99
|
-
,{"description":"sshd daemon \u0026 Nginx supervised by DJB daemontools - run cmd : docker run -d -p 22 -p 80 toorop/daemontools-sshd-nginx /usr/bin/svscanboot - Default root password : demo - SSHD logs location : /var/log/sshd","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd-nginx","star_count":0}
|
100
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dragon9783/sshd","star_count":0}
|
101
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"mammal/sshd","star_count":0}
|
102
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"morimorihoge/precise-sshd","star_count":0}
|
103
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"skardan/sshd","star_count":0}
|
104
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"tjordanchat/sshd","star_count":0}
|
105
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yuyat/sshd","star_count":0}
|
106
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yoshiso/sshd","star_count":0}
|
107
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"yestxh/sshd","star_count":0}
|
108
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"marcosvm/sshd","star_count":0}
|
109
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"apetersen/sshd","star_count":0}
|
110
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"rblomberg/sshd","star_count":0}
|
111
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"hyao/sshd","star_count":0}
|
112
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"malbin/sshd","star_count":0}
|
113
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"mrtmexx/sshd","star_count":0}
|
153
|
+
,{"description":"training image of an ssh daemon","is_official":false,"is_trusted":false,"name":"thomd/sshd","star_count":0}
|
114
154
|
,{"description":"","is_official":false,"is_trusted":false,"name":"j4pe/sshd","star_count":0}
|
115
155
|
,{"description":"Image source was Ubuntu 12.10. Installed openssh-server and reset root password. ","is_official":false,"is_trusted":false,"name":"trebortech/sshd","star_count":0}
|
116
156
|
,{"description":"","is_official":false,"is_trusted":false,"name":"steshaw/sshd","star_count":0}
|
117
157
|
,{"description":"","is_official":false,"is_trusted":false,"name":"ckrintz/sshd","star_count":0}
|
158
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"haorui215/sshd","star_count":0}
|
159
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"kevinschmidt/sshd","star_count":0}
|
160
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"litiblue/sshd","star_count":0}
|
161
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"jufo/sshd","star_count":0}
|
162
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"kobrinartem/sshd","star_count":0}
|
163
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"quifor/sshd","star_count":0}
|
164
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"xiaokaceng/sshd","star_count":0}
|
165
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"morimorihoge/precise-sshd","star_count":0}
|
118
166
|
,{"description":"Ubuntu 12.04\nNodeJS 0.10.18\nsshd","is_official":false,"is_trusted":false,"name":"realyze/ubuntu-node-sshd","star_count":0}
|
119
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
120
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
167
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"armbuild/moul-sshd","star_count":0}
|
168
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"moul/armhf-sshd","star_count":0}
|
169
|
+
,{"description":"Ubuntu 14.06 \u0026 openssh-server","is_official":false,"is_trusted":false,"name":"akyshr/ubuntu-sshd","star_count":0}
|
170
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"ilimit/sshd-test","star_count":0}
|
121
171
|
,{"description":"","is_official":false,"is_trusted":false,"name":"johnfuller/sshd","star_count":0}
|
122
172
|
,{"description":"","is_official":false,"is_trusted":false,"name":"cespare/sshd","star_count":0}
|
173
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"wangfeib12/centos6.5-sshd","star_count":0}
|
174
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"eembsen/centos-sshd","star_count":0}
|
175
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"templefoxx/ubuntu-sshd","star_count":0}
|
176
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"varmenise/docker-sshd","star_count":0}
|
177
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"amochtar/mesos-sshd","star_count":0}
|
178
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"rayang2004/sshd","star_count":0}
|
123
179
|
,{"description":"","is_official":false,"is_trusted":false,"name":"progrium/sshd-example","star_count":0}
|
180
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"aneeth/ubuntu-sshd","star_count":0}
|
124
181
|
,{"description":"shell honeypot\n\nroot/mypass","is_official":false,"is_trusted":false,"name":"robwc/ubuntu-sshd","star_count":0}
|
125
|
-
,{"description":"
|
126
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"hirotaka/ubuntu-ja-sshd","star_count":0}
|
127
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"rayang2004/sshd","star_count":0}
|
128
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"zfllj/fedora-20-sshd","star_count":0}
|
182
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"speg03/sshd-centos_localbuild","star_count":0}
|
129
183
|
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping","star_count":0}
|
130
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"msinger/openfoam-sshd","star_count":0}
|
131
184
|
,{"description":"","is_official":false,"is_trusted":false,"name":"zilin/docker-sshd","star_count":0}
|
185
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"msinger/openfoam-sshd","star_count":0}
|
186
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"hirotaka/ubuntu-ja-sshd","star_count":0}
|
132
187
|
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping2","star_count":0}
|
133
|
-
,{"description":"
|
188
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"mengzechao/ubuntu-sshd","star_count":0}
|
189
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"arif/ubuntu-sshd","star_count":0}
|
190
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"bkkoos/nginx-sshd","star_count":0}
|
134
191
|
,{"description":"Provides access to pharo-core command line interface","is_official":false,"is_trusted":false,"name":"pshouse/sshd-pharo-core","star_count":0}
|
135
192
|
,{"description":"","is_official":false,"is_trusted":false,"name":"lorieri/daemontools-sshd-nginx","star_count":0}
|
193
|
+
,{"description":"Debian sid image with sysvinit + sshd, rsyslog, cron daemons.","is_official":false,"is_trusted":true,"name":"minimum2scp/baseimage","star_count":0}
|
194
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"blurblah/sshd","star_count":0}
|
195
|
+
,{"description":"Debian sid image with systemd + sshd, rsyslog, cron daemons","is_official":false,"is_trusted":true,"name":"minimum2scp/systemd","star_count":0}
|
196
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/mongodb-sshd","star_count":0}
|
197
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"sirlantis/supervisord-sshd-nodejs","star_count":0}
|
136
198
|
,{"description":"","is_official":false,"is_trusted":false,"name":"johnshen/oink-centos65-sshd","star_count":0}
|
199
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"zfllj/fedora-20-sshd","star_count":0}
|
137
200
|
,{"description":"","is_official":false,"is_trusted":false,"name":"5agms43sgo2z/jessie-with-sshd","star_count":0}
|
138
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/mongodb-sshd","star_count":0}
|
139
201
|
,{"description":"","is_official":false,"is_trusted":false,"name":"mikewr/u1210-sshd-postgres","star_count":0}
|
140
|
-
,{"description":"
|
141
|
-
,{"description":"Ubuntu base image with supervisor (cron, logrotate, sshd, syslog-ng)","is_official":false,"is_trusted":true,"name":"eg5846/supervisor-docker","star_count":0}
|
142
|
-
,{"description":"With this image you can run OTRS with ITSM extension. It includes MySQL server and SSHd","is_official":false,"is_trusted":true,"name":"tommyblue/otrs","star_count":0}
|
202
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"bkkoos/phpfpm-nginx-sshd","star_count":0}
|
143
203
|
,{"description":"","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd-nginx-php-fpm","star_count":0}
|
144
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
204
|
+
,{"description":"hardened ssh (sshd) jump host and dev environment","is_official":false,"is_trusted":true,"name":"jumanjiman/wormhole","star_count":0}
|
205
|
+
,{"description":"A CentOS base image with SSHd, Puppet and minor command-line tools.","is_official":false,"is_trusted":true,"name":"internavenue/centos-base","star_count":0}
|
206
|
+
,{"description":"Ubuntu base image with supervisor (cron, logrotate, sshd, syslog-ng)","is_official":false,"is_trusted":true,"name":"eg5846/supervisor-docker","star_count":0}
|
207
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"harada4atsushi/sshd_centos6","star_count":0}
|
208
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"joshuahargrove/sshd_docker","star_count":0}
|
209
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"ppko/sshd_ubuntu","star_count":0}
|
210
|
+
,{"description":"Ubuntu misp image with supervisor (cron, logrotate, sshd, syslog-ng, postfix, redis-server, apache2, resque)","is_official":false,"is_trusted":true,"name":"eg5846/misp-docker","star_count":0}
|
211
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"artiq/sshdemo","star_count":0}
|
212
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"wushiqinlou/sshdserver","star_count":0}
|
145
213
|
,{"description":"","is_official":false,"is_trusted":false,"name":"marcesher/sshdtest","star_count":0}
|
146
|
-
,{"description":"
|
214
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"pantinor/centos_sshd","star_count":0}
|
215
|
+
,{"description":"With this image you can run OTRS with ITSM extension. It includes MySQL server and SSHd","is_official":false,"is_trusted":true,"name":"tommyblue/otrs","star_count":0}
|
216
|
+
,{"description":"debian based image with supervisord and sshd","is_official":false,"is_trusted":true,"name":"ishakuta/debian-supervisor","star_count":0}
|
147
217
|
,{"description":"","is_official":false,"is_trusted":false,"name":"apl330/sshdx","star_count":0}
|
148
218
|
,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshdnpw","star_count":0}
|
219
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"olivera/sshd_v0","star_count":0}
|
220
|
+
,{"description":"Add vim and sshd from ubuntu14.04:latest","is_official":false,"is_trusted":false,"name":"krystism/ubuntu_sshd","star_count":0}
|
149
221
|
,{"description":"SSHD daemon supervised by DJB daemontools\nRUN: sudo docker run -d -p 22 -t mfuller/damontools_sshd /usr/bin/svscan /service\nLogin: USER(with sudo)=admin PASSWORD=password\nSSHD logs : /var/log/sshd\n","is_official":false,"is_trusted":false,"name":"mfuller/daemontools_sshd","star_count":0}
|
222
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"trobz/sshd","star_count":0}
|
223
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"docku/sshd","star_count":0}
|
150
224
|
,{"description":"Ubuntu 12.04 with SSHd and ubuntu user (check logs for initial password).","is_official":false,"is_trusted":true,"name":"jimt/sshd","star_count":0}
|
151
|
-
,{"description":"
|
225
|
+
,{"description":"Run haproxy with sshd","is_official":false,"is_trusted":true,"name":"llamashoes/haproxy-sshd","star_count":0}
|
152
226
|
,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd","star_count":0}
|
153
227
|
,{"description":"","is_official":false,"is_trusted":true,"name":"titanous/sshd","star_count":0}
|
228
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"larrycai/ubuntu-sshd","star_count":0}
|
229
|
+
,{"description":"Spoke container for etcd.","is_official":false,"is_trusted":true,"name":"radial/sshd","star_count":0}
|
230
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"eyenx/debian-sshd","star_count":0}
|
154
231
|
,{"description":"","is_official":false,"is_trusted":true,"name":"speg03/sshd-centos","star_count":0}
|
155
232
|
,{"description":"","is_official":false,"is_trusted":true,"name":"danhixon/sshd","star_count":0}
|
233
|
+
,{"description":"A ssh server with password: admin","is_official":false,"is_trusted":true,"name":"wnameless/sshd","star_count":0}
|
234
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"typester/sshd","star_count":0}
|
235
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"eyenx/ubuntu-sshd","star_count":0}
|
156
236
|
,{"description":"","is_official":false,"is_trusted":true,"name":"monokrome/sshd","star_count":0}
|
157
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"zanegrey/sshd","star_count":0}
|
158
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"kiss/sshd","star_count":0}
|
159
237
|
]
|
160
238
|
http_version:
|
161
|
-
recorded_at:
|
162
|
-
recorded_with: VCR 2.9.
|
239
|
+
recorded_at: Mon, 01 Dec 2014 18:09:00 GMT
|
240
|
+
recorded_with: VCR 2.9.3
|