docker-client 0.1.1 → 0.1.2

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 (83) hide show
  1. data/.gitignore +1 -0
  2. data/README.md +3 -1
  3. data/Rakefile +18 -0
  4. data/lib/docker/error.rb +1 -0
  5. data/lib/docker/error/image_not_found.rb +7 -0
  6. data/lib/docker/resource/container.rb +10 -0
  7. data/lib/docker/resource/image.rb +43 -0
  8. data/lib/docker/version.rb +1 -1
  9. data/spec/cassettes/Docker_Connection/returns_a_stream.yml +171 -0
  10. data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_a_basic_request.yml +3 -12
  11. data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_get_request.yml +3 -77
  12. data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_post_request.yml +189 -0
  13. data/spec/cassettes/Docker_Connection/returns_status_404_for_non_existent_path.yml +2 -2
  14. data/spec/cassettes/Docker_Connection/sets_given_query_parameters.yml +2 -2
  15. data/spec/cassettes/Docker_Connection/sets_given_request_headers.yml +2 -2
  16. data/spec/cassettes/Docker_Resource_Container/attach/raises_an_exception_for_an_unknown_container.yml +30 -0
  17. data/spec/cassettes/Docker_Resource_Container/changes/inspects_the_container_s_filesystem_changes.yml +210 -0
  18. data/spec/cassettes/Docker_Resource_Container/commit/creates_a_new_image_from_the_container_s_changes.yml +199 -0
  19. data/spec/cassettes/Docker_Resource_Container/commit/raises_an_exception_for_an_unknown_container.yml +31 -0
  20. data/spec/cassettes/Docker_Resource_Container/create/raises_an_exception_when_called_with_invalid_options.yml +2 -2
  21. data/spec/cassettes/Docker_Resource_Container/create/with_many_settings.yml +3 -3
  22. data/spec/cassettes/Docker_Resource_Container/create/with_minimal_settings.yml +3 -3
  23. data/spec/cassettes/Docker_Resource_Container/kill/raises_an_exception_for_an_unknow_container.yml +2 -2
  24. data/spec/cassettes/Docker_Resource_Container/kill/the_container.yml +189 -0
  25. data/spec/cassettes/Docker_Resource_Container/lists/all_running_containers.yml +7 -17
  26. data/spec/cassettes/Docker_Resource_Container/lists/limit_last_created_containers.yml +5 -5
  27. data/spec/cassettes/Docker_Resource_Container/lists/non-running_processes_too.yml +10 -85
  28. data/spec/cassettes/Docker_Resource_Container/lists/processes_before_a_certain_created_container.yml +303 -0
  29. data/spec/cassettes/Docker_Resource_Container/lists/processes_since_a_certain_created_container.yml +217 -0
  30. data/spec/cassettes/Docker_Resource_Container/logs/raises_an_exception_for_an_unknown_container.yml +31 -0
  31. data/spec/cassettes/Docker_Resource_Container/logs/returns_the_stderr_of_a_container.yml +154 -0
  32. data/spec/cassettes/Docker_Resource_Container/logs/returns_the_stdout_of_a_container.yml +154 -0
  33. data/spec/cassettes/Docker_Resource_Container/remove/deletes_the_container.yml +189 -0
  34. data/spec/cassettes/Docker_Resource_Container/remove/raises_an_exception_with_an_invalid_container.yml +2 -2
  35. data/spec/cassettes/Docker_Resource_Container/restarts/raises_an_exception_for_an_unknown_container.yml +2 -2
  36. data/spec/cassettes/Docker_Resource_Container/restarts/the_container.yml +189 -0
  37. data/spec/cassettes/Docker_Resource_Container/shows/the_low_level_details.yml +315 -0
  38. data/spec/cassettes/Docker_Resource_Container/start/brings_a_container_into_state_running.yml +189 -0
  39. data/spec/cassettes/Docker_Resource_Container/start/raises_an_exception_for_an_unknown_container.yml +2 -2
  40. data/spec/cassettes/Docker_Resource_Container/stop/halts_a_container.yml +189 -0
  41. data/spec/cassettes/Docker_Resource_Container/stop/raises_an_exception_for_an_unknown_container.yml +2 -2
  42. data/spec/cassettes/Docker_Resource_Container/wait/blocks_until_the_container_stops.yml +196 -0
  43. data/spec/cassettes/Docker_Resource_Container/wait/raises_an_exception_for_an_unknown_container.yml +2 -2
  44. data/spec/cassettes/Docker_Resource_Image/history/.yml +33 -0
  45. data/spec/cassettes/Docker_Resource_Image/history/size/.yml +33 -0
  46. data/spec/cassettes/Docker_Resource_Image/history/step/.yml +33 -0
  47. data/spec/cassettes/Docker_Resource_Image/list/.yml +44 -0
  48. data/spec/cassettes/Docker_Resource_Image/list/includes_latest_base_image.yml +44 -0
  49. data/spec/cassettes/Docker_Resource_Image/list/size/.yml +44 -0
  50. data/spec/cassettes/Docker_Resource_Image/remove/deletes_the_image.yml +192 -0
  51. data/spec/cassettes/Docker_Resource_Image/remove/raises_an_exception_for_an_unknown_image.yml +31 -0
  52. data/spec/cassettes/Docker_Resource_Image/show/.yml +42 -0
  53. data/spec/cassettes/Docker_Resource_Image/show/raises_an_exception_for_an_unknown_image.yml +31 -0
  54. data/spec/cassettes/Docker_Resource_Image/tag/an_image_into_a_repository.yml +30 -0
  55. data/spec/cassettes/Docker_Resource_Image/tag/raises_an_exception_for_an_unknown_image.yml +31 -0
  56. data/spec/cassettes/test_setup/commit_container.yml +423 -0
  57. data/spec/cassettes/test_setup/create_container__command_/bin/sh_-c_while_true_do_echo_hello_world_sleep_1_done_.yml +33 -0
  58. data/spec/cassettes/test_setup/create_container_connection_post.yml +3 -3
  59. data/spec/cassettes/test_setup/create_container_container_attach.yml +34 -0
  60. data/spec/cassettes/test_setup/create_container_container_changes.yml +3 -3
  61. data/spec/cassettes/test_setup/create_container_container_commit.yml +33 -0
  62. data/spec/cassettes/test_setup/create_container_container_kill.yml +3 -3
  63. data/spec/cassettes/test_setup/create_container_container_lists1.yml +3 -3
  64. data/spec/cassettes/test_setup/create_container_container_lists2.yml +3 -3
  65. data/spec/cassettes/test_setup/create_container_container_logs.yml +3 -3
  66. data/spec/cassettes/test_setup/create_container_container_remove.yml +3 -3
  67. data/spec/cassettes/test_setup/create_container_container_restarts.yml +3 -3
  68. data/spec/cassettes/test_setup/create_container_container_shows.yml +3 -3
  69. data/spec/cassettes/test_setup/create_container_container_start.yml +3 -3
  70. data/spec/cassettes/test_setup/create_container_container_stop.yml +3 -3
  71. data/spec/cassettes/test_setup/create_container_container_wait.yml +3 -3
  72. data/spec/cassettes/test_setup/create_container_test-image.yml +33 -0
  73. data/spec/cassettes/test_setup/create_container_test-returns-a-stream.yml +34 -0
  74. data/spec/cassettes/test_setup/create_container_test-tag.yml +33 -0
  75. data/spec/cassettes/test_setup/delete_container.yml +3727 -0
  76. data/spec/cassettes/test_setup/delete_image.yml +409 -0
  77. data/spec/cassettes/test_setup/start_container.yml +2813 -0
  78. data/spec/cassettes/test_setup/wait_on_container.yml +1080 -0
  79. data/spec/docker/connection_spec.rb +1 -1
  80. data/spec/docker/resource/container_spec.rb +26 -11
  81. data/spec/docker/resource/image_spec.rb +104 -0
  82. data/spec/helpers.rb +31 -2
  83. metadata +55 -2
