docker-api 1.11.2 → 1.12.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 +1 -1
- data/lib/docker/image.rb +10 -10
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +0 -8
- data/spec/docker/image_spec.rb +3 -3
- data/spec/docker_spec.rb +6 -4
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -6
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -7
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -7
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -7
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +77 -65
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +15 -15
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +15 -15
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +22 -24
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +17 -17
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +12 -12
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +41 -41
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +26 -26
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +13 -13
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +7 -7
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -17
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +453693 -17
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +13 -13
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +13 -13
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +41 -35
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +11 -11
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +11 -11
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +42 -42
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +16 -16
- 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 +46 -47
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +23 -23
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +45 -39
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +27 -23
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +16 -16
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +12 -12
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +16 -16
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +13 -33
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +6 -6
- 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 +25 -27
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +6 -6
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +6 -6
- 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 +11 -7
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +8 -196
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +24 -20
- 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 +46 -30
- 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 +21 -669
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -7
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +9 -9
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +27 -25
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +12 -12
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +6 -6
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +27 -33
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +29 -878
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +29 -45
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +29 -51
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +29 -28
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +6 -6
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +32 -31
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +11 -11
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +67 -227
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +61 -43
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +40 -203
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +22 -23
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +19 -19
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +19 -19
- 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 +10 -10
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +77 -72
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +9 -9
- metadata +3 -3
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=base
|
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.11.1
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 06 Jun 2014 14:18:54 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -34,16 +34,16 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at:
|
37
|
+
recorded_at: Fri, 06 Jun 2014 14:18:55 GMT
|
38
38
|
- request:
|
39
39
|
method: delete
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.11/images/b750fe79269d?force=true
|
41
41
|
body:
|
42
42
|
encoding: US-ASCII
|
43
43
|
string: ''
|
44
44
|
headers:
|
45
45
|
User-Agent:
|
46
|
-
- Swipely/Docker-API 1.
|
46
|
+
- Swipely/Docker-API 1.11.1
|
47
47
|
Content-Type:
|
48
48
|
- text/plain
|
49
49
|
response:
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- application/json
|
56
56
|
Date:
|
57
|
-
-
|
57
|
+
- Fri, 06 Jun 2014 14:18:55 GMT
|
58
58
|
Content-Length:
|
59
59
|
- '134'
|
60
60
|
Connection:
|
@@ -68,16 +68,16 @@ http_interactions:
|
|
68
68
|
,{"Untagged":"base:ubuntu-quantl"}
|
69
69
|
]
|
70
70
|
http_version:
|
71
|
-
recorded_at:
|
71
|
+
recorded_at: Fri, 06 Jun 2014 14:18:55 GMT
|
72
72
|
- request:
|
73
73
|
method: get
|
74
|
-
uri: unix:///var/run/docker.sock/v1.
|
74
|
+
uri: unix:///var/run/docker.sock/v1.11/images/json
|
75
75
|
body:
|
76
76
|
encoding: US-ASCII
|
77
77
|
string: ''
|
78
78
|
headers:
|
79
79
|
User-Agent:
|
80
|
-
- Swipely/Docker-API 1.
|
80
|
+
- Swipely/Docker-API 1.11.1
|
81
81
|
Content-Type:
|
82
82
|
- text/plain
|
83
83
|
response:
|
@@ -88,23 +88,22 @@ http_interactions:
|
|
88
88
|
Content-Type:
|
89
89
|
- application/json
|
90
90
|
Date:
|
91
|
-
-
|
91
|
+
- Fri, 06 Jun 2014 14:18:55 GMT
|
92
|
+
Content-Length:
|
93
|
+
- '1776'
|
92
94
|
Connection:
|
93
95
|
- close
|
94
|
-
Transfer-Encoding:
|
95
|
-
- ''
|
96
96
|
body:
|
97
97
|
encoding: UTF-8
|
98
98
|
string: |-
|
99
|
-
[{"Created":
|
100
|
-
,{"Created":
|
101
|
-
,{"Created":
|
102
|
-
,{"Created":
|
103
|
-
,{"Created":
|
104
|
-
,{"Created":
|
105
|
-
,{"Created":
|
106
|
-
,{"Created":1391448149,"Id":"9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6","ParentId":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","RepoTags":["ubuntu:latest","ubuntu:precise","ubuntu:12.04"],"Size":204705001,"VirtualSize":204705001}
|
99
|
+
[{"Created":1402064098,"Id":"0623b97810b4a0f42bc669f585304ec4bf2479c2e2a6c5a0d382256bc88caed6","ParentId":"983e8493b5049f430898150891dff158ebc71130e6be73ef49d8434f7021daef","RepoTags":["docker:master"],"Size":40861893,"VirtualSize":1380220597}
|
100
|
+
,{"Created":1402064068,"Id":"845bd9d827b413c5b8d9e546ed32aa04eaa837daaab793440c2749799d634133","ParentId":"983e8493b5049f430898150891dff158ebc71130e6be73ef49d8434f7021daef","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":40861893,"VirtualSize":1380220597}
|
101
|
+
,{"Created":1402061818,"Id":"533a0267fec78da1e15f091420d9a25c16bfee2a2d9f55ae59d52bc8634a9939","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
|
102
|
+
,{"Created":1402061816,"Id":"7364e1f83f7b954283072e0bf10b43b92c992940ae639cf71a74e31f4a93e75f","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
|
103
|
+
,{"Created":1402061797,"Id":"5964d75bfbd207cbd3c95b140859737e1dceb77c3f60b2984927fc3f4b85bc48","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":35,"VirtualSize":175307070}
|
104
|
+
,{"Created":1401992996,"Id":"cd20e353a62d370114744e8e219cce59098f419e022c7de64df47ff43ba88216","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
|
105
|
+
,{"Created":1401930591,"Id":"ad892dd21d607a1458a722598a2e4d93015c4507abcd0ebfc16a43d4d1b41520","ParentId":"9db365ecbcbbb20e063eac70842c53e27fcad0e213f9d4ddb78152339cedd3b1","RepoTags":["ubuntu:14.04"],"Size":82679079,"VirtualSize":275352887}
|
107
106
|
]
|
108
107
|
http_version:
|
109
|
-
recorded_at:
|
110
|
-
recorded_with: VCR 2.
|
108
|
+
recorded_at: Fri, 06 Jun 2014 14:18:55 GMT
|
109
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=base
|
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.11.1
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 06 Jun 2014 14:23:46 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -34,16 +34,16 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at:
|
37
|
+
recorded_at: Fri, 06 Jun 2014 14:23:52 GMT
|
38
38
|
- request:
|
39
39
|
method: post
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/create
|
41
41
|
body:
|
42
42
|
encoding: UTF-8
|
43
|
-
string:
|
43
|
+
string: '{"Image":"b750fe79269d","Cmd":["ls","/lib64/"]}'
|
44
44
|
headers:
|
45
45
|
User-Agent:
|
46
|
-
- Swipely/Docker-API 1.
|
46
|
+
- Swipely/Docker-API 1.11.1
|
47
47
|
Content-Type:
|
48
48
|
- application/json
|
49
49
|
response:
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- application/json
|
56
56
|
Date:
|
57
|
-
-
|
57
|
+
- Fri, 06 Jun 2014 14:23:52 GMT
|
58
58
|
Content-Length:
|
59
59
|
- '90'
|
60
60
|
Connection:
|
@@ -62,18 +62,18 @@ http_interactions:
|
|
62
62
|
body:
|
63
63
|
encoding: UTF-8
|
64
64
|
string: |
|
65
|
-
{"Id":"
|
65
|
+
{"Id":"63e99e92384544c9730b7299cbf1fd9a21c770f51fcb7f93757dd6cbfc4edf55","Warnings":null}
|
66
66
|
http_version:
|
67
|
-
recorded_at:
|
67
|
+
recorded_at: Fri, 06 Jun 2014 14:23:52 GMT
|
68
68
|
- request:
|
69
69
|
method: post
|
70
|
-
uri: unix:///var/run/docker.sock/v1.
|
70
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/63e99e92384544c9730b7299cbf1fd9a21c770f51fcb7f93757dd6cbfc4edf55/start
|
71
71
|
body:
|
72
72
|
encoding: UTF-8
|
73
|
-
string:
|
73
|
+
string: '{}'
|
74
74
|
headers:
|
75
75
|
User-Agent:
|
76
|
-
- Swipely/Docker-API 1.
|
76
|
+
- Swipely/Docker-API 1.11.1
|
77
77
|
Content-Type:
|
78
78
|
- application/json
|
79
79
|
response:
|
@@ -82,7 +82,7 @@ http_interactions:
|
|
82
82
|
message:
|
83
83
|
headers:
|
84
84
|
Date:
|
85
|
-
-
|
85
|
+
- Fri, 06 Jun 2014 14:23:52 GMT
|
86
86
|
Content-Length:
|
87
87
|
- '0'
|
88
88
|
Content-Type:
|
@@ -93,16 +93,16 @@ http_interactions:
|
|
93
93
|
encoding: UTF-8
|
94
94
|
string: ''
|
95
95
|
http_version:
|
96
|
-
recorded_at:
|
96
|
+
recorded_at: Fri, 06 Jun 2014 14:23:52 GMT
|
97
97
|
- request:
|
98
98
|
method: post
|
99
|
-
uri: unix:///var/run/docker.sock/v1.
|
99
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/63e99e92384544c9730b7299cbf1fd9a21c770f51fcb7f93757dd6cbfc4edf55/attach?stderr=true&stdout=true&stream=true
|
100
100
|
body:
|
101
101
|
encoding: US-ASCII
|
102
102
|
string: ''
|
103
103
|
headers:
|
104
104
|
User-Agent:
|
105
|
-
- Swipely/Docker-API 1.
|
105
|
+
- Swipely/Docker-API 1.11.1
|
106
106
|
Content-Type:
|
107
107
|
- text/plain
|
108
108
|
response:
|
@@ -117,5 +117,5 @@ http_interactions:
|
|
117
117
|
string: !binary |-
|
118
118
|
AQAAAAAAABVsZC1saW51eC14ODYtNjQuc28uMgo=
|
119
119
|
http_version:
|
120
|
-
recorded_at:
|
121
|
-
recorded_with: VCR 2.
|
120
|
+
recorded_at: Fri, 06 Jun 2014 14:23:52 GMT
|
121
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=base
|
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.11.1
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 06 Jun 2014 14:23:52 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -34,16 +34,16 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at:
|
37
|
+
recorded_at: Fri, 06 Jun 2014 14:23:58 GMT
|
38
38
|
- request:
|
39
39
|
method: post
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/create
|
41
41
|
body:
|
42
42
|
encoding: UTF-8
|
43
|
-
string:
|
43
|
+
string: '{"Image":"b750fe79269d","Cmd":["which","pwd"]}'
|
44
44
|
headers:
|
45
45
|
User-Agent:
|
46
|
-
- Swipely/Docker-API 1.
|
46
|
+
- Swipely/Docker-API 1.11.1
|
47
47
|
Content-Type:
|
48
48
|
- application/json
|
49
49
|
response:
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- application/json
|
56
56
|
Date:
|
57
|
-
-
|
57
|
+
- Fri, 06 Jun 2014 14:23:59 GMT
|
58
58
|
Content-Length:
|
59
59
|
- '90'
|
60
60
|
Connection:
|
@@ -62,18 +62,18 @@ http_interactions:
|
|
62
62
|
body:
|
63
63
|
encoding: UTF-8
|
64
64
|
string: |
|
65
|
-
{"Id":"
|
65
|
+
{"Id":"f329903e748888c4c1dee34ca3274f1ff147dee3529fef902bc1b47fea1f54ae","Warnings":null}
|
66
66
|
http_version:
|
67
|
-
recorded_at:
|
67
|
+
recorded_at: Fri, 06 Jun 2014 14:23:59 GMT
|
68
68
|
- request:
|
69
69
|
method: post
|
70
|
-
uri: unix:///var/run/docker.sock/v1.
|
70
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/f329903e748888c4c1dee34ca3274f1ff147dee3529fef902bc1b47fea1f54ae/start
|
71
71
|
body:
|
72
72
|
encoding: UTF-8
|
73
|
-
string:
|
73
|
+
string: '{}'
|
74
74
|
headers:
|
75
75
|
User-Agent:
|
76
|
-
- Swipely/Docker-API 1.
|
76
|
+
- Swipely/Docker-API 1.11.1
|
77
77
|
Content-Type:
|
78
78
|
- application/json
|
79
79
|
response:
|
@@ -82,7 +82,7 @@ http_interactions:
|
|
82
82
|
message:
|
83
83
|
headers:
|
84
84
|
Date:
|
85
|
-
-
|
85
|
+
- Fri, 06 Jun 2014 14:23:59 GMT
|
86
86
|
Content-Length:
|
87
87
|
- '0'
|
88
88
|
Content-Type:
|
@@ -93,16 +93,16 @@ http_interactions:
|
|
93
93
|
encoding: UTF-8
|
94
94
|
string: ''
|
95
95
|
http_version:
|
96
|
-
recorded_at:
|
96
|
+
recorded_at: Fri, 06 Jun 2014 14:23:59 GMT
|
97
97
|
- request:
|
98
98
|
method: post
|
99
|
-
uri: unix:///var/run/docker.sock/v1.
|
99
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/f329903e748888c4c1dee34ca3274f1ff147dee3529fef902bc1b47fea1f54ae/attach?stderr=true&stdout=true&stream=true
|
100
100
|
body:
|
101
101
|
encoding: US-ASCII
|
102
102
|
string: ''
|
103
103
|
headers:
|
104
104
|
User-Agent:
|
105
|
-
- Swipely/Docker-API 1.
|
105
|
+
- Swipely/Docker-API 1.11.1
|
106
106
|
Content-Type:
|
107
107
|
- text/plain
|
108
108
|
response:
|
@@ -117,5 +117,5 @@ http_interactions:
|
|
117
117
|
string: !binary |-
|
118
118
|
AQAAAAAAAAkvYmluL3B3ZAo=
|
119
119
|
http_version:
|
120
|
-
recorded_at:
|
121
|
-
recorded_with: VCR 2.
|
120
|
+
recorded_at: Fri, 06 Jun 2014 14:23:59 GMT
|
121
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=base
|
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.11.1
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 06 Jun 2014 14:23:59 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -34,16 +34,16 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at:
|
37
|
+
recorded_at: Fri, 06 Jun 2014 14:24:10 GMT
|
38
38
|
- request:
|
39
39
|
method: post
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/create
|
41
41
|
body:
|
42
42
|
encoding: UTF-8
|
43
|
-
string:
|
43
|
+
string: '{"Image":"b750fe79269d","Cmd":null}'
|
44
44
|
headers:
|
45
45
|
User-Agent:
|
46
|
-
- Swipely/Docker-API 1.
|
46
|
+
- Swipely/Docker-API 1.11.1
|
47
47
|
Content-Type:
|
48
48
|
- application/json
|
49
49
|
response:
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- text/plain; charset=utf-8
|
56
56
|
Date:
|
57
|
-
-
|
57
|
+
- Fri, 06 Jun 2014 14:24:10 GMT
|
58
58
|
Content-Length:
|
59
59
|
- '21'
|
60
60
|
Connection:
|
@@ -64,5 +64,5 @@ http_interactions:
|
|
64
64
|
string: |
|
65
65
|
No command specified
|
66
66
|
http_version:
|
67
|
-
recorded_at:
|
68
|
-
recorded_with: VCR 2.
|
67
|
+
recorded_at: Fri, 06 Jun 2014 14:24:10 GMT
|
68
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.11/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.11.1
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 06 Jun 2014 14:37:22 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -27,99 +27,104 @@ http_interactions:
|
|
27
27
|
body:
|
28
28
|
encoding: UTF-8
|
29
29
|
string: |-
|
30
|
-
[{"description":"SSH Daemon created in the ssh daemon documentation example","is_official":false,"is_trusted":false,"name":"dhrp/sshd","star_count":
|
30
|
+
[{"description":"SSH Daemon created in the ssh daemon documentation example","is_official":false,"is_trusted":false,"name":"dhrp/sshd","star_count":5}
|
31
31
|
,{"description":"sshd base on angelrr7702/ubuntu-13.10","is_official":false,"is_trusted":true,"name":"angelrr7702/ubuntu-13.10-sshd","star_count":4}
|
32
32
|
,{"description":"Open JDK 7 on Plain Debian with SSHD","is_official":false,"is_trusted":true,"name":"shuron/debian-openjdk-7","star_count":2}
|
33
|
-
,{"description":"
|
34
|
-
,{"description":"
|
35
|
-
,{"description":"centos with ssh, LAMP, PHPMyAdmin(root password 'toor' and MySQL root password 'sysadmin'). Auto starts sshd, MySQL and Apache. Just launch using 'docker run -d mbkan/lamp'. ","is_official":false,"is_trusted":false,"name":"mbkan/lamp","star_count":1}
|
36
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"iliyan/docker-nginx-sshd","star_count":1}
|
37
|
-
,{"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}
|
38
|
-
,{"description":"ssh server: Ubuntu 13.10, user=root, passwd=root","is_official":false,"is_trusted":true,"name":"jchavas/saucy-sshd","star_count":1}
|
33
|
+
,{"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}
|
34
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"angelrr7702/docker-ubuntu-14.04-sshd","star_count":2}
|
39
35
|
,{"description":"","is_official":false,"is_trusted":true,"name":"moul/sshd","star_count":1}
|
40
|
-
,{"description":"Ubuntu 13.10
|
41
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
42
|
-
,{"description":"","is_official":false,"is_trusted":
|
43
|
-
,{"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}
|
44
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"blissdev/sshd","star_count":0}
|
45
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"dockeruser/sshd","star_count":0}
|
36
|
+
,{"description":"ssh server: Ubuntu 13.10, user=root, passwd=root","is_official":false,"is_trusted":true,"name":"jchavas/saucy-sshd","star_count":1}
|
37
|
+
,{"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}
|
38
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"iliyan/docker-nginx-sshd","star_count":1}
|
46
39
|
,{"description":"","is_official":false,"is_trusted":true,"name":"monokrome/sshd","star_count":0}
|
47
|
-
,{"description":"","is_official":false,"is_trusted":
|
40
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"typester/sshd","star_count":0}
|
41
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd-supervisor","star_count":0}
|
42
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"dockeruser/sshd","star_count":0}
|
43
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"viliusl/ubuntu-sshd-nginx","star_count":0}
|
44
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"bsdlp/sshd","star_count":0}
|
45
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"kumarpraveen/fedora-sshd","star_count":0}
|
46
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"jcheng/docker-sshd","star_count":0}
|
47
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"brandonmartin/docker-ubuntu-runit-sshd","star_count":0}
|
48
|
+
,{"description":"CentOS with sshd","is_official":false,"is_trusted":false,"name":"mkrishnamurthy/sshd","star_count":0}
|
49
|
+
,{"description":"Centos 6.4 (64bit) with sshd","is_official":false,"is_trusted":false,"name":"jonhadfield/sshd","star_count":0}
|
50
|
+
,{"description":"Runs a SSHd server in daemon mode","is_official":false,"is_trusted":false,"name":"zefhemel/sshd","star_count":0}
|
51
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"fclaeys/sshd","star_count":0}
|
48
52
|
,{"description":"","is_official":false,"is_trusted":false,"name":"dongweiming/sshd","star_count":0}
|
53
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"gridiron/sshd","star_count":0}
|
54
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"jamtur01/sshd","star_count":0}
|
55
|
+
,{"description":"Base + sshd + proxy + static ip addr.","is_official":false,"is_trusted":false,"name":"simoman/sshd","star_count":0}
|
49
56
|
,{"description":"","is_official":false,"is_trusted":false,"name":"tekknolagi/sshd","star_count":0}
|
57
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"pmerrell/sshd","star_count":0}
|
58
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"oss17888/sshd","star_count":0}
|
59
|
+
,{"description":"Ubuntu 12.04 with Openssh-server preinstalled to be used as a basic image to build new images.","is_official":false,"is_trusted":false,"name":"sullof/sshd","star_count":0}
|
50
60
|
,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshd","star_count":0}
|
51
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
52
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
61
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"hyone/sshd","star_count":0}
|
62
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"kpelykh/sshd","star_count":0}
|
63
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"blissdev/sshd","star_count":0}
|
64
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"danieldreier/sshd","star_count":0}
|
65
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"colorscode/sshd","star_count":0}
|
66
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"lijin/sshd","star_count":0}
|
67
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"richburroughs/sshd","star_count":0}
|
53
68
|
,{"description":"","is_official":false,"is_trusted":false,"name":"jurajpelikan/sshd","star_count":0}
|
54
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"skardan/sshd","star_count":0}
|
55
69
|
,{"description":"","is_official":false,"is_trusted":false,"name":"vgauthier/sshd","star_count":0}
|
56
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
57
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
58
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"tiokksar/sshd","star_count":0}
|
70
|
+
,{"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}
|
71
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"uzero/sshd","star_count":0}
|
59
72
|
,{"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}
|
73
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"mammal/sshd","star_count":0}
|
74
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"dragon9783/sshd","star_count":0}
|
75
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"skardan/sshd","star_count":0}
|
76
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"yuyat/sshd","star_count":0}
|
77
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"tjordanchat/sshd","star_count":0}
|
78
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"yestxh/sshd","star_count":0}
|
60
79
|
,{"description":"","is_official":false,"is_trusted":false,"name":"yoshiso/sshd","star_count":0}
|
61
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
62
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
80
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"rblomberg/sshd","star_count":0}
|
81
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"marcosvm/sshd","star_count":0}
|
82
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"apetersen/sshd","star_count":0}
|
63
83
|
,{"description":"","is_official":false,"is_trusted":false,"name":"malbin/sshd","star_count":0}
|
64
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
65
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"typester/sshd","star_count":0}
|
66
|
-
,{"description":"Ubuntu 12.04\nNodeJS 0.10.18\nsshd","is_official":false,"is_trusted":false,"name":"realyze/ubuntu-node-sshd","star_count":0}
|
67
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/mongodb-sshd","star_count":0}
|
68
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"rayang2004/sshd","star_count":0}
|
69
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"hyao/sshd","star_count":0}
|
70
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"ckrintz/sshd","star_count":0}
|
71
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"uzero/sshd","star_count":0}
|
72
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"colorscode/sshd","star_count":0}
|
84
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"mrtmexx/sshd","star_count":0}
|
73
85
|
,{"description":"","is_official":false,"is_trusted":false,"name":"greut/sshd","star_count":0}
|
74
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
75
|
-
,{"description":"
|
86
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"hyao/sshd","star_count":0}
|
87
|
+
,{"description":"Ubuntu 12.04\nNodeJS 0.10.18\nsshd","is_official":false,"is_trusted":false,"name":"realyze/ubuntu-node-sshd","star_count":0}
|
76
88
|
,{"description":"","is_official":false,"is_trusted":false,"name":"j4pe/sshd","star_count":0}
|
77
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
78
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
79
|
-
,{"description":"","is_official":false,"is_trusted":
|
80
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd","star_count":0}
|
81
|
-
,{"description":"***WIP***\npassword is H3rpD3rp","is_official":false,"is_trusted":false,"name":"bsdlp/arch-sshd","star_count":0}
|
82
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"kumarpraveen/fedora-sshd","star_count":0}
|
83
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"danhixon/docker-sshd","star_count":0}
|
89
|
+
,{"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}
|
90
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"steshaw/sshd","star_count":0}
|
91
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"ckrintz/sshd","star_count":0}
|
84
92
|
,{"description":"","is_official":false,"is_trusted":false,"name":"morimorihoge/precise-sshd","star_count":0}
|
85
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"
|
93
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"eembsen/centos-sshd","star_count":0}
|
94
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"progrium/sshd-example","star_count":0}
|
95
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"johnfuller/sshd","star_count":0}
|
96
|
+
,{"description":"shell honeypot\n\nroot/mypass","is_official":false,"is_trusted":false,"name":"robwc/ubuntu-sshd","star_count":0}
|
97
|
+
,{"description":"***WIP***\npassword is H3rpD3rp","is_official":false,"is_trusted":false,"name":"bsdlp/arch-sshd","star_count":0}
|
98
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"hirotaka/ubuntu-ja-sshd","star_count":0}
|
99
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"cespare/sshd","star_count":0}
|
86
100
|
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping","star_count":0}
|
87
|
-
,{"description":"","is_official":false,"is_trusted":true,"name":"
|
88
|
-
,{"description":"
|
89
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"5agms43sgo2z/jessie-with-sshd","star_count":0}
|
90
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd-nginx-php-fpm","star_count":0}
|
101
|
+
,{"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":0}
|
102
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"zilin/docker-sshd","star_count":0}
|
91
103
|
,{"description":"","is_official":false,"is_trusted":false,"name":"msinger/openfoam-sshd","star_count":0}
|
92
104
|
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping2","star_count":0}
|
105
|
+
,{"description":"Provides access to pharo-core command line interface","is_official":false,"is_trusted":false,"name":"pshouse/sshd-pharo-core","star_count":0}
|
93
106
|
,{"description":"","is_official":false,"is_trusted":false,"name":"lorieri/daemontools-sshd-nginx","star_count":0}
|
94
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"mikewr/u1210-sshd-postgres","star_count":0}
|
95
107
|
,{"description":"","is_official":false,"is_trusted":false,"name":"johnshen/oink-centos65-sshd","star_count":0}
|
96
|
-
,{"description":"","is_official":false,"is_trusted":
|
108
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"rayang2004/sshd","star_count":0}
|
109
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"5agms43sgo2z/jessie-with-sshd","star_count":0}
|
110
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/mongodb-sshd","star_count":0}
|
111
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"pantinor/centos_sshd","star_count":0}
|
112
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"mikewr/u1210-sshd-postgres","star_count":0}
|
113
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd-nginx-php-fpm","star_count":0}
|
114
|
+
,{"description":"Base docker image includes sshd and supervisor.","is_official":false,"is_trusted":true,"name":"taka0125/base","star_count":0}
|
115
|
+
,{"description":"","is_official":false,"is_trusted":false,"name":"apl330/sshdx","star_count":0}
|
97
116
|
,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshdnpw","star_count":0}
|
98
117
|
,{"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}
|
99
|
-
,{"description":"","is_official":false,"is_trusted":
|
100
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"defishguy/jmeter_sshd","star_count":0}
|
101
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"wma55/u1210sshd","star_count":0}
|
102
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"onyxperidot/base_sshd","star_count":0}
|
103
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"qooleot/ivcsshd","star_count":0}
|
104
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"pungoyal/centos_sshd","star_count":0}
|
105
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"mushu/ubuntu_12_04_sshd","star_count":0}
|
106
|
-
,{"description":"Basic Debian Wheezy container using supervisord to start sshd.\n","is_official":false,"is_trusted":false,"name":"andrelop/docker-debian","star_count":0}
|
107
|
-
,{"description":"This image contains configured sshd daemon and pre-installed ubuntu's build-essential package, the default root's password is 'passw0rd'.","is_official":false,"is_trusted":false,"name":"parkghost/base","star_count":0}
|
108
|
-
,{"description":"A container for Go developers - Go 1.1 + Git + sshd - run with \"docker run -d -p 22 -h toorop/golang /usr/bin/svscanboot\" - connect throw SSH \"ssh root@localhost -pSSHD_PORT\" default password is \"demo\" - add users : \"adduser USERNAME\" this will also configure USER $HOME directory - Start coding. Enjoy ;)","is_official":false,"is_trusted":false,"name":"toorop/golang","star_count":0}
|
109
|
-
,{"description":"Saltstack Salt Master Image, runs sshd and salt-master via supervisor, exposes 22, 4505 and 4506. Needs configuration files for the master fed in through volumes mounted to/srv and /etc/salt.","is_official":false,"is_trusted":false,"name":"sroegner/saltmaster","star_count":0}
|
110
|
-
,{"description":"Base + sshd + proxy + static ip addr.","is_official":false,"is_trusted":false,"name":"simoman/sshd","star_count":0}
|
111
|
-
,{"description":"Centos 6.4 (64bit) with sshd","is_official":false,"is_trusted":false,"name":"jonhadfield/sshd","star_count":0}
|
118
|
+
,{"description":"A ssh server with password: admin","is_official":false,"is_trusted":true,"name":"wnameless/sshd","star_count":0}
|
112
119
|
,{"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}
|
113
|
-
,{"description":"Runs a SSHd server in daemon mode","is_official":false,"is_trusted":false,"name":"zefhemel/sshd","star_count":0}
|
114
|
-
,{"description":"","is_official":false,"is_trusted":false,"name":"kpelykh/sshd","star_count":0}
|
115
|
-
,{"description":"CentOS with sshd","is_official":false,"is_trusted":false,"name":"mkrishnamurthy/sshd","star_count":0}
|
116
120
|
,{"description":"sshd image based on official Debian image","is_official":false,"is_trusted":true,"name":"docku/sshd","star_count":0}
|
117
|
-
,{"description":"
|
121
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd","star_count":0}
|
118
122
|
,{"description":"","is_official":false,"is_trusted":true,"name":"titanous/sshd","star_count":0}
|
119
|
-
,{"description":"
|
120
|
-
,{"description":"","is_official":false,"is_trusted":
|
121
|
-
,{"description":"","is_official":false,"is_trusted":
|
123
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"kiss/sshd","star_count":0}
|
124
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"mckoss/sshd","star_count":0}
|
125
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"danhixon/sshd","star_count":0}
|
126
|
+
,{"description":"","is_official":false,"is_trusted":true,"name":"zanegrey/sshd","star_count":0}
|
122
127
|
]
|
123
128
|
http_version:
|
124
|
-
recorded_at:
|
125
|
-
recorded_with: VCR 2.
|
129
|
+
recorded_at: Fri, 06 Jun 2014 14:37:22 GMT
|
130
|
+
recorded_with: VCR 2.9.2
|