docker-api 1.9.1 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/lib/docker/container.rb +20 -3
  4. data/lib/docker/image.rb +2 -2
  5. data/lib/docker/version.rb +2 -2
  6. data/spec/docker/container_spec.rb +3 -3
  7. data/spec/docker/image_spec.rb +1 -1
  8. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +1 -1
  9. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +6 -6
  10. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +6 -6
  11. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +6 -6
  12. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +63 -93
  13. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +12 -12
  14. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +12 -12
  15. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +4 -4
  16. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +14 -14
  17. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +9 -9
  18. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +21 -21
  19. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +22 -22
  20. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +11 -11
  21. 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
  22. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -15
  23. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +3 -3
  24. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +11 -11
  25. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +11 -11
  26. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +34 -47
  27. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +39 -35
  28. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +15 -15
  29. 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 +37 -37
  30. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +20 -19
  31. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +37 -50
  32. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +26 -115
  33. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +15 -15
  34. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +9 -9
  35. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +13 -13
  36. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +29 -15
  37. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +5 -5
  38. 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 +28 -20
  39. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +5 -5
  40. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +5 -5
  41. 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 +6 -6
  42. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +18 -19
  43. 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 -31
  44. data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +4 -4
  45. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +4 -4
  46. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +8 -8
  47. data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +26 -209
  48. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +51 -35
  49. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +90 -40
  50. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +26 -26
  51. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +5 -5
  52. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +28 -28
  53. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +8 -8
  54. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +49 -33
  55. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +25 -18
  56. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +16 -16
  57. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +16 -16
  58. 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 +8 -8
  59. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +24 -23
  60. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +8 -8
  61. metadata +2 -2
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
11
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:29:20 GMT
22
+ - Wed, 12 Mar 2014 13:31:47 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, 28 Feb 2014 21:29:21 GMT
37
+ recorded_at: Wed, 12 Mar 2014 13:31:48 GMT
38
38
  - request:
39
39
  method: delete
40
- uri: unix:///var/run/docker.sock/v1.9/images/b750fe79269d
40
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
46
+ - Swipely/Docker-API 1.9.1
47
47
  Content-Type:
48
48
  - text/plain
49
49
  response:
@@ -54,9 +54,9 @@ http_interactions:
54
54
  Content-Type:
55
55
  - application/json
56
56
  Date:
57
- - Fri, 28 Feb 2014 21:29:22 GMT
57
+ - Wed, 12 Mar 2014 13:31:48 GMT
58
58
  Content-Length:
59
- - '246'
59
+ - '134'
60
60
  Connection:
61
61
  - close
62
62
  body:
@@ -66,20 +66,18 @@ http_interactions:
66
66
  ,{"Untagged":"base:ubuntu-12.10"}
67
67
  ,{"Untagged":"base:ubuntu-quantal"}
68
68
  ,{"Untagged":"base:ubuntu-quantl"}
69
- ,{"Deleted":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc"}
70
- ,{"Deleted":"27cf784147099545"}
71
69
  ]
72
70
  http_version:
73
- recorded_at: Fri, 28 Feb 2014 21:29:22 GMT
71
+ recorded_at: Wed, 12 Mar 2014 13:31:48 GMT
74
72
  - request:
75
73
  method: get
76
- uri: unix:///var/run/docker.sock/v1.9/images/json
74
+ uri: unix:///var/run/docker.sock/v1.10/images/json
77
75
  body:
78
76
  encoding: US-ASCII
79
77
  string: ''
80
78
  headers:
81
79
  User-Agent:
82
- - Swipely/Docker-API 1.8.4
80
+ - Swipely/Docker-API 1.9.1
83
81
  Content-Type:
84
82
  - text/plain
85
83
  response:
@@ -90,14 +88,23 @@ http_interactions:
90
88
  Content-Type:
91
89
  - application/json
92
90
  Date:
93
- - Fri, 28 Feb 2014 21:29:22 GMT
94
- Content-Length:
95
- - '2'
91
+ - Wed, 12 Mar 2014 13:31:48 GMT
96
92
  Connection:
97
93
  - close
94
+ Transfer-Encoding:
95
+ - ''
98
96
  body:
99
97
  encoding: UTF-8