@@ -0,0 +1,31 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://10.0.5.5:4243/containers/invalid_id/attach?logs=true&stderr=true&stdout=true&stream=false
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 404
13
+ message: !binary |-
14
+ Tm90IEZvdW5k
15
+ headers:
16
+ !binary "Q29udGVudC1UeXBl":
17
+ - !binary |-
18
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
19
+ !binary "RGF0ZQ==":
20
+ - !binary |-
21
+ TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo0NSBHTVQ=
22
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
23
+ - !binary |-
24
+ Y2h1bmtlZA==
25
+ body:
26
+ encoding: ASCII-8BIT
27
+ string: !binary |-
28
+ Tm8gc3VjaCBjb250YWluZXI6IGludmFsaWRfaWQK
29
+ http_version:
30
+ recorded_at: Mon, 03 Jun 2013 21:37:45 GMT
31
+ recorded_with: VCR 2.5.0
@@ -22,4 +22,158 @@ http_interactions:
22
22
  c3RkZXJyCg==
23
23
  http_version:
24
24
  recorded_at: Sat, 25 May 2013 16:05:27 GMT
25
+ - request:
26
+ method: post
27
+ uri: http://10.0.5.5:4243/containers/512c3ce5fbee/attach?logs=true&stderr=true&stream=false
28
+ body:
29
+ encoding: US-ASCII
30
+ string: ''
31
+ headers: {}
32
+ response:
33
+ status:
34
+ code: 200
35
+ message: !binary |-
36
+ T0s=
37
+ headers:
38
+ !binary "Q29udGVudC1UeXBl":
39
+ - !binary |-
40
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: !binary |-
44
+ c3RkZXJyCg==
45
+ http_version:
46
+ recorded_at: Mon, 03 Jun 2013 20:59:54 GMT
47
+ - request:
48
+ method: post
49
+ uri: http://10.0.5.5:4243/containers/003acb404098/attach?logs=true&stderr=true&stream=false
50
+ body:
51
+ encoding: US-ASCII
52
+ string: ''
53
+ headers: {}
54
+ response:
55
+ status:
56
+ code: 200
57
+ message: !binary |-
58
+ T0s=
59
+ headers:
60
+ !binary "Q29udGVudC1UeXBl":
61
+ - !binary |-
62
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
63
+ body:
64
+ encoding: ASCII-8BIT
65
+ string: !binary |-
66
+ c3RkZXJyCg==
67
+ http_version:
68
+ recorded_at: Mon, 03 Jun 2013 21:04:32 GMT
69
+ - request:
70
+ method: post
71
+ uri: http://10.0.5.5:4243/containers/8b353ded3343/attach?logs=true&stderr=true&stream=false
72
+ body:
73
+ encoding: US-ASCII
74
+ string: ''
75
+ headers: {}
76
+ response:
77
+ status:
78
+ code: 200
79
+ message: !binary |-
80
+ T0s=
81
+ headers:
82
+ !binary "Q29udGVudC1UeXBl":
83
+ - !binary |-
84
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
85
+ body:
86
+ encoding: ASCII-8BIT
87
+ string: !binary |-
88
+ c3RkZXJyCg==
89
+ http_version:
90
+ recorded_at: Mon, 03 Jun 2013 21:09:55 GMT
91
+ - request:
92
+ method: post
93
+ uri: http://10.0.5.5:4243/containers/5cda854c7f2b/attach?logs=true&stderr=true&stream=false
94
+ body:
95
+ encoding: US-ASCII
96
+ string: ''
97
+ headers: {}
98
+ response:
99
+ status:
100
+ code: 200
101
+ message: !binary |-
102
+ T0s=
103
+ headers:
104
+ !binary "Q29udGVudC1UeXBl":
105
+ - !binary |-
106
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
107
+ body:
108
+ encoding: ASCII-8BIT
109
+ string: !binary |-
110
+ c3RkZXJyCg==
111
+ http_version:
112
+ recorded_at: Mon, 03 Jun 2013 21:21:21 GMT
113
+ - request:
114
+ method: post
115
+ uri: http://10.0.5.5:4243/containers/c0ee7f9ab39a/attach?logs=true&stderr=true&stream=false
116
+ body:
117
+ encoding: US-ASCII
118
+ string: ''
119
+ headers: {}
120
+ response:
121
+ status:
122
+ code: 200
123
+ message: !binary |-
124
+ T0s=
125
+ headers:
126
+ !binary "Q29udGVudC1UeXBl":
127
+ - !binary |-
128
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
129
+ body:
130
+ encoding: ASCII-8BIT
131
+ string: !binary |-
132
+ c3RkZXJyCg==
133
+ http_version:
134
+ recorded_at: Mon, 03 Jun 2013 21:25:46 GMT
135
+ - request:
136
+ method: post
137
+ uri: http://10.0.5.5:4243/containers/1c460cabb1ab/attach?logs=true&stderr=true&stream=false
138
+ body:
139
+ encoding: US-ASCII
140
+ string: ''
141
+ headers: {}
142
+ response:
143
+ status:
144
+ code: 200
145
+ message: !binary |-
146
+ T0s=
147
+ headers:
148
+ !binary "Q29udGVudC1UeXBl":
149
+ - !binary |-
150
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
151
+ body:
152
+ encoding: ASCII-8BIT
153
+ string: !binary |-
154
+ c3RkZXJyCg==
155
+ http_version:
156
+ recorded_at: Mon, 03 Jun 2013 21:26:53 GMT
157
+ - request:
158
+ method: post
159
+ uri: http://10.0.5.5:4243/containers/7fe249af9595/attach?logs=true&stderr=true&stream=false
160
+ body:
161
+ encoding: US-ASCII
162
+ string: ''
163
+ headers: {}
164
+ response:
165
+ status:
166
+ code: 200
167
+ message: !binary |-
168
+ T0s=
169
+ headers:
170
+ !binary "Q29udGVudC1UeXBl":
171
+ - !binary |-
172
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
173
+ body:
174
+ encoding: ASCII-8BIT
175
+ string: !binary |-
176
+ c3RkZXJyCg==
177
+ http_version:
178
+ recorded_at: Mon, 03 Jun 2013 21:37:45 GMT
25
179
  recorded_with: VCR 2.5.0
