docker-api 1.12.0 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/lib/docker/container.rb +15 -0
  3. data/lib/docker/image.rb +0 -10
  4. data/lib/docker/version.rb +2 -2
  5. data/spec/docker/container_spec.rb +26 -1
  6. data/spec/docker/image_spec.rb +0 -11
  7. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +4 -4
  8. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +6 -6
  9. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +6 -6
  10. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +4 -4
  11. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +127 -75
  12. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +12 -16
  13. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +12 -16
  14. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +17 -21
  15. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +14 -18
  16. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +9 -13
  17. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +39 -43
  18. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +22 -26
  19. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +12 -11
  20. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +5 -5
  21. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +15 -19
  22. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +15 -453687
  23. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +12 -11
  24. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +12 -11
  25. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +64 -42
  26. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +11 -11
  27. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +9 -9
  28. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +121 -0
  29. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +37 -49
  30. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +13 -17
  31. 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 +36 -48
  32. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +20 -24
  33. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +67 -49
  34. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +23 -26
  35. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +150 -0
  36. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +13 -17
  37. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +9 -13
  38. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +13 -17
  39. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +10 -11
  40. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +4 -4
  41. 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 -24
  42. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +4 -4
  43. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +4 -4
  44. 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 +8 -8
  45. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +6 -6
  46. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +21 -24
  47. 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 +39 -43
  48. 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 +68 -18
  49. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -6
  50. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +10 -10
  51. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +18 -24
  52. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +9 -9
  53. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +5 -5
  54. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +23 -27
  55. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +20 -20
  56. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +18 -18
  57. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +23 -27
  58. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +4 -4
  59. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +25 -28
  60. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +13 -12
  61. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +32 -71
  62. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +28 -28
  63. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +35 -34
  64. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +50 -21
  65. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +16 -20
  66. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +16 -20
  67. 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
  68. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +66 -34
  69. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +8 -8
  70. metadata +8 -5
  71. data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +0 -194
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.12/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.1
11
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:18:54 GMT
22
+ - Thu, 26 Jun 2014 19:52: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: Fri, 06 Jun 2014 14:18:55 GMT
37
+ recorded_at: Thu, 26 Jun 2014 19:52:56 GMT
38
38
  - request:
39
39
  method: delete
40
- uri: unix:///var/run/docker.sock/v1.11/images/b750fe79269d?force=true
40
+ uri: unix:///var/run/docker.sock/v1.12/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.11.1
46
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:18:55 GMT
57
+ - Thu, 26 Jun 2014 19:52:56 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: Fri, 06 Jun 2014 14:18:55 GMT
71
+ recorded_at: Thu, 26 Jun 2014 19:52:56 GMT
72
72
  - request:
73
73
  method: get
74
- uri: unix:///var/run/docker.sock/v1.11/images/json
74
+ uri: unix:///var/run/docker.sock/v1.12/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.11.1
80
+ - Swipely/Docker-API 1.11.2
81
81
  Content-Type:
82
82
  - text/plain
83
83
  response:
@@ -88,22 +88,51 @@ http_interactions:
88
88
  Content-Type:
89
89
  - application/json
90
90
  Date:
91
- - Fri, 06 Jun 2014 14:18:55 GMT
92
- Content-Length:
93
- - '1776'
91
+ - Thu, 26 Jun 2014 19:52:56 GMT
94
92
  Connection:
95
93
  - close
94
+ Transfer-Encoding:
95
+ - ''
96
96
  body:
97
97
  encoding: UTF-8