100
- string: "[]"
98
+ string: |-
99
+ [{"Created":1394631105,"Id":"11967a8e57f5a4535fc81770a3645f10ec7abf92f22308fcb15288bd30a043f7","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":69,"VirtualSize":175307104}
100
+ ,{"Created":1394631103,"Id":"8564cd49afd7c8c41e5230408f71d3a4214d8cb6f91004ac89fccebc98843516","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":69,"VirtualSize":175307104}
101
+ ,{"Created":1394631080,"Id":"2e0a9a843f663c7a7159aef66386b60e3e5db6eb48dce592844f8716b4d3f3f9","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":104,"VirtualSize":175307139}
102
+ ,{"Created":1391448676,"Id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","ParentId":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","RepoTags":["ubuntu:13.10","ubuntu:saucy"],"Size":182125825,"VirtualSize":182125825}
103
+ ,{"Created":1391448539,"Id":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","ParentId":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","RepoTags":["ubuntu:13.04","ubuntu:raring"],"Size":170192839,"VirtualSize":170192839}
104
+ ,{"Created":1391448413,"Id":"5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794","ParentId":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","RepoTags":["ubuntu:quantal","ubuntu:12.10"],"Size":161412295,"VirtualSize":161412295}
105
+ ,{"Created":1391448301,"Id":"9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232","ParentId":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","RepoTags":["ubuntu:10.04","ubuntu:lucid"],"Size":182964289,"VirtualSize":182964289}
106
+ ,{"Created":1391448149,"Id":"9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6","ParentId":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","RepoTags":["ubuntu:latest","ubuntu:precise","ubuntu:12.04"],"Size":204705001,"VirtualSize":204705001}
107
+ ]
101
108
  http_version:
102
- recorded_at: Fri, 28 Feb 2014 21:29:22 GMT
109
+ recorded_at: Wed, 12 Mar 2014 13:31:48 GMT
103
110
  recorded_with: VCR 2.8.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
11
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:01 GMT
22
+ - Wed, 12 Mar 2014 13:32:10 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, 28 Feb 2014 21:30:01 GMT
37
+ recorded_at: Wed, 12 Mar 2014 13:32:10 GMT
38
38
  - request:
39
39
  method: post
40
- uri: unix:///var/run/docker.sock/v1.9/containers/create
40
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
46
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:02 GMT
57
+ - Wed, 12 Mar 2014 13:32:11 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":"93cdf928ada741f11c9535aa2de4bf7c0d69169e4309e45841efc3d54ae21fb8","Warnings":null}
65
+ {"Id":"434c18db18a34e2490cf8f6633b1093f4e1f057c1d61579634c879ed6d7892cc","Warnings":null}
66
66
  http_version:
67
- recorded_at: Fri, 28 Feb 2014 21:30:02 GMT
67
+ recorded_at: Wed, 12 Mar 2014 13:32:11 GMT
68
68
  - request:
69
69
  method: post
70
- uri: unix:///var/run/docker.sock/v1.9/containers/93cdf928ada741f11c9535aa2de4bf7c0d69169e4309e45841efc3d54ae21fb8/start
70
+ uri: unix:///var/run/docker.sock/v1.10/containers/434c18db18a34e2490cf8f6633b1093f4e1f057c1d61579634c879ed6d7892cc/start
71
71
  body:
72
72
  encoding: UTF-8
73
73
  string: "{}"
74
74
  headers:
75
75
  User-Agent:
76
- - Swipely/Docker-API 1.8.4
76
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:03 GMT
85
+ - Wed, 12 Mar 2014 13:32:11 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: Fri, 28 Feb 2014 21:30:03 GMT
96
+ recorded_at: Wed, 12 Mar 2014 13:32:11 GMT
97
97
  - request:
98
98
  method: post
99
- uri: unix:///var/run/docker.sock/v1.9/containers/93cdf928ada741f11c9535aa2de4bf7c0d69169e4309e45841efc3d54ae21fb8/attach?stderr=true&stdout=true&stream=true
99
+ uri: unix:///var/run/docker.sock/v1.10/containers/434c18db18a34e2490cf8f6633b1093f4e1f057c1d61579634c879ed6d7892cc/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.8.4
105
+ - Swipely/Docker-API 1.9.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: Fri, 28 Feb 2014 21:30:03 GMT
120
+ recorded_at: Wed, 12 Mar 2014 13:32:11 GMT
121
121
  recorded_with: VCR 2.8.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
11
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:03 GMT
22
+ - Wed, 12 Mar 2014 13:32:11 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, 28 Feb 2014 21:30:04 GMT
37
+ recorded_at: Wed, 12 Mar 2014 13:32:11 GMT
38
38
  - request:
39
39
  method: post
40
- uri: unix:///var/run/docker.sock/v1.9/containers/create
40
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
46
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:04 GMT
57
+ - Wed, 12 Mar 2014 13:32:12 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":"54e5d38edb25f0294cc9011e557282d71ee6c8f88f588dd4efe6ffe609287fa0","Warnings":null}
65
+ {"Id":"2f4905f2b90056be77b60e7057b9bb63b5473febae7ee8036c887c860556be5a","Warnings":null}
66
66
  http_version:
67
- recorded_at: Fri, 28 Feb 2014 21:30:04 GMT
67
+ recorded_at: Wed, 12 Mar 2014 13:32:12 GMT
68
68
  - request:
69
69
  method: post
70
- uri: unix:///var/run/docker.sock/v1.9/containers/54e5d38edb25f0294cc9011e557282d71ee6c8f88f588dd4efe6ffe609287fa0/start
70
+ uri: unix:///var/run/docker.sock/v1.10/containers/2f4905f2b90056be77b60e7057b9bb63b5473febae7ee8036c887c860556be5a/start
71
71
  body:
72
72
  encoding: UTF-8
73
73
  string: "{}"
74
74
  headers:
75
75
  User-Agent:
76
- - Swipely/Docker-API 1.8.4
76
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:05 GMT
85
+ - Wed, 12 Mar 2014 13:32:12 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: Fri, 28 Feb 2014 21:30:05 GMT
96
+ recorded_at: Wed, 12 Mar 2014 13:32:12 GMT
97
97
  - request:
98
98
  method: post
99
- uri: unix:///var/run/docker.sock/v1.9/containers/54e5d38edb25f0294cc9011e557282d71ee6c8f88f588dd4efe6ffe609287fa0/attach?stderr=true&stdout=true&stream=true
99
+ uri: unix:///var/run/docker.sock/v1.10/containers/2f4905f2b90056be77b60e7057b9bb63b5473febae7ee8036c887c860556be5a/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.8.4
105
+ - Swipely/Docker-API 1.9.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: Fri, 28 Feb 2014 21:30:05 GMT
120
+ recorded_at: Wed, 12 Mar 2014 13:32:12 GMT
121
121
  recorded_with: VCR 2.8.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
11
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:05 GMT
22
+ - Wed, 12 Mar 2014 13:32:12 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, 28 Feb 2014 21:30:06 GMT
37
+ recorded_at: Wed, 12 Mar 2014 13:32:12 GMT
38
38
  - request:
39
39
  method: post
40
- uri: unix:///var/run/docker.sock/v1.9/containers/create
40
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
46
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:06 GMT
57
+ - Wed, 12 Mar 2014 13:32:12 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, 28 Feb 2014 21:30:06 GMT
67
+ recorded_at: Wed, 12 Mar 2014 13:32:12 GMT
68
68
  recorded_with: VCR 2.8.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: unix:///var/run/docker.sock/v1.9/images/search?term=sshd
5
+ uri: unix:///var/run/docker.sock/v1.10/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.8.4
11
+ - Swipely/Docker-API 1.9.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
- - Fri, 28 Feb 2014 21:30:09 GMT
22
+ - Wed, 12 Mar 2014 13:32:15 GMT
23
23
  Connection:
24
24
  - close
25
25
  Transfer-Encoding:
@@ -27,42 +27,42 @@ http_interactions:
27
27
  body:
28
28
  encoding: UTF-8
29
29
  string: |-
30
- [{"description":"sshd base on angelrr7702/ubuntu-13.10","is_official":false,"is_trusted":true,"name":"angelrr7702/ubuntu-13.10-sshd","star_count":4}
31
- ,{"description":"SSH Daemon created in the ssh daemon documentation example","is_official":false,"is_trusted":false,"name":"dhrp/sshd","star_count":4}
30
+ [{"description":"SSH Daemon created in the ssh daemon documentation example","is_official":false,"is_trusted":false,"name":"dhrp/sshd","star_count":4}
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":"lean centos 6.5 w/ udevadm settle and pam sshd fixes","is_official":false,"is_trusted":false,"name":"nathwill/centos","star_count":1}
33
34
  ,{"description":"Docker image with nginx and sshd isntalled and running by default.","is_official":false,"is_trusted":false,"name":"iliyan/nginxserver","star_count":1}
34
- ,{"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":1}
35
- ,{"description":"","is_official":false,"is_trusted":false,"name":"angelrr7702/ubuntu-13.04-sshd","star_count":1}
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
36
  ,{"description":"","is_official":false,"is_trusted":true,"name":"iliyan/docker-nginx-sshd","star_count":1}
37
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
38
  ,{"description":"ssh server: Ubuntu 13.10, user=root, passwd=root","is_official":false,"is_trusted":true,"name":"jchavas/saucy-sshd","star_count":1}
39
- ,{"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}
40
39
  ,{"description":"","is_official":false,"is_trusted":true,"name":"moul/sshd","star_count":1}
41
- ,{"description":"lean centos 6.5 w/ udevadm settle and pam sshd fixes","is_official":false,"is_trusted":false,"name":"nathwill/centos","star_count":1}
40
+ ,{"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":1}
41
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"angelrr7702/ubuntu-13.04-sshd","star_count":1}
42
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"oss17888/sshd","star_count":0}
42
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}
43
44
  ,{"description":"","is_official":false,"is_trusted":false,"name":"blissdev/sshd","star_count":0}
44
45
  ,{"description":"","is_official":false,"is_trusted":true,"name":"dockeruser/sshd","star_count":0}
45
46
  ,{"description":"","is_official":false,"is_trusted":true,"name":"monokrome/sshd","star_count":0}
47
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"jcheng/sshd","star_count":0}
46
48
  ,{"description":"","is_official":false,"is_trusted":false,"name":"dongweiming/sshd","star_count":0}
47
49
  ,{"description":"","is_official":false,"is_trusted":false,"name":"tekknolagi/sshd","star_count":0}
48
50
  ,{"description":"","is_official":false,"is_trusted":false,"name":"emiller/sshd","star_count":0}
49
- ,{"description":"","is_official":false,"is_trusted":false,"name":"jcheng/sshd","star_count":0}
50
51
  ,{"description":"","is_official":false,"is_trusted":false,"name":"cespare/sshd","star_count":0}
51
52
  ,{"description":"","is_official":false,"is_trusted":false,"name":"yestxh/sshd","star_count":0}
53
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"jurajpelikan/sshd","star_count":0}
52
54
  ,{"description":"","is_official":false,"is_trusted":false,"name":"skardan/sshd","star_count":0}
53
55
  ,{"description":"","is_official":false,"is_trusted":false,"name":"vgauthier/sshd","star_count":0}
54
56
  ,{"description":"","is_official":false,"is_trusted":false,"name":"rblomberg/sshd","star_count":0}
55
57
  ,{"description":"","is_official":false,"is_trusted":false,"name":"yuyat/sshd","star_count":0}
56
58
  ,{"description":"","is_official":false,"is_trusted":true,"name":"tiokksar/sshd","star_count":0}
57
- ,{"description":"","is_official":false,"is_trusted":false,"name":"jamuc/sshd","star_count":0}
58
- ,{"description":"","is_official":false,"is_trusted":false,"name":"jurajpelikan/sshd","star_count":0}
59
59
  ,{"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}
60
60
  ,{"description":"","is_official":false,"is_trusted":false,"name":"yoshiso/sshd","star_count":0}
61
61
  ,{"description":"","is_official":false,"is_trusted":false,"name":"richburroughs/sshd","star_count":0}
62
- ,{"description":"","is_official":false,"is_trusted":true,"name":"typester/sshd","star_count":0}
63
62
  ,{"description":"","is_official":false,"is_trusted":false,"name":"mrtmexx/sshd","star_count":0}
64
63
  ,{"description":"","is_official":false,"is_trusted":false,"name":"malbin/sshd","star_count":0}
65
64
  ,{"description":"","is_official":false,"is_trusted":false,"name":"dragon9783/sshd","star_count":0}
65
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"typester/sshd","star_count":0}
66
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
67
  ,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/mongodb-sshd","star_count":0}
68
68
  ,{"description":"","is_official":false,"is_trusted":false,"name":"rayang2004/sshd","star_count":0}
@@ -71,22 +71,23 @@ http_interactions:
71
71
  ,{"description":"","is_official":false,"is_trusted":false,"name":"uzero/sshd","star_count":0}
72
72
  ,{"description":"","is_official":false,"is_trusted":false,"name":"colorscode/sshd","star_count":0}
73
73
  ,{"description":"","is_official":false,"is_trusted":false,"name":"greut/sshd","star_count":0}
74
- ,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd","star_count":0}
75
74
  ,{"description":"","is_official":false,"is_trusted":false,"name":"steshaw/sshd","star_count":0}
76
75
  ,{"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}
77
76
  ,{"description":"","is_official":false,"is_trusted":false,"name":"j4pe/sshd","star_count":0}
78
77
  ,{"description":"","is_official":false,"is_trusted":false,"name":"apetersen/sshd","star_count":0}
79
78
  ,{"description":"","is_official":false,"is_trusted":false,"name":"marcosvm/sshd","star_count":0}
80
79
  ,{"description":"","is_official":false,"is_trusted":true,"name":"bsdlp/sshd","star_count":0}
80
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd","star_count":0}
81
81
  ,{"description":"***WIP***\npassword is H3rpD3rp","is_official":false,"is_trusted":false,"name":"bsdlp/arch-sshd","star_count":0}
82
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}
84
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"morimorihoge/precise-sshd","star_count":0}
83
85
  ,{"description":"","is_official":false,"is_trusted":false,"name":"zilin/docker-sshd","star_count":0}
84
86
  ,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping","star_count":0}
85
87
  ,{"description":"","is_official":false,"is_trusted":true,"name":"mogproject/sshd-supervisor","star_count":0}
86
- ,{"description":"","is_official":false,"is_trusted":false,"name":"morimorihoge/precise-sshd","star_count":0}
88
+ ,{"description":"Provides access to pharo-core command line interface","is_official":false,"is_trusted":false,"name":"pshouse/sshd-pharo-core","star_count":0}
87
89
  ,{"description":"","is_official":false,"is_trusted":false,"name":"5agms43sgo2z/jessie-with-sshd","star_count":0}
88
90
  ,{"description":"","is_official":false,"is_trusted":false,"name":"toorop/daemontools-sshd-nginx-php-fpm","star_count":0}
89
- ,{"description":"Provides access to pharo-core command line interface","is_official":false,"is_trusted":false,"name":"pshouse/sshd-pharo-core","star_count":0}
90
91
  ,{"description":"","is_official":false,"is_trusted":false,"name":"msinger/openfoam-sshd","star_count":0}
91
92
  ,{"description":"","is_official":false,"is_trusted":false,"name":"dhrp/sshd-ping2","star_count":0}
92
93
  ,{"description":"","is_official":false,"is_trusted":false,"name":"lorieri/daemontools-sshd-nginx","star_count":0}
@@ -101,24 +102,24 @@ http_interactions:
101
102
  ,{"description":"","is_official":false,"is_trusted":false,"name":"onyxperidot/base_sshd","star_count":0}
102
103
  ,{"description":"","is_official":false,"is_trusted":false,"name":"qooleot/ivcsshd","star_count":0}
103
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}
104
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}
105
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}
106
- ,{"description":"My personal base repo built on the ubuntu base, running sshd under daemontools.","is_official":false,"is_trusted":false,"name":"zakame/base","star_count":0}
107
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}
108
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}
109
- ,{"description":"","is_official":false,"is_trusted":true,"name":"titanous/sshd","star_count":0}
110
+ ,{"description":"Base + sshd + proxy + static ip addr.","is_official":false,"is_trusted":false,"name":"simoman/sshd","star_count":0}
110
111
  ,{"description":"Centos 6.4 (64bit) with sshd","is_official":false,"is_trusted":false,"name":"jonhadfield/sshd","star_count":0}