@@ -22,4 +22,158 @@ http_interactions:
22
22
  c3Rkb3V0Cg==
23
23
  http_version:
24
24
  recorded_at: Sat, 25 May 2013 16:05:26 GMT
25
+ - request:
26
+ method: post
27
+ uri: http://10.0.5.5:4243/containers/512c3ce5fbee/attach?logs=true&stdout=true&stream=false
28
+ body:
29
+ encoding: US-ASCII
30
+ string: ''
31
+ headers: {}
32
+ response:
33
+ status:
34
+ code: 200
35
+ message: !binary |-
36
+ T0s=
37
+ headers:
38
+ !binary "Q29udGVudC1UeXBl":
39
+ - !binary |-
40
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: !binary |-
44
+ c3Rkb3V0Cg==
45
+ http_version:
46
+ recorded_at: Mon, 03 Jun 2013 20:59:54 GMT
47
+ - request:
48
+ method: post
49
+ uri: http://10.0.5.5:4243/containers/003acb404098/attach?logs=true&stdout=true&stream=false
50
+ body:
51
+ encoding: US-ASCII
52
+ string: ''
53
+ headers: {}
54
+ response:
55
+ status:
56
+ code: 200
57
+ message: !binary |-
58
+ T0s=
59
+ headers:
60
+ !binary "Q29udGVudC1UeXBl":
61
+ - !binary |-
62
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
63
+ body:
64
+ encoding: ASCII-8BIT
65
+ string: !binary |-
66
+ c3Rkb3V0Cg==
67
+ http_version:
68
+ recorded_at: Mon, 03 Jun 2013 21:04:32 GMT
69
+ - request:
70
+ method: post
71
+ uri: http://10.0.5.5:4243/containers/8b353ded3343/attach?logs=true&stdout=true&stream=false
72
+ body:
73
+ encoding: US-ASCII
74
+ string: ''
75
+ headers: {}
76
+ response:
77
+ status:
78
+ code: 200
79
+ message: !binary |-
80
+ T0s=
81
+ headers:
82
+ !binary "Q29udGVudC1UeXBl":
83
+ - !binary |-
84
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
85
+ body:
86
+ encoding: ASCII-8BIT
87
+ string: !binary |-
88
+ c3Rkb3V0Cg==
89
+ http_version:
90
+ recorded_at: Mon, 03 Jun 2013 21:09:55 GMT
91
+ - request:
92
+ method: post
93
+ uri: http://10.0.5.5:4243/containers/5cda854c7f2b/attach?logs=true&stdout=true&stream=false
94
+ body:
95
+ encoding: US-ASCII
96
+ string: ''
97
+ headers: {}
98
+ response:
99
+ status:
100
+ code: 200
101
+ message: !binary |-
102
+ T0s=
103
+ headers:
104
+ !binary "Q29udGVudC1UeXBl":
105
+ - !binary |-
106
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
107
+ body:
108
+ encoding: ASCII-8BIT
109
+ string: !binary |-
110
+ c3Rkb3V0Cg==
111
+ http_version:
112
+ recorded_at: Mon, 03 Jun 2013 21:21:21 GMT
113
+ - request:
114
+ method: post
115
+ uri: http://10.0.5.5:4243/containers/c0ee7f9ab39a/attach?logs=true&stdout=true&stream=false
116
+ body:
117
+ encoding: US-ASCII
118
+ string: ''
119
+ headers: {}
120
+ response:
121
+ status:
122
+ code: 200
123
+ message: !binary |-
124
+ T0s=
125
+ headers:
126
+ !binary "Q29udGVudC1UeXBl":
127
+ - !binary |-
128
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
129
+ body:
130
+ encoding: ASCII-8BIT
131
+ string: !binary |-
132
+ c3Rkb3V0Cg==
133
+ http_version:
134
+ recorded_at: Mon, 03 Jun 2013 21:25:46 GMT
135
+ - request:
136
+ method: post
137
+ uri: http://10.0.5.5:4243/containers/1c460cabb1ab/attach?logs=true&stdout=true&stream=false
138
+ body:
139
+ encoding: US-ASCII
140
+ string: ''
141
+ headers: {}
142
+ response:
143
+ status:
144
+ code: 200
145
+ message: !binary |-
146
+ T0s=
147
+ headers:
148
+ !binary "Q29udGVudC1UeXBl":
149
+ - !binary |-
150
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
151
+ body:
152
+ encoding: ASCII-8BIT
153
+ string: !binary |-
154
+ c3Rkb3V0Cg==
155
+ http_version:
156
+ recorded_at: Mon, 03 Jun 2013 21:26:53 GMT
157
+ - request:
158
+ method: post
159
+ uri: http://10.0.5.5:4243/containers/7fe249af9595/attach?logs=true&stdout=true&stream=false
160
+ body:
161
+ encoding: US-ASCII
162
+ string: ''
163
+ headers: {}
164
+ response:
165
+ status:
166
+ code: 200
167
+ message: !binary |-
168
+ T0s=
169
+ headers:
170
+ !binary "Q29udGVudC1UeXBl":
171
+ - !binary |-
172
+ YXBwbGljYXRpb24vdm5kLmRvY2tlci5yYXctc3RyZWFt
173
+ body:
174
+ encoding: ASCII-8BIT
175
+ string: !binary |-
176
+ c3Rkb3V0Cg==
177
+ http_version:
178
+ recorded_at: Mon, 03 Jun 2013 21:37:45 GMT
25
179
  recorded_with: VCR 2.5.0