98
98
  string: |-
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}
99
+ [{"Created":1403812046,"Id":"a0c4eb76de43e01915098f7901d9f3556c6653547504bede6de3ac4a0cbeba94","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
100
+ ,{"Created":1403812030,"Id":"d7a1c20ffa414983c3afe003c09080bfe2648932f55d2665e201a32ec0c3896a","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
101
+ ,{"Created":1403811775,"Id":"41b70f59d9b667fa6b42c8087b517f0e4d0da16631568ba013de356c3f4b607c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":35,"VirtualSize":175307070}
102
+ ,{"Created":1403644956,"Id":"ea7d6801c5389e32dcf9577c3778f1eba9a1ee978db8f48020e4c479bc26e468","ParentId":"a343823119db57543086463ae7da8aaadbcef25781c0c4d121397a2550a419a6","RepoTags":["ubuntu:precise","ubuntu:12.04"],"Size":0,"VirtualSize":127379622}
103
+ ,{"Created":1403644946,"Id":"ef83896b7fb99b00b9e0e6ac943826386e7edcef11a3a2f58b42011ab4a4e683","ParentId":"99e40d806d071d4e50eccd12bd363e938610b3fe1c04b77c48ca8dec3d2f4463","RepoTags":["ubuntu:latest","ubuntu:trusty"],"Size":0,"VirtualSize":192708307}
104
+ ,{"Created":1403212888,"Id":"2904502bb4e019d2d023dfa202f11ed3f18f2cf3da9da9054de7f442eabc5862","ParentId":"6beff66e78fff47f5bb48853e19e2afc6c3ea46e97cc831327ad97b1db802c56","RepoTags":["registry:0.6.9"],"Size":0,"VirtualSize":455894073}
105
+ ,{"Created":1403212849,"Id":"346f0c4d40c31bdbbeb4f6f8dad2512303676431f96f6aa2b4094d955ac52a30","ParentId":"e3e03b4d0df5ad79fa837c68cb1f669e5c7b1371a5c20a6ddc34f53dffa520e8","RepoTags":["registry:0.6.8"],"Size":0,"VirtualSize":447764545}
106
+ ,{"Created":1403169743,"Id":"6e526128fd5b256ced4e7863d4e431cf3fca87ae2058c1e40ca65bf139e68285","ParentId":"14faab53c729894ee2c5e929839a8437392473ed7fba6e756d15543c269a4e06","RepoTags":["registry:0.7.3","registry:latest","localhost:5000/registry:test"],"Size":0,"VirtualSize":515971797}
107
+ ,{"Created":1403128455,"Id":"c5881f11ded97fd2252adf93268114329e985624c5d7bb86e439a36109d1124e","ParentId":"5796a7edb16bffa3408e0f00b1b8dc0fa4651ac88b68eee5a01b088bedb9c54a","RepoTags":["ubuntu:12.10","ubuntu:quantal"],"Size":70975627,"VirtualSize":172064416}
108
+ ,{"Created":1403128435,"Id":"463ff6be4238c14f5b88898f17b47a9cf494f9a9be7b6170c3e852568d2b0432","ParentId":"47dd6d11a49fc66a304bb679d545e64335cfb1f12dacf76c89e1cbe50af5574d","RepoTags":["ubuntu:raring","ubuntu:13.04"],"Size":70819643,"VirtualSize":169359875}
109
+ ,{"Created":1403128415,"Id":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","ParentId":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","RepoTags":["ubuntu:13.10","ubuntu:saucy"],"Size":4260002,"VirtualSize":184564423}
110
+ ,{"Created":1403128361,"Id":"e54ca5efa2e962582a223ca9810f7f1b62ea9b5c3975d14a5da79d3bf6020f37","ParentId":"6c37f792ddacad573016e6aea7fc9fb377127b4767ce6104c9f869314a12041e","RepoTags":["ubuntu:14.04"],"Size":8,"VirtualSize":276100357}
111
+ ,{"Created":1403127210,"Id":"8b65881eed3d655baa42fb8d382eb41b910d53967dd8db5378f53dff0936bda0","ParentId":"351ff2a31f8b7df7d3850b79889000872d4dfb01b43243d167696a8dd8c4aa66","RepoTags":["registry:0.7.2"],"Size":0,"VirtualSize":515971448}
112
+ ,{"Created":1403126795,"Id":"a6a394071526544442526c8912a86af21dd67d5565a979cc69871526a93101eb","ParentId":"e0ba21c3d81b381eee5804569ad5e28cb4b0319b6748c8692146b950df802d14","RepoTags":["registry:0.7.0"],"Size":0,"VirtualSize":515969934}
113
+ ,{"Created":1403126655,"Id":"cc32522f16d6878d00266985371cb112f15c56c521c5d34d9435b544cbfe4107","ParentId":"7d2383bd19ad090aad336056576a7ff609ee0fc39d4e6089e268a938cce75455","RepoTags":["registry:0.7.1"],"Size":0,"VirtualSize":515968885}
114
+ ,{"Created":1402430534,"Id":"795d6b82162f9fcc3450a6274abd300eb2efb9ff151f92cf452bdcbe4b092b0b","ParentId":"8e14c810a006f306e9ce15b29e74e8b4e5db71ddeeef38e7216ad27db8851db2","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":887027674}
115
+ ,{"Created":1402430271,"Id":"24b631358e16f831d51568e0b5d1a32d2c6c03873f23ae92129509fd686ae4c5","ParentId":"3ee2729e9d570fbb680e6e6004dcd0e6c1c965ac02d912add09330cbde4ae853","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":887027686}
116
+ ,{"Created":1402430125,"Id":"2e68e4667d3ff21d5ab5167cac65514861661ce9720eb93776830dc41f70b983","ParentId":"3314be34a587cea84339669aea4b72406832ee236f202bc3a48cc72bba7602e4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":887015362}
117
+ ,{"Created":1402429513,"Id":"76587bc93b7d55c7be93165acca017f211b9b7ebe5902ac508bac1a1f8d98b88","ParentId":"3d7fae84c2a98102138dcf8efd80c835d1f335c2a4d298155d1c2b808b5d9986","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":887003023}
118
+ ,{"Created":1402427391,"Id":"84e6d244e974c2f72cba13e2e25e1aef7667faaeff28afe3eafb62522d9da0ec","ParentId":"8b8bfb1009a0a712928e3cfbf31b63b68b978ff2008d49f23df4a84e2e191219","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":886831860}
119
+ ,{"Created":1402426735,"Id":"0cf0d2c9f3c936f4d52fc09603028fc3a5428c68717a894ca67c8761b42a03e6","ParentId":"69e62ba397ccf8492af2cf337afc6f7994fec6a31655ced4b30edac59a3f9750","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":886831791}
120
+ ,{"Created":1402426420,"Id":"2442f86267b02ca4760c3496de2785058896ca295a2f4773e2f18a59530925b1","ParentId":"638225b81ab0a2bfaa621eaf062eaf572c57312bac49c1a5aa77beb306b94dcb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":886831828}
121
+ ,{"Created":1402426253,"Id":"6d0a0fb5176e2efb906ffcaa46c5cc740f2a1227e7027c68c1f3b45dc64f7b79","ParentId":"2eed100c45a1f8c67fdad4eb76d93cec9693a0838ca659f734cda7f3a975899c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":26328797,"VirtualSize":886831770}
122
+ ,{"Created":1402425982,"Id":"f39385fcb3726991fd8ffee4cc65ba68a8d8bd4df578ff9ff5779289e906d239","ParentId":"e93dfbb8794ac1e5907ace726f9ec991f61cf7c4d5ac1d149104d515f291e2bd","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":69314963,"VirtualSize":814170129}
123
+ ,{"Created":1402425801,"Id":"4d1584ae379a57233b738fc2c928b1b9ca18adc2ae6bff2aef6a6fe233d7a164","ParentId":"e41a4fd758454ada433eb96611a1ec651ea41db9574911d3a80e6800e6ca9c70","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":69302607,"VirtualSize":738552991}
124
+ ,{"Created":1401346989,"Id":"cd8d7a6d86d1c9208cb0d0a58ec2143ddacb7274c4e9e390e492f7f7f199d06a","ParentId":"66491ca6d73c9682a7a51fd113e40a4de875f77b8328f282f76c821230267dfc","RepoTags":["registry:0.6.7"],"Size":0,"VirtualSize":452464521}
125
+ ,{"Created":1398108230,"Id":"3db9c44f45209632d6050b35958829c3a2aa256d81b9a7be45b362ff85c54710","ParentId":"6cfa4d1f33fb861d4d114f43b25abd0ac737509268065cdfd69d544a59c85ab8","RepoTags":["ubuntu:10.04","ubuntu:lucid"],"Size":182964289,"VirtualSize":182964289}
126
+ ,{"Created":1398032515,"Id":"a64697d710895da8e3a4bf21b40f354c48fc312ab40602237643be0b50a2ae58","ParentId":"4bbfef5859170f7589f893a38992cc08153abe1635c856b8f78cb3421cd7333b","RepoTags":["base/arch:2014.04.01","base/arch:latest"],"Size":277105612,"VirtualSize":277105612}
127
+ ,{"Created":1397072872,"Id":"e260f5a77e5274676eb03efe78ef7985bc127f08d51207a13b576ee4632dc9e6","ParentId":"d67dddf875894215dad2bbe194edcefc5c43edc095871645cdfb778c4461c0ce","RepoTags":["registry:0.6.6"],"Size":0,"VirtualSize":443013062}
128
+ ,{"Created":1396387097,"Id":"e7bac0a3804b9337bb07661696e2c20472f45f14e37a5d7a60f97670d51a8954","ParentId":"88100e69461357a1f61c0baf7dbfccb636f47f62cea185538875a35f2626edab","RepoTags":["registry:0.6.5"],"Size":0,"VirtualSize":432979458}
129
+ ,{"Created":1391445763,"Id":"1f7bbd131cd84ba515b93c25de038d247652d5f24a797a9778294c6aea00d65a","ParentId":"15dddc3cda4b0a8e797da3f3a3a5fd51a55115f70c626c5e81fadea9ac65438b","RepoTags":["registry:0.6.3"],"Size":0,"VirtualSize":489980339}
130
+ ,{"Created":1391445564,"Id":"0b520d776e7dcaf9beb07f7a833d21b22cdfc5450f78d39fce97da0458a6e034","ParentId":"e1c6f8c2815c142ecce671aa0aea166b4db6e22405690de7a21eef99acb29c8c","RepoTags":["registry:0.6.2"],"Size":0,"VirtualSize":466578025}
131
+ ,{"Created":1391445282,"Id":"9f98cb899f46eb58796405f33dafa73faaca3da2f7d7b4b690b04f56cfc44640","ParentId":"09da4bd2aa01e2758aed057e23e5318661687209de9fc20c37ceb0516e5b767f","RepoTags":["registry:0.6.1"],"Size":0,"VirtualSize":460122182}
132
+ ,{"Created":1391445052,"Id":"873f518b98ef0431ee92b48767b5f8b1ce20ac1f5fc74644e99867c9727d8864","ParentId":"c565a3cc048c7648c9ff8d0884821bc84ffb3875e22f0c8c0cd2da4b45ca120b","RepoTags":["registry:0.6.0"],"Size":0,"VirtualSize":466548941}
133
+ ,{"Created":1391444782,"Id":"e8e5377f830734be8e3eaf247f234a5ee1e27e55e2160b0dd77b0487b2f15595","ParentId":"d490731c796ebc96b78a1434fc263e92859cb9ec4325c84b724cd4d2c5dc32c1","RepoTags":["registry:0.5.9"],"Size":0,"VirtualSize":466303979}
134
+ ,{"Created":1391444356,"Id":"b04ace768d594669c8e46bee7c9d9c6b13ea77a117e5dd01a522c9b65ae96e5c","ParentId":"68f965c066b11567191563e1c496c628383f267f02218457e38ecb9f21119b42","RepoTags":["registry:0.6.4"],"Size":0,"VirtualSize":489975622}
106
135
  ]
107
136
  http_version:
108
- recorded_at: Fri, 06 Jun 2014 14:18:55 GMT
137
+ recorded_at: Thu, 26 Jun 2014 19:52:56 GMT
109
138
  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.11/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.12/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.1
11
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:23:46 GMT
22
+ - Thu, 26 Jun 2014 20:15:43 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: Fri, 06 Jun 2014 14:23:52 GMT
37
+ recorded_at: Thu, 26 Jun 2014 20:15:45 GMT
38
38
  - request:
39
39
  method: post
40
- uri: unix:///var/run/docker.sock/v1.11/containers/create
40
+ uri: unix:///var/run/docker.sock/v1.12/containers/create
41
41
  body:
42
42
  encoding: UTF-8
43
43
  string: '{"Image":"b750fe79269d","Cmd":["ls","/lib64/"]}'
44
44
  headers:
45
45
  User-Agent:
46
- - Swipely/Docker-API 1.11.1
46
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:23:52 GMT
57
+ - Thu, 26 Jun 2014 20:15:45 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":"63e99e92384544c9730b7299cbf1fd9a21c770f51fcb7f93757dd6cbfc4edf55","Warnings":null}
65
+ {"Id":"66df760ec965b57dd5b83650c1961055755d6c0f1a628cf961a5a61608a4e588","Warnings":null}
66
66
  http_version:
67
- recorded_at: Fri, 06 Jun 2014 14:23:52 GMT
67
+ recorded_at: Thu, 26 Jun 2014 20:15:45 GMT
68
68
  - request:
69
69
  method: post
70
- uri: unix:///var/run/docker.sock/v1.11/containers/63e99e92384544c9730b7299cbf1fd9a21c770f51fcb7f93757dd6cbfc4edf55/start
70
+ uri: unix:///var/run/docker.sock/v1.12/containers/66df760ec965b57dd5b83650c1961055755d6c0f1a628cf961a5a61608a4e588/start
71
71
  body:
72
72
  encoding: UTF-8
73
73
  string: '{}'
74
74
  headers:
75
75
  User-Agent:
76
- - Swipely/Docker-API 1.11.1
76
+ - Swipely/Docker-API 1.11.2
77
77
  Content-Type:
78
78
  - application/json
79
79
  response:
@@ -82,27 +82,23 @@ http_interactions:
82
82
  message:
83
83
  headers:
84
84
  Date:
85
- - Fri, 06 Jun 2014 14:23:52 GMT
86
- Content-Length:
87
- - '0'
88
- Content-Type:
89
- - text/plain; charset=utf-8
85
+ - Thu, 26 Jun 2014 20:15:45 GMT
90
86
  Connection:
91
87
  - close
92
88
  body:
93
89
  encoding: UTF-8
94
90
  string: ''
95
91
  http_version:
96
- recorded_at: Fri, 06 Jun 2014 14:23:52 GMT
92
+ recorded_at: Thu, 26 Jun 2014 20:15:45 GMT
97
93
  - request:
98
94
  method: post
99
- uri: unix:///var/run/docker.sock/v1.11/containers/63e99e92384544c9730b7299cbf1fd9a21c770f51fcb7f93757dd6cbfc4edf55/attach?stderr=true&stdout=true&stream=true
95
+ uri: unix:///var/run/docker.sock/v1.12/containers/66df760ec965b57dd5b83650c1961055755d6c0f1a628cf961a5a61608a4e588/attach?stderr=true&stdout=true&stream=true
100
96
  body:
101
97
  encoding: US-ASCII
102
98
  string: ''
103
99
  headers:
104
100
  User-Agent:
105
- - Swipely/Docker-API 1.11.1
101
+ - Swipely/Docker-API 1.11.2
106
102
  Content-Type:
107
103
  - text/plain
108
104
  response:
@@ -117,5 +113,5 @@ http_interactions:
117
113
  string: !binary |-
118
114
  AQAAAAAAABVsZC1saW51eC14ODYtNjQuc28uMgo=
119
115
  http_version:
120
- recorded_at: Fri, 06 Jun 2014 14:23:52 GMT
116
+ recorded_at: Thu, 26 Jun 2014 20:15:45 GMT
121
117
  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.11/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.12/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.1
11
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:23:52 GMT
22
+ - Thu, 26 Jun 2014 20:15: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: Fri, 06 Jun 2014 14:23:58 GMT
37
+ recorded_at: Thu, 26 Jun 2014 20:16:00 GMT
38
38
  - request:
39
39
  method: post
40
- uri: unix:///var/run/docker.sock/v1.11/containers/create
40
+ uri: unix:///var/run/docker.sock/v1.12/containers/create
41
41
  body:
42
42
  encoding: UTF-8
43
43
  string: '{"Image":"b750fe79269d","Cmd":["which","pwd"]}'
44
44
  headers:
45
45
  User-Agent:
46
- - Swipely/Docker-API 1.11.1
46
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:23:59 GMT
57
+ - Thu, 26 Jun 2014 20:16:01 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":"f329903e748888c4c1dee34ca3274f1ff147dee3529fef902bc1b47fea1f54ae","Warnings":null}
65
+ {"Id":"b9e9ec0cfe9aabee001585ef45685824af5d6493f4893ae2b4c0002336275c10","Warnings":null}
66
66
  http_version:
67
- recorded_at: Fri, 06 Jun 2014 14:23:59 GMT
67
+ recorded_at: Thu, 26 Jun 2014 20:16:01 GMT
68
68
  - request:
69
69
  method: post
70
- uri: unix:///var/run/docker.sock/v1.11/containers/f329903e748888c4c1dee34ca3274f1ff147dee3529fef902bc1b47fea1f54ae/start
70
+ uri: unix:///var/run/docker.sock/v1.12/containers/b9e9ec0cfe9aabee001585ef45685824af5d6493f4893ae2b4c0002336275c10/start
71
71
  body:
72
72
  encoding: UTF-8
73
73
  string: '{}'
74
74
  headers:
75
75
  User-Agent:
76
- - Swipely/Docker-API 1.11.1
76
+ - Swipely/Docker-API 1.11.2
77
77
  Content-Type:
78
78
  - application/json
79
79
  response:
@@ -82,27 +82,23 @@ http_interactions:
82
82
  message:
83
83
  headers:
84
84
  Date:
85
- - Fri, 06 Jun 2014 14:23:59 GMT
86
- Content-Length:
87
- - '0'
88
- Content-Type:
89
- - text/plain; charset=utf-8
85
+ - Thu, 26 Jun 2014 20:16:01 GMT
90
86
  Connection:
91
87
  - close
92
88
  body:
93
89
  encoding: UTF-8
94
90
  string: ''
95
91
  http_version:
96
- recorded_at: Fri, 06 Jun 2014 14:23:59 GMT
92
+ recorded_at: Thu, 26 Jun 2014 20:16:01 GMT
97
93
  - request:
98
94
  method: post
99
- uri: unix:///var/run/docker.sock/v1.11/containers/f329903e748888c4c1dee34ca3274f1ff147dee3529fef902bc1b47fea1f54ae/attach?stderr=true&stdout=true&stream=true
95
+ uri: unix:///var/run/docker.sock/v1.12/containers/b9e9ec0cfe9aabee001585ef45685824af5d6493f4893ae2b4c0002336275c10/attach?stderr=true&stdout=true&stream=true
100
96
  body:
101
97
  encoding: US-ASCII
102
98
  string: ''
103
99
  headers:
104
100
  User-Agent:
105
- - Swipely/Docker-API 1.11.1
101
+ - Swipely/Docker-API 1.11.2
106
102
  Content-Type:
107
103
  - text/plain
108
104
  response:
@@ -117,5 +113,5 @@ http_interactions:
117
113
  string: !binary |-
118
114
  AQAAAAAAAAkvYmluL3B3ZAo=
119
115
  http_version:
120
- recorded_at: Fri, 06 Jun 2014 14:23:59 GMT
116
+ recorded_at: Thu, 26 Jun 2014 20:16:01 GMT
121
117
  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.11/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.12/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.1
11
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:23:59 GMT
22
+ - Thu, 26 Jun 2014 20:16:05 GMT
23
23
  Connection:
24
24
  - close
25
25
  Transfer-Encoding:
@@ -27,23 +27,23 @@ http_interactions:
27
27
  body:
28
28
  encoding: UTF-8
29
29
  string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
30
- (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
31
- image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
30
+ (ubuntu-12.10) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
31
+ image (ubuntu-12.10) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
32
32
  dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
33
33
  complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Download
34
34
  complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
35
35
  complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
36
36
  http_version:
37
- recorded_at: Fri, 06 Jun 2014 14:24:10 GMT
37
+ recorded_at: Thu, 26 Jun 2014 20:16:07 GMT
38
38
  - request:
39
39
  method: post
40
- uri: unix:///var/run/docker.sock/v1.11/containers/create
40
+ uri: unix:///var/run/docker.sock/v1.12/containers/create
41
41
  body:
42
42
  encoding: UTF-8
43
43
  string: '{"Image":"b750fe79269d","Cmd":null}'
44
44
  headers:
45
45
  User-Agent:
46
- - Swipely/Docker-API 1.11.1
46
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:24:10 GMT
57
+ - Thu, 26 Jun 2014 20:16:07 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: Fri, 06 Jun 2014 14:24:10 GMT
67
+ recorded_at: Thu, 26 Jun 2014 20:16:07 GMT
68
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.11/images/search?term=sshd
5
+ uri: unix:///var/run/docker.sock/v1.12/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.1
11
+ - Swipely/Docker-API 1.11.2
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
- - Fri, 06 Jun 2014 14:37:22 GMT
22
+ - Thu, 26 Jun 2014 20:36:12 GMT
23
23
  Connection:
24
24
  - close
25
25
  Transfer-Encoding:
@@ -28,103 +28,135 @@ http_interactions:
28
28
  encoding: UTF-8
29
29
  string: |-
30
30
  [{"description":"SSH Daemon created in the ssh daemon documentation example","is_official":false,"is_trusted":false,"name":"dhrp/sshd","star_count":5}
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
31
  ,{"description":"Open JDK 7 on Plain Debian with SSHD","is_official":false,"is_trusted":true,"name":"shuron/debian-openjdk-7","star_count":2}
33
32
  ,{"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
33
  ,{"description":"","is_official":false,"is_trusted":true,"name":"angelrr7702/docker-ubuntu-14.04-sshd","star_count":2}
35
- ,{"description":"","is_official":false,"is_trusted":true,"name":"moul/sshd","star_count":1}
36
- ,{"description":"ssh server: Ubuntu 13.10, user=root, passwd=root","is_official":false,"is_trusted":true,"name":"jchavas/saucy-sshd","star_count":1}
34
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"craigske/sshd-server","star_count":1}
37
35
  ,{"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
36
  ,{"description":"","is_official":false,"is_trusted":true,"name":"iliyan/docker-nginx-sshd","star_count":1}
39
- ,{"description":"","is_official":false,"is_trusted":true,"name":"monokrome/sshd","star_count":0}
37
+ ,{"description":"ssh server: Ubuntu 13.10, user=root, passwd=root","is_official":false,"is_trusted":true,"name":"jchavas/saucy-sshd","star_count":1}
38
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"moul/sshd","star_count":1}
39
+ ,{"description":"A ssh server with password: admin","is_official":false,"is_trusted":true,"name":"wnameless/sshd","star_count":0}
40
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}
41
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"mckoss/sshd","star_count":0}
42
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}
43
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd-supervisor","star_count":0}
44
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"eternnoir/ubuntu-14.04-sshd","star_count":0}
44
45
  ,{"description":"","is_official":false,"is_trusted":true,"name":"bsdlp/sshd","star_count":0}