111
- ,{"description":"Runs a SSHd server in daemon mode","is_official":false,"is_trusted":false,"name":"zefhemel/sshd","star_count":0}
112
112
  ,{"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}
113
114
  ,{"description":"","is_official":false,"is_trusted":false,"name":"kpelykh/sshd","star_count":0}
114
- ,{"description":"Base + sshd + proxy + static ip addr.","is_official":false,"is_trusted":false,"name":"simoman/sshd","star_count":0}
115
+ ,{"description":"CentOS with sshd","is_official":false,"is_trusted":false,"name":"mkrishnamurthy/sshd","star_count":0}
115
116
  ,{"description":"sshd image based on official Debian image","is_official":false,"is_trusted":true,"name":"docku/sshd","star_count":0}
116
117
  ,{"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}
117
- ,{"description":"","is_official":false,"is_trusted":false,"name":"hyone/sshd","star_count":0}
118
+ ,{"description":"","is_official":false,"is_trusted":true,"name":"titanous/sshd","star_count":0}
118
119
  ,{"description":"A ssh server with password: admin","is_official":false,"is_trusted":true,"name":"wnameless/sshd","star_count":0}
120
+ ,{"description":"","is_official":false,"is_trusted":false,"name":"hyone/sshd","star_count":0}
119
121
  ,{"description":"","is_official":false,"is_trusted":false,"name":"johnfuller/sshd","star_count":0}
120
- ,{"description":"","is_official":false,"is_trusted":false,"name":"oss17888/sshd","star_count":0}
121
122
  ]
122
123
  http_version:
123
- recorded_at: Fri, 28 Feb 2014 21:30:09 GMT
124
+ recorded_at: Wed, 12 Mar 2014 13:32:15 GMT
124
125
  recorded_with: VCR 2.8.0