docker-api 1.18.0 → 1.19.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 (100) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -7
  3. data/lib/docker/exec.rb +8 -2
  4. data/lib/docker/util.rb +11 -1
  5. data/lib/docker/version.rb +2 -2
  6. data/spec/docker/container_spec.rb +6 -5
  7. data/spec/docker/exec_spec.rb +29 -61
  8. data/spec/docker/image_spec.rb +8 -4
  9. data/spec/docker_spec.rb +4 -3
  10. data/spec/fixtures/build_from_dir/Dockerfile +1 -1
  11. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +10 -9
  12. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +15 -9
  13. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +15 -9
  14. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +10 -9
  15. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +45 -34
  16. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +31 -30
  17. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +31 -30
  18. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +45 -42
  19. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +66 -35
  20. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +37 -35
  21. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +45 -43
  22. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +44 -42
  23. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +24 -22
  24. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +15 -14
  25. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +24 -22
  26. data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +68 -39
  27. data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +68 -38
  28. data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +183 -0
  29. data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +26 -25
  30. data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +68 -38
  31. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +85 -92
  32. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +24 -22
  33. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +24 -22
  34. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +48 -43
  35. data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +83 -69
  36. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
  37. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
  38. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +45 -43
  39. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +73 -65
  40. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +29 -27
  41. 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 +114 -102
  42. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +42 -37
  43. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +49 -44
  44. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
  45. data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
  46. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +54 -51
  47. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +45 -43
  48. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +29 -27
  49. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +29 -27
  50. data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +35 -33
  51. data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +207 -0
  52. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +68 -38
  53. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +68 -38
  54. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +180 -0
  55. data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +67 -38
  56. data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +67 -38
  57. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +67 -87
  58. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +9 -9
  59. 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 +92 -107
  60. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +9 -9
  61. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +11 -9
  62. 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 +89 -38
  63. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +89 -38
  64. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +421 -51
  65. 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 +422 -140
  66. 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 +16 -16
  67. data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +9 -7
  68. data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +11 -9
  69. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +11 -9
  70. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +21 -18
  71. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +164 -35
  72. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +21 -23
  73. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +15 -15
  74. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +887 -840
  75. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +76 -65
  76. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +56 -48
  77. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +63 -61
  78. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +9 -9
  79. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +69 -66
  80. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +19 -17
  81. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +99 -113
  82. data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +100 -391
  83. data/spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml +174 -708
  84. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +115 -110
  85. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +77 -93
  86. data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +19 -17
  87. data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +581 -229
  88. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +52 -50
  89. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +42 -40
  90. data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +52 -50
  91. data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +16 -15
  92. data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +42 -39
  93. data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +51 -63
  94. data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +51 -63
  95. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +48 -209
  96. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +22 -22
  97. metadata +8 -8
  98. data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +0 -153
  99. data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +0 -155
  100. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +0 -151
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=debian%3Awheezy"
5
+ uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.15.0
11
+ - Swipely/Docker-API 1.18.0
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,26 +19,26 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 01 Dec 2014 18:08:38 GMT
22
+ - Thu, 12 Feb 2015 00:54:56 GMT
23
23
  body:
24
- encoding: UTF-8
25
- string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
24
+ encoding: US-ASCII
25
+ string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
26
26
  exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
27
- exists\",\"progressDetail\":{},\"id\":\"f10807909bc5\"}{\"status\":\"Already
28
- exists\",\"progressDetail\":{},\"id\":\"f6fab3b798be\"}{\"status\":\"Status:
27
+ exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
28
+ exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
29
29
  Image is up to date for debian:wheezy\"}\r\n"
30
30
  http_version:
31
- recorded_at: Mon, 01 Dec 2014 18:08:38 GMT
31
+ recorded_at: Thu, 12 Feb 2015 00:54:56 GMT
32
32
  - request:
33
33
  method: post
34
- uri: "<DOCKER_HOST>/v1.15/build"
34
+ uri: <DOCKER_HOST>/v1.16/build
35
35
  body:
36
36
  encoding: UTF-8
37
37
  string: !binary |-
38
38
  R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
39
39
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
40
40
  AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
41
- ADEyNDM3MTI3MjQ2ADAxMjYxNQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
41
+ ADAwMDAwMDAwMDAwADAxMjU0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
42
42
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
43
43
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
44
44
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
@@ -60,8 +60,8 @@ http_interactions:
60
60
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tlcmZpbGUA
61
61
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
62
62
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
63
- MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAxMjQzNzEyNzI0
64
- NgAwMTMzMDYAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
63
+ MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAwMDAwMDAwMDAw
64
+ MAAwMTMyMzcAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
65
65
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
66
66
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
67
67
  AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@@ -69,7 +69,7 @@ http_interactions:
69
69
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
70
70
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
71
71
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
72
- AAAAAAAAZnJvbSBmNmZhYjNiNzk4YmUKYWRkIEdlbWZpbGUgLwoAAAAAAAAA
72
+ AAAAAAAAZnJvbSBjOTBkNjU1Yjk5YjIKYWRkIEdlbWZpbGUgLwoAAAAAAAAA
73
73
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
74
74
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
75
75
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@@ -106,7 +106,7 @@ http_interactions:
106
106
  AAAAAAAAAAAAAAAA
107
107
  headers:
108
108
  User-Agent:
109
- - Swipely/Docker-API 1.15.0
109
+ - Swipely/Docker-API 1.18.0
110
110
  Content-Type:
111
111
  - application/json
112
112
  response:
@@ -117,24 +117,24 @@ http_interactions:
117
117
  Content-Type:
118
118
  - application/json
119
119
  Date:
120
- - Mon, 01 Dec 2014 18:08:38 GMT
120
+ - Thu, 12 Feb 2015 00:54:56 GMT
121
121
  body:
122
- encoding: UTF-8
123
- string: "{\"stream\":\"Step 0 : FROM f6fab3b798be\\n\"}\r\n{\"stream\":\" ---\\u003e
124
- f6fab3b798be\\n\"}\r\n{\"stream\":\"Step 1 : ADD Gemfile /\\n\"}\r\n{\"stream\":\"
125
- ---\\u003e 13958de2102c\\n\"}\r\n{\"stream\":\"Removing intermediate container
126
- 68681f81b07b\\n\"}\r\n{\"stream\":\"Successfully built 13958de2102c\\n\"}\r\n"
122
+ encoding: US-ASCII
123
+ string: ! "{\"stream\":\"Step 0 : FROM c90d655b99b2\\n\"}\r\n{\"stream\":\"
124
+ ---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step 1 : ADD Gemfile /\\n\"}\r\n{\"stream\":\"
125
+ ---\\u003e 2743a448d2b9\\n\"}\r\n{\"stream\":\"Removing intermediate container
126
+ dbddd65bbe7a\\n\"}\r\n{\"stream\":\"Successfully built 2743a448d2b9\\n\"}\r\n"
127
127
  http_version:
128
- recorded_at: Mon, 01 Dec 2014 18:08:38 GMT
128
+ recorded_at: Thu, 12 Feb 2015 00:54:58 GMT
129
129
  - request:
130
130
  method: post
131
- uri: "<DOCKER_HOST>/v1.15/containers/create"
131
+ uri: <DOCKER_HOST>/v1.16/containers/create
132
132
  body:
133
133
  encoding: UTF-8
134
- string: '{"Image":"13958de2102c","Cmd":["cat","/Gemfile"]}'
134
+ string: ! '{"Image":"2743a448d2b9","Cmd":["cat","/Gemfile"]}'
135
135
  headers:
136
136
  User-Agent:
137
- - Swipely/Docker-API 1.15.0
137
+ - Swipely/Docker-API 1.18.0
138
138
  Content-Type:
139
139
  - application/json
140
140
  response:
@@ -145,24 +145,25 @@ http_interactions:
145
145
  Content-Type:
146
146
  - application/json
147
147
  Date:
148
- - Mon, 01 Dec 2014 18:08:38 GMT
148
+ - Thu, 12 Feb 2015 00:54:58 GMT
149
149
  Content-Length:
150
150
  - '90'
151
151
  body:
152
- encoding: UTF-8
153
- string: |
154
- {"Id":"2fd5ed5ac228b521f607c8c01a0dc15e261f58cb95624d9101f6c7e69b11675e","Warnings":null}
152
+ encoding: US-ASCII
153
+ string: ! '{"Id":"5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927","Warnings":null}
154
+
155
+ '
155
156
  http_version:
156
- recorded_at: Mon, 01 Dec 2014 18:08:38 GMT
157
+ recorded_at: Thu, 12 Feb 2015 00:54:58 GMT
157
158
  - request:
158
159
  method: post
159
- uri: "<DOCKER_HOST>/v1.15/containers/2fd5ed5ac228b521f607c8c01a0dc15e261f58cb95624d9101f6c7e69b11675e/start"
160
+ uri: <DOCKER_HOST>/v1.16/containers/5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927/start
160
161
  body:
161
162
  encoding: UTF-8
162
- string: "{}"
163
+ string: ! '{}'
163
164
  headers:
164
165
  User-Agent:
165
- - Swipely/Docker-API 1.15.0
166
+ - Swipely/Docker-API 1.18.0
166
167
  Content-Type:
167
168
  - application/json
168
169
  response:
@@ -171,21 +172,21 @@ http_interactions:
171
172
  message:
172
173
  headers:
173
174
  Date:
174
- - Mon, 01 Dec 2014 18:08:39 GMT
175
+ - Thu, 12 Feb 2015 00:54:59 GMT
175
176
  body:
176
- encoding: UTF-8
177
+ encoding: US-ASCII
177
178
  string: ''
178
179
  http_version:
179
- recorded_at: Mon, 01 Dec 2014 18:08:39 GMT
180
+ recorded_at: Thu, 12 Feb 2015 00:54:59 GMT
180
181
  - request:
181
182
  method: get
182
- uri: "<DOCKER_HOST>/v1.15/containers/2fd5ed5ac228b521f607c8c01a0dc15e261f58cb95624d9101f6c7e69b11675e/logs?stdout=true"
183
+ uri: <DOCKER_HOST>/v1.16/containers/5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927/logs?stdout=true
183
184
  body:
184
185
  encoding: US-ASCII
185
186
  string: ''
186
187
  headers:
187
188
  User-Agent:
188
- - Swipely/Docker-API 1.15.0
189
+ - Swipely/Docker-API 1.18.0
189
190
  Content-Type:
190
191
  - text/plain
191
192
  response:
@@ -194,25 +195,25 @@ http_interactions:
194
195
  message:
195
196
  headers:
196
197
  Date:
197
- - Mon, 01 Dec 2014 18:08:39 GMT
198
+ - Thu, 12 Feb 2015 00:54:59 GMT
198
199
  Content-Type:
199
200
  - application/octet-stream
200
201
  body:
201
- encoding: UTF-8
202
+ encoding: US-ASCII
202
203
  string: !binary |-
203
204
  AQAAAAAAAB1zb3VyY2UgJ2h0dHA6Ly9ydWJ5Z2Vtcy5vcmcnCgEAAAAAAAAB
204
205
  CgEAAAAAAAAIZ2Vtc3BlYwo=
205
206
  http_version:
206
- recorded_at: Mon, 01 Dec 2014 18:08:39 GMT
207
+ recorded_at: Thu, 12 Feb 2015 00:54:59 GMT
207
208
  - request:
208
209
  method: post
209
- uri: "<DOCKER_HOST>/v1.15/containers/2fd5ed5ac228b521f607c8c01a0dc15e261f58cb95624d9101f6c7e69b11675e/wait"
210
+ uri: <DOCKER_HOST>/v1.16/containers/5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927/wait
210
211
  body:
211
212
  encoding: US-ASCII
212
213
  string: ''
213
214
  headers:
214
215
  User-Agent:
215
- - Swipely/Docker-API 1.15.0
216
+ - Swipely/Docker-API 1.18.0
216
217
  Content-Type:
217
218
  - text/plain
218
219
  response:
@@ -223,24 +224,25 @@ http_interactions:
223
224
  Content-Type:
224
225
  - application/json
225
226
  Date:
226
- - Mon, 01 Dec 2014 18:08:39 GMT
227
+ - Thu, 12 Feb 2015 00:54:59 GMT
227
228
  Content-Length:
228
229
  - '17'
229
230
  body:
230
- encoding: UTF-8
231
- string: |
232
- {"StatusCode":0}
231
+ encoding: US-ASCII
232
+ string: ! '{"StatusCode":0}
233
+
234
+ '
233
235
  http_version:
234
- recorded_at: Mon, 01 Dec 2014 18:08:39 GMT
236
+ recorded_at: Thu, 12 Feb 2015 00:54:59 GMT
235
237
  - request:
236
238
  method: delete
237
- uri: "<DOCKER_HOST>/v1.15/containers/2fd5ed5ac228b521f607c8c01a0dc15e261f58cb95624d9101f6c7e69b11675e"
239
+ uri: <DOCKER_HOST>/v1.16/containers/5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927
238
240
  body:
239
241
  encoding: US-ASCII
240
242
  string: ''
241
243
  headers:
242
244
  User-Agent:
243
- - Swipely/Docker-API 1.15.0
245
+ - Swipely/Docker-API 1.18.0
244
246
  Content-Type:
245
247
  - text/plain
246
248
  response:
@@ -249,21 +251,21 @@ http_interactions:
249
251
  message:
250
252
  headers:
251
253
  Date:
252
- - Mon, 01 Dec 2014 18:08:39 GMT
254
+ - Thu, 12 Feb 2015 00:54:59 GMT
253
255
  body:
254
- encoding: UTF-8
256
+ encoding: US-ASCII
255
257
  string: ''
256
258
  http_version:
257
- recorded_at: Mon, 01 Dec 2014 18:08:39 GMT
259
+ recorded_at: Thu, 12 Feb 2015 00:54:59 GMT
258
260
  - request:
259
261
  method: delete
260
- uri: "<DOCKER_HOST>/v1.15/images/13958de2102c"
262
+ uri: <DOCKER_HOST>/v1.16/images/2743a448d2b9
261
263
  body:
262
264
  encoding: US-ASCII
263
265
  string: ''
264
266
  headers:
265
267
  User-Agent:
266
- - Swipely/Docker-API 1.15.0
268
+ - Swipely/Docker-API 1.18.0
267
269
  Content-Type:
268
270
  - text/plain
269
271
  response:
@@ -274,14 +276,14 @@ http_interactions:
274
276
  Content-Type:
275
277
  - application/json
276
278
  Date:
277
- - Mon, 01 Dec 2014 18:08:39 GMT
279
+ - Thu, 12 Feb 2015 00:55:00 GMT
278
280
  Content-Length:
279
281
  - '81'
280
282
  body:
281
- encoding: UTF-8
282
- string: |-
283
- [{"Deleted":"13958de2102c7720ed844153b2f3011f6211ae4d708a781b01f9a449dab7bb3b"}
284
- ]
283
+ encoding: US-ASCII
284
+ string: ! '[{"Deleted":"2743a448d2b989deefc9ac2e2d8c3840cb943bc3f03a6ebe1312844c0d790f36"}
285
+
286
+ ]'
285
287
  http_version:
286
- recorded_at: Mon, 01 Dec 2014 18:08:39 GMT
287
- recorded_with: VCR 2.9.3
288
+ recorded_at: Thu, 12 Feb 2015 00:55:00 GMT
289
+ recorded_with: VCR 2.9.2
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=debian%3Awheezy"
5
+ uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.15.0
11
+ - Swipely/Docker-API 1.18.0
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,14 +19,14 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 01 Dec 2014 18:08:38 GMT
22
+ - Thu, 12 Feb 2015 00:54:55 GMT
23
23
  body:
24
- encoding: UTF-8
25
- string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
24
+ encoding: US-ASCII
25
+ string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
26
26
  exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
27
- exists\",\"progressDetail\":{},\"id\":\"f10807909bc5\"}{\"status\":\"Already
28
- exists\",\"progressDetail\":{},\"id\":\"f6fab3b798be\"}{\"status\":\"Status:
27
+ exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
28
+ exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
29
29
  Image is up to date for debian:wheezy\"}\r\n"
30
30
  http_version:
31
- recorded_at: Mon, 01 Dec 2014 18:08:37 GMT
32
- recorded_with: VCR 2.9.3
31
+ recorded_at: Thu, 12 Feb 2015 00:54:55 GMT
32
+ recorded_with: VCR 2.9.2
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=debian%3Awheezy"
5
+ uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.15.0
11
+ - Swipely/Docker-API 1.18.0
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,26 +19,26 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 01 Dec 2014 18:08:41 GMT
22
+ - Thu, 12 Feb 2015 00:55:06 GMT
23
23
  body:
24
- encoding: UTF-8
25
- string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
24
+ encoding: US-ASCII
25
+ string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
26
26
  exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
27
- exists\",\"progressDetail\":{},\"id\":\"f10807909bc5\"}{\"status\":\"Already
28
- exists\",\"progressDetail\":{},\"id\":\"f6fab3b798be\"}{\"status\":\"Status:
27
+ exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
28
+ exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
29
29
  Image is up to date for debian:wheezy\"}\r\n"
30
30
  http_version:
31
- recorded_at: Mon, 01 Dec 2014 18:08:41 GMT
31
+ recorded_at: Thu, 12 Feb 2015 00:55:06 GMT
32
32
  - request:
33
33
  method: post
34
- uri: "<DOCKER_HOST>/v1.15/build"
34
+ uri: <DOCKER_HOST>/v1.16/build
35
35
  body:
36
36
  encoding: UTF-8
37
37
  string: !binary |-
38
38
  R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
39
39
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
40
40
  AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
41
- ADEyNDM3MTI3MjUxADAxMjYxMQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
41
+ ADAwMDAwMDAwMDAwADAxMjU0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
42
42
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
43
43
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
44
44
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
@@ -60,8 +60,8 @@ http_interactions:
60
60
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAExJQ0VOU0UAAAAA
61
61
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
62
62
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
63
- MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMjA3MQAxMjQzNzEyNzI1
64
- MQAwMTIzMjMAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
63
+ MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMjA3MQAwMDAwMDAwMDAw
64
+ MAAwMTIyNjAAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
65
65
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
66
66
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
67
67
  AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@@ -106,7 +106,7 @@ http_interactions:
106
106
  AAAAAAAAAAAAAAAARG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
107
107
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
108
108
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAw
109
- ADAwMDAwMDAwMDU2ADEyNDM3MTI3MjUxADAxMzMxMQAgMAAAAAAAAAAAAAAA
109
+ ADAwMDAwMDAwMDU2ADAwMDAwMDAwMDAwADAxMzI0NgAgMAAAAAAAAAAAAAAA
110
110
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
111
111
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1
112
112
  c3RhcgAwMHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwA
@@ -114,8 +114,8 @@ http_interactions:
114
114
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
115
115
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
116
116
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
117
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmcm9tIGY2ZmFiM2I3OThi
118
- ZQphZGQgR2VtZmlsZSAvCmFkZCBMSUNFTlNFIC8KAAAAAAAAAAAAAAAAAAAA
117
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmcm9tIGM5MGQ2NTViOTli
118
+ MgphZGQgR2VtZmlsZSAvCmFkZCBMSUNFTlNFIC8KAAAAAAAAAAAAAAAAAAAA
119
119
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
120
120
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
121
121
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@@ -151,7 +151,7 @@ http_interactions:
151
151
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
152
152
  headers:
153
153
  User-Agent:
154
- - Swipely/Docker-API 1.15.0
154
+ - Swipely/Docker-API 1.18.0
155
155
  Content-Type:
156
156
  - application/json
157
157
  response:
@@ -162,26 +162,26 @@ http_interactions:
162
162
  Content-Type:
163
163
  - application/json
164
164
  Date:
165
- - Mon, 01 Dec 2014 18:08:41 GMT
165
+ - Thu, 12 Feb 2015 00:55:06 GMT
166
166
  body:
167
- encoding: UTF-8
168
- string: "{\"stream\":\"Step 0 : FROM f6fab3b798be\\n\"}\r\n{\"stream\":\" ---\\u003e
169
- f6fab3b798be\\n\"}\r\n{\"stream\":\"Step 1 : ADD Gemfile /\\n\"}\r\n{\"stream\":\"
170
- ---\\u003e 7edae727786d\\n\"}\r\n{\"stream\":\"Removing intermediate container
171
- bdaf5b84b189\\n\"}\r\n{\"stream\":\"Step 2 : ADD LICENSE /\\n\"}\r\n{\"stream\":\"
172
- ---\\u003e 3a68acd43c42\\n\"}\r\n{\"stream\":\"Removing intermediate container
173
- 436d403d7d8a\\n\"}\r\n{\"stream\":\"Successfully built 3a68acd43c42\\n\"}\r\n"
167
+ encoding: US-ASCII
168
+ string: ! "{\"stream\":\"Step 0 : FROM c90d655b99b2\\n\"}\r\n{\"stream\":\"
169
+ ---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step 1 : ADD Gemfile /\\n\"}\r\n{\"stream\":\"
170
+ ---\\u003e fb6a9bcd9a7f\\n\"}\r\n{\"stream\":\"Removing intermediate container
171
+ eacf4d1eab40\\n\"}\r\n{\"stream\":\"Step 2 : ADD LICENSE /\\n\"}\r\n{\"stream\":\"
172
+ ---\\u003e bd28ee20df90\\n\"}\r\n{\"stream\":\"Removing intermediate container
173
+ cda4e700ecea\\n\"}\r\n{\"stream\":\"Successfully built bd28ee20df90\\n\"}\r\n"
174
174
  http_version:
175
- recorded_at: Mon, 01 Dec 2014 18:08:41 GMT
175
+ recorded_at: Thu, 12 Feb 2015 00:55:10 GMT
176
176
  - request:
177
177
  method: post
178
- uri: "<DOCKER_HOST>/v1.15/containers/create"
178
+ uri: <DOCKER_HOST>/v1.16/containers/create
179
179
  body:
180
180
  encoding: UTF-8
181
- string: '{"Image":"3a68acd43c42","Cmd":["cat","/Gemfile","/LICENSE"]}'
181
+ string: ! '{"Image":"bd28ee20df90","Cmd":["cat","/Gemfile","/LICENSE"]}'
182
182
  headers:
183
183
  User-Agent:
184
- - Swipely/Docker-API 1.15.0
184
+ - Swipely/Docker-API 1.18.0
185
185
  Content-Type:
186
186
  - application/json
187
187
  response:
@@ -192,24 +192,25 @@ http_interactions:
192
192
  Content-Type:
193
193
  - application/json
194
194
  Date:
195
- - Mon, 01 Dec 2014 18:08:42 GMT
195
+ - Thu, 12 Feb 2015 00:55:11 GMT
196
196
  Content-Length:
197
197
  - '90'
198
198
  body:
199
- encoding: UTF-8
200
- string: |
201
- {"Id":"5ea91fdf20cf2d485c302738dd7dcd0f6c3b4ee8b2223ef178b67175283c8328","Warnings":null}
199
+ encoding: US-ASCII
200
+ string: ! '{"Id":"bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58","Warnings":null}
201
+
202
+ '
202
203
  http_version:
203
- recorded_at: Mon, 01 Dec 2014 18:08:41 GMT
204
+ recorded_at: Thu, 12 Feb 2015 00:55:11 GMT
204
205
  - request:
205
206
  method: post
206
- uri: "<DOCKER_HOST>/v1.15/containers/5ea91fdf20cf2d485c302738dd7dcd0f6c3b4ee8b2223ef178b67175283c8328/start"
207
+ uri: <DOCKER_HOST>/v1.16/containers/bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58/start
207
208
  body:
208
209
  encoding: UTF-8
209
- string: "{}"
210
+ string: ! '{}'
210
211
  headers:
211
212
  User-Agent:
212
- - Swipely/Docker-API 1.15.0
213
+ - Swipely/Docker-API 1.18.0
213
214
  Content-Type:
214
215
  - application/json
215
216
  response:
@@ -218,21 +219,21 @@ http_interactions:
218
219
  message:
219
220
  headers:
220
221
  Date:
221
- - Mon, 01 Dec 2014 18:08:42 GMT
222
+ - Thu, 12 Feb 2015 00:55:11 GMT
222
223
  body:
223
- encoding: UTF-8
224
+ encoding: US-ASCII
224
225
  string: ''
225
226
  http_version:
226
- recorded_at: Mon, 01 Dec 2014 18:08:42 GMT
227
+ recorded_at: Thu, 12 Feb 2015 00:55:11 GMT
227
228
  - request:
228
229
  method: get
229
- uri: "<DOCKER_HOST>/v1.15/containers/5ea91fdf20cf2d485c302738dd7dcd0f6c3b4ee8b2223ef178b67175283c8328/logs?stdout=true"
230
+ uri: <DOCKER_HOST>/v1.16/containers/bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58/logs?stdout=true
230
231
  body:
231
232
  encoding: US-ASCII
232
233
  string: ''
233
234
  headers:
234
235
  User-Agent:
235
- - Swipely/Docker-API 1.15.0
236
+ - Swipely/Docker-API 1.18.0
236
237
  Content-Type:
237
238
  - text/plain
238
239
  response:
@@ -241,11 +242,11 @@ http_interactions:
241
242
  message:
242
243
  headers:
243
244
  Date:
244
- - Mon, 01 Dec 2014 18:08:42 GMT
245
+ - Thu, 12 Feb 2015 00:55:11 GMT
245
246
  Content-Type:
246
247
  - application/octet-stream
247
248
  body:
248
- encoding: UTF-8
249
+ encoding: US-ASCII
249
250
  string: !binary |-
250
251
  AQAAAAAAAB1zb3VyY2UgJ2h0dHA6Ly9ydWJ5Z2Vtcy5vcmcnCgEAAAAAAAAB
251
252
  CgEAAAAAAAAIZ2Vtc3BlYwoBAAAAAAAAFlRoZSBNSVQgTGljZW5zZSAoTUlU
@@ -278,16 +279,16 @@ http_interactions:
278
279
  SEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOCgEAAAAAAAAOVEhFIFNPRlRX
279
280
  QVJFLgoBAAAAAAAAAQo=
280
281
  http_version:
281
- recorded_at: Mon, 01 Dec 2014 18:08:42 GMT
282
+ recorded_at: Thu, 12 Feb 2015 00:55:11 GMT
282
283
  - request:
283
284
  method: post
284
- uri: "<DOCKER_HOST>/v1.15/containers/5ea91fdf20cf2d485c302738dd7dcd0f6c3b4ee8b2223ef178b67175283c8328/wait"
285
+ uri: <DOCKER_HOST>/v1.16/containers/bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58/wait
285
286
  body:
286
287
  encoding: US-ASCII
287
288
  string: ''
288
289
  headers:
289
290
  User-Agent:
290
- - Swipely/Docker-API 1.15.0
291
+ - Swipely/Docker-API 1.18.0
291
292
  Content-Type:
292
293
  - text/plain
293
294
  response:
@@ -298,24 +299,25 @@ http_interactions:
298
299
  Content-Type:
299
300
  - application/json
300
301
  Date:
301
- - Mon, 01 Dec 2014 18:08:42 GMT
302
+ - Thu, 12 Feb 2015 00:55:11 GMT
302
303
  Content-Length:
303
304
  - '17'
304
305
  body:
305
- encoding: UTF-8
306
- string: |
307
- {"StatusCode":0}
306
+ encoding: US-ASCII
307
+ string: ! '{"StatusCode":0}
308
+
309
+ '
308
310
  http_version:
309
- recorded_at: Mon, 01 Dec 2014 18:08:42 GMT
311
+ recorded_at: Thu, 12 Feb 2015 00:55:11 GMT
310
312
  - request:
311
313
  method: delete
312
- uri: "<DOCKER_HOST>/v1.15/containers/5ea91fdf20cf2d485c302738dd7dcd0f6c3b4ee8b2223ef178b67175283c8328"
314
+ uri: <DOCKER_HOST>/v1.16/containers/bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58
313
315
  body:
314
316
  encoding: US-ASCII
315
317
  string: ''
316
318
  headers:
317
319
  User-Agent:
318
- - Swipely/Docker-API 1.15.0
320
+ - Swipely/Docker-API 1.18.0
319
321
  Content-Type:
320
322
  - text/plain
321
323
  response:
@@ -324,21 +326,21 @@ http_interactions:
324
326
  message:
325
327
  headers:
326
328
  Date:
327
- - Mon, 01 Dec 2014 18:08:42 GMT
329
+ - Thu, 12 Feb 2015 00:55:12 GMT
328
330
  body:
329
- encoding: UTF-8
331
+ encoding: US-ASCII
330
332
  string: ''
331
333
  http_version:
332
- recorded_at: Mon, 01 Dec 2014 18:08:42 GMT
334
+ recorded_at: Thu, 12 Feb 2015 00:55:12 GMT
333
335
  - request:
334
336
  method: delete
335
- uri: "<DOCKER_HOST>/v1.15/images/3a68acd43c42"
337
+ uri: <DOCKER_HOST>/v1.16/images/bd28ee20df90
336
338
  body:
337
339
  encoding: US-ASCII
338
340
  string: ''
339
341
  headers:
340
342
  User-Agent:
341
- - Swipely/Docker-API 1.15.0
343
+ - Swipely/Docker-API 1.18.0
342
344
  Content-Type:
343
345
  - text/plain
344
346
  response:
@@ -349,15 +351,16 @@ http_interactions:
349
351
  Content-Type:
350
352
  - application/json
351
353
  Date:
352
- - Mon, 01 Dec 2014 18:08:42 GMT
354
+ - Thu, 12 Feb 2015 00:55:13 GMT
353
355
  Content-Length:
354
356
  - '161'
355
357
  body:
356
- encoding: UTF-8
357
- string: |-
358
- [{"Deleted":"3a68acd43c42ab87827ccbc0825294d0645bdc350c7daa4c02ab566fb9e92c13"}
359
- ,{"Deleted":"7edae727786d7f69a02e3ff91f700040bd2900c395a2081640e04f1d232d591e"}
360
- ]
358
+ encoding: US-ASCII
359
+ string: ! '[{"Deleted":"bd28ee20df90524afb9c2a75c48cf38ec5335bd03668bcaa826c2d04d425e8c1"}
360
+
361
+ ,{"Deleted":"fb6a9bcd9a7f3abb0dc9755f31c8bdd5d4622f25261948dd5c77de8018f73341"}
362
+
363
+ ]'
361
364
  http_version:
362
- recorded_at: Mon, 01 Dec 2014 18:08:42 GMT
363
- recorded_with: VCR 2.9.3
365
+ recorded_at: Thu, 12 Feb 2015 00:55:13 GMT
366
+ recorded_with: VCR 2.9.2