46
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"viliusl/ubuntu-sshd-nginx","star_count":0}
45
47
  ,{"description":"","is_official":false,"is_trusted":true,"name":"kumarpraveen/fedora-sshd","star_count":0}
46
48
  ,{"description":"","is_official":false,"is_trusted":true,"name":"jcheng/docker-sshd","star_count":0}
47
49
  ,{"description":"","is_official":false,"is_trusted":true,"name":"brandonmartin/docker-ubuntu-runit-sshd","star_count":0}
48
50
  ,{"description":"CentOS with sshd","is_official":false,"is_trusted":false,"name":"mkrishnamurthy/sshd","star_count":0}
49
51
  ,{"description":"Centos 6.4 (64bit) with sshd","is_official":false,"is_trusted":false,"name":"jonhadfield/sshd","star_count":0}
50
52
  ,{"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}
52
53
  ,{"description":"","is_official":false,"is_trusted":false,"name":"dongweiming/sshd","star_count":0}
54
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"fclaeys/sshd","star_count":0}
53
55
  ,{"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
56
  ,{"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}
56
58
  ,{"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}
59
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"jamtur01/sshd","star_count":0}
58
60
  ,{"description":"","is_official":false,"is_trusted":false,"name":"oss17888/sshd","star_count":0}
59
61
  ,{"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}
62
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"acockrell37/sshd","star_count":0}
60
63
  ,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshd","star_count":0}
61
64
  ,{"description":"","is_official":false,"is_trusted":false,"name":"hyone/sshd","star_count":0}
65
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"pmerrell/sshd","star_count":0}
62
66
  ,{"description":"","is_official":false,"is_trusted":false,"name":"kpelykh/sshd","star_count":0}
67
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"ks2mirror/sshd","star_count":0}
68
+ ,{"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
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"superbenk/sshd","star_count":0}
71
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"mesterkent/sshd","star_count":0}
72
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"bonesvoll/sshd","star_count":0}
73
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"amdra/sshd","star_count":0}
74
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"csnate/sshd","star_count":0}
75
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"milkbikis/sshd","star_count":0}
76
+ ,{"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
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"abrahamoshel/sshd","star_count":0}
79
+ ,{"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
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"perrygeorget/sshd","star_count":0}
82
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"gburton/sshd","star_count":0}
83
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"bentis/sshd","star_count":0}
84
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"8bitbrad/sshd","star_count":0}
85
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"wilde/sshd","star_count":0}
63
86
  ,{"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
87
  ,{"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}
88
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"danieldreier/sshd","star_count":0}
67
89
  ,{"description":"","is_official":false,"is_trusted":false,"name":"richburroughs/sshd","star_count":0}
68
- ,{"description":"","is_official":false,"is_trusted":false,"name":"jurajpelikan/sshd","star_count":0}
90
+ ,{"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}
69
93
  ,{"description":"","is_official":false,"is_trusted":false,"name":"vgauthier/sshd","star_count":0}
94
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"cursolv00/sshd","star_count":0}
95
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"vmtrooper/sshd","star_count":0}
96
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"lijin/sshd","star_count":0}
97
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"jurajpelikan/sshd","star_count":0}
70
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}
71
- ,{"description":"","is_official":false,"is_trusted":false,"name":"uzero/sshd","star_count":0}
72
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}
73
- ,{"description":"","is_official":false,"is_trusted":false,"name":"mammal/sshd","star_count":0}
74
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}
75
103
  ,{"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
104
  ,{"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}
105
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"yuyat/sshd","star_count":0}
79
106
  ,{"description":"","is_official":false,"is_trusted":false,"name":"yoshiso/sshd","star_count":0}
80
- ,{"description":"","is_official":false,"is_trusted":false,"name":"rblomberg/sshd","star_count":0}
107
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"yestxh/sshd","star_count":0}
81
108
  ,{"description":"","is_official":false,"is_trusted":false,"name":"marcosvm/sshd","star_count":0}