@@ -27,4 +27,193 @@ http_interactions:
27
27
  string: !binary ""
28
28
  http_version:
29
29
  recorded_at: Sat, 25 May 2013 16:05:15 GMT
30
+ - request:
31
+ method: delete
32
+ uri: http://10.0.5.5:4243/containers/e7c0a0002bbe?v=true
33
+ body:
34
+ encoding: US-ASCII
35
+ string: ''
36
+ headers: {}
37
+ response:
38
+ status:
39
+ code: 204
40
+ message: !binary |-
41
+ Tm8gQ29udGVudA==
42
+ headers:
43
+ !binary "RGF0ZQ==":
44
+ - !binary |-
45
+ TW9uLCAwMyBKdW4gMjAxMyAyMTowMDowNyBHTVQ=
46
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
47
+ - !binary |-
48
+ Y2h1bmtlZA==
49
+ !binary "Q29udGVudC1UeXBl":
50
+ - !binary |-
51
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
52
+ body:
53
+ encoding: ASCII-8BIT
54
+ string: !binary ""
55
+ http_version:
56
+ recorded_at: Mon, 03 Jun 2013 21:00:07 GMT
57
+ - request:
58
+ method: delete
59
+ uri: http://10.0.5.5:4243/containers/ca0f54b0c015?v=true
60
+ body:
61
+ encoding: US-ASCII
62
+ string: ''
63
+ headers: {}
64
+ response:
65
+ status:
66
+ code: 204
67
+ message: !binary |-
68
+ Tm8gQ29udGVudA==
69
+ headers:
70
+ !binary "RGF0ZQ==":
71
+ - !binary |-
72
+ TW9uLCAwMyBKdW4gMjAxMyAyMTowNDoxOCBHTVQ=
73
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
74
+ - !binary |-
75
+ Y2h1bmtlZA==
76
+ !binary "Q29udGVudC1UeXBl":
77
+ - !binary |-
78
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
79
+ body:
80
+ encoding: ASCII-8BIT
81
+ string: !binary ""
82
+ http_version:
83
+ recorded_at: Mon, 03 Jun 2013 21:04:18 GMT
84
+ - request:
85
+ method: delete
86
+ uri: http://10.0.5.5:4243/containers/82e903ae7b39?v=true
87
+ body:
88
+ encoding: US-ASCII
89
+ string: ''
90
+ headers: {}
91
+ response:
92
+ status:
93
+ code: 204
94
+ message: !binary |-
95
+ Tm8gQ29udGVudA==
96
+ headers:
97
+ !binary "RGF0ZQ==":
98
+ - !binary |-
99
+ TW9uLCAwMyBKdW4gMjAxMyAyMTowOTo0MiBHTVQ=
100
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
101
+ - !binary |-
102
+ Y2h1bmtlZA==
103
+ !binary "Q29udGVudC1UeXBl":
104
+ - !binary |-
105
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
106
+ body:
107
+ encoding: ASCII-8BIT
108
+ string: !binary ""
109
+ http_version:
110
+ recorded_at: Mon, 03 Jun 2013 21:09:42 GMT
111
+ - request:
112
+ method: delete
113
+ uri: http://10.0.5.5:4243/containers/a1d3fc73631a?v=true
114
+ body:
115
+ encoding: US-ASCII
116
+ string: ''
117
+ headers: {}
118
+ response:
119
+ status:
120
+ code: 204
121
+ message: !binary |-
122
+ Tm8gQ29udGVudA==
123
+ headers:
124
+ !binary "RGF0ZQ==":
125
+ - !binary |-
126
+ TW9uLCAwMyBKdW4gMjAxMyAyMToyMToyOSBHTVQ=
127
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
128
+ - !binary |-
129
+ Y2h1bmtlZA==
130
+ !binary "Q29udGVudC1UeXBl":
131
+ - !binary |-
132
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
133
+ body:
134
+ encoding: ASCII-8BIT
135
+ string: !binary ""
136
+ http_version:
137
+ recorded_at: Mon, 03 Jun 2013 21:21:29 GMT
138
+ - request:
139
+ method: delete
140
+ uri: http://10.0.5.5:4243/containers/2ac66b08b5f4?v=true
141
+ body:
142
+ encoding: US-ASCII
143
+ string: ''
144
+ headers: {}
145
+ response:
146
+ status:
147
+ code: 204
148
+ message: !binary |-
149
+ Tm8gQ29udGVudA==
150
+ headers:
151
+ !binary "RGF0ZQ==":
152
+ - !binary |-
153
+ TW9uLCAwMyBKdW4gMjAxMyAyMToyNTo1OCBHTVQ=
154
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
155
+ - !binary |-
156
+ Y2h1bmtlZA==
157
+ !binary "Q29udGVudC1UeXBl":
158
+ - !binary |-
159
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
160
+ body:
161
+ encoding: ASCII-8BIT
162
+ string: !binary ""
163
+ http_version:
164
+ recorded_at: Mon, 03 Jun 2013 21:25:58 GMT
165
+ - request:
166
+ method: delete
167
+ uri: http://10.0.5.5:4243/containers/ea83c6220f30?v=true
168
+ body:
169
+ encoding: US-ASCII
170
+ string: ''
171
+ headers: {}
172
+ response:
173
+ status:
174
+ code: 204
175
+ message: !binary |-
176
+ Tm8gQ29udGVudA==
177
+ headers:
178
+ !binary "RGF0ZQ==":
179
+ - !binary |-
180
+ TW9uLCAwMyBKdW4gMjAxMyAyMToyNzozMCBHTVQ=
181
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
182
+ - !binary |-
183
+ Y2h1bmtlZA==
184
+ !binary "Q29udGVudC1UeXBl":
185
+ - !binary |-
186
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
187
+ body:
188
+ encoding: ASCII-8BIT
189
+ string: !binary ""
190
+ http_version:
191
+ recorded_at: Mon, 03 Jun 2013 21:27:30 GMT
192
+ - request:
193
+ method: delete
194
+ uri: http://10.0.5.5:4243/containers/e884e7306c58?v=true
195
+ body:
196
+ encoding: US-ASCII
197
+ string: ''
198
+ headers: {}
199
+ response:
200
+ status:
201
+ code: 204
202
+ message: !binary |-
203
+ Tm8gQ29udGVudA==
204
+ headers:
205
+ !binary "RGF0ZQ==":
206
+ - !binary |-
207
+ TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo1MCBHTVQ=
208
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
209
+ - !binary |-
210
+ Y2h1bmtlZA==
211
+ !binary "Q29udGVudC1UeXBl":
212
+ - !binary |-
213
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
214
+ body:
215
+ encoding: ASCII-8BIT
216
+ string: !binary ""
217
+ http_version:
218
+ recorded_at: Mon, 03 Jun 2013 21:37:50 GMT
30
219
  recorded_with: VCR 2.5.0