82
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}
83
112
  ,{"description":"","is_official":false,"is_trusted":false,"name":"malbin/sshd","star_count":0}
84
113
  ,{"description":"","is_official":false,"is_trusted":false,"name":"mrtmexx/sshd","star_count":0}
85
- ,{"description":"","is_official":false,"is_trusted":false,"name":"greut/sshd","star_count":0}
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}
88
114
  ,{"description":"","is_official":false,"is_trusted":false,"name":"j4pe/sshd","star_count":0}
89
115
  ,{"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
116
  ,{"description":"","is_official":false,"is_trusted":false,"name":"steshaw/sshd","star_count":0}
91
117
  ,{"description":"","is_official":false,"is_trusted":false,"name":"ckrintz/sshd","star_count":0}
92
- ,{"description":"","is_official":false,"is_trusted":false,"name":"morimorihoge/precise-sshd","star_count":0}
118
+ ,{"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":"speg03/sshd-centos_localbuild","star_count":0}
93
120
  ,{"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
121
  ,{"description":"","is_official":false,"is_trusted":false,"name":"johnfuller/sshd","star_count":0}
122
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"cespare/sshd","star_count":0}
123
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"progrium/sshd-example","star_count":0}
96
124
  ,{"description":"shell honeypot\n\nroot/mypass","is_official":false,"is_trusted":false,"name":"robwc/ubuntu-sshd","star_count":0}
97
125
  ,{"description":"***WIP***\npassword is H3rpD3rp","is_official":false,"is_trusted":false,"name":"bsdlp/arch-sshd","star_count":0}
98
126
  ,{"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}
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}
100
129
  ,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping","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}
103
130
  ,{"description":"","is_official":false,"is_trusted":false,"name":"msinger/openfoam-sshd","star_count":0}
131
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"zilin/docker-sshd","star_count":0}
104
132
  ,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping2","star_count":0}
133
+ ,{"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}
105
134
  ,{"description":"Provides access to pharo-core command line interface","is_official":false,"is_trusted":false,"name":"pshouse/sshd-pharo-core","star_count":0}
106
135
  ,{"description":"","is_official":false,"is_trusted":false,"name":"lorieri/daemontools-sshd-nginx","star_count":0}
107
136
  ,{"description":"","is_official":false,"is_trusted":false,"name":"johnshen/oink-centos65-sshd","star_count":0}
108
- ,{"description":"","is_official":false,"is_trusted":false,"name":"rayang2004/sshd","star_count":0}
109
137
  ,{"description":"","is_official":false,"is_trusted":false,"name":"5agms43sgo2z/jessie-with-sshd","star_count":0}
110
138
  ,{"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
139
  ,{"description":"","is_official":false,"is_trusted":false,"name":"mikewr/u1210-sshd-postgres","star_count":0}
140
+ ,{"description":"Docker container with supervisord, httpd, sshd, crond, rsyslogd on CentOS","is_official":false,"is_trusted":true,"name":"kawanamiyuu/docker-centos-supervisord","star_count":0}
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}
113
143
  ,{"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":"pantinor/centos_sshd","star_count":0}
145
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"marcesher/sshdtest","star_count":0}
114
146
  ,{"description":"Base docker image includes sshd and supervisor.","is_official":false,"is_trusted":true,"name":"taka0125/base","star_count":0}
115
147
  ,{"description":"","is_official":false,"is_trusted":false,"name":"apl330/sshdx","star_count":0}
116
148
  ,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshdnpw","star_count":0}
117
149
  ,{"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}
118
- ,{"description":"A ssh server with password: admin","is_official":false,"is_trusted":true,"name":"wnameless/sshd","star_count":0}
119
150
  ,{"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}
120
151
  ,{"description":"sshd image based on official Debian image","is_official":false,"is_trusted":true,"name":"docku/sshd","star_count":0}
121
152
  ,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd","star_count":0}
122
153
  ,{"description":"","is_official":false,"is_trusted":true,"name":"titanous/sshd","star_count":0}
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}
154
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"speg03/sshd-centos","star_count":0}
125
155
  ,{"description":"","is_official":false,"is_trusted":true,"name":"danhixon/sshd","star_count":0}
156
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"monokrome/sshd","star_count":0}
126
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}
127
159
  ]
128
160
  http_version:
129
- recorded_at: Fri, 06 Jun 2014 14:37:22 GMT
161
+ recorded_at: Thu, 26 Jun 2014 20:36:12 GMT
130
162
  recorded_with: VCR 2.9.2