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/containers/create"
5
+ uri: <DOCKER_HOST>/v1.16/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"Cmd":["rm","-rf","/root"],"Image":"debian:wheezy"}'
8
+ string: ! '{"Cmd":["rm","-rf","/root"],"Image":"debian:wheezy"}'
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
  - application/json
14
14
  response:
@@ -19,24 +19,25 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 01 Dec 2014 18:07:39 GMT
22
+ - Thu, 12 Feb 2015 00:53:30 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
- encoding: UTF-8
27
- string: |
28
- {"Id":"f206d30f87bbb4535daaf08c8f49b673bd09cd996b67a14669ce33af9ef81483","Warnings":null}
26
+ encoding: US-ASCII
27
+ string: ! '{"Id":"4c66f54f617e6d3764154c5af5ec25643b539f0a34f9384f99820fd950e1d2b9","Warnings":null}
28
+
29
+ '
29
30
  http_version:
30
- recorded_at: Mon, 01 Dec 2014 18:07:39 GMT
31
+ recorded_at: Thu, 12 Feb 2015 00:53:30 GMT
31
32
  - request:
32
33
  method: post
33
- uri: "<DOCKER_HOST>/v1.15/containers/f206d30f87bbb4535daaf08c8f49b673bd09cd996b67a14669ce33af9ef81483/start"
34
+ uri: <DOCKER_HOST>/v1.16/containers/4c66f54f617e6d3764154c5af5ec25643b539f0a34f9384f99820fd950e1d2b9/start
34
35
  body:
35
36
  encoding: UTF-8
36
- string: "{}"
37
+ string: ! '{}'
37
38
  headers:
38
39
  User-Agent:
39
- - Swipely/Docker-API 1.15.0
40
+ - Swipely/Docker-API 1.18.0
40
41
  Content-Type:
41
42
  - application/json
42
43
  response:
@@ -45,21 +46,21 @@ http_interactions:
45
46
  message:
46
47
  headers:
47
48
  Date:
48
- - Mon, 01 Dec 2014 18:07:39 GMT
49
+ - Thu, 12 Feb 2015 00:53:30 GMT
49
50
  body:
50
- encoding: UTF-8
51
+ encoding: US-ASCII
51
52
  string: ''
52
53
  http_version:
53
- recorded_at: Mon, 01 Dec 2014 18:07:39 GMT
54
+ recorded_at: Thu, 12 Feb 2015 00:53:30 GMT
54
55
  - request:
55
56
  method: post
56
- uri: "<DOCKER_HOST>/v1.15/containers/f206d30f87bbb4535daaf08c8f49b673bd09cd996b67a14669ce33af9ef81483/wait"
57
+ uri: <DOCKER_HOST>/v1.16/containers/4c66f54f617e6d3764154c5af5ec25643b539f0a34f9384f99820fd950e1d2b9/wait
57
58
  body:
58
59
  encoding: US-ASCII
59
60
  string: ''
60
61
  headers:
61
62
  User-Agent:
62
- - Swipely/Docker-API 1.15.0
63
+ - Swipely/Docker-API 1.18.0
63
64
  Content-Type:
64
65
  - text/plain
65
66
  response:
@@ -70,24 +71,25 @@ http_interactions:
70
71
  Content-Type:
71
72
  - application/json
72
73
  Date:
73
- - Mon, 01 Dec 2014 18:07:40 GMT
74
+ - Thu, 12 Feb 2015 00:53:30 GMT
74
75
  Content-Length:
75
76
  - '17'
76
77
  body:
77
- encoding: UTF-8
78
- string: |
79
- {"StatusCode":0}
78
+ encoding: US-ASCII
79
+ string: ! '{"StatusCode":0}
80
+
81
+ '
80
82
  http_version:
81
- recorded_at: Mon, 01 Dec 2014 18:07:40 GMT
83
+ recorded_at: Thu, 12 Feb 2015 00:53:30 GMT
82
84
  - request:
83
85
  method: get
84
- uri: "<DOCKER_HOST>/v1.15/containers/f206d30f87bbb4535daaf08c8f49b673bd09cd996b67a14669ce33af9ef81483/changes"
86
+ uri: <DOCKER_HOST>/v1.16/containers/4c66f54f617e6d3764154c5af5ec25643b539f0a34f9384f99820fd950e1d2b9/changes
85
87
  body:
86
88
  encoding: US-ASCII
87
89
  string: ''
88
90
  headers:
89
91
  User-Agent:
90
- - Swipely/Docker-API 1.15.0
92
+ - Swipely/Docker-API 1.18.0
91
93
  Content-Type:
92
94
  - text/plain
93
95
  response:
@@ -98,25 +100,25 @@ http_interactions:
98
100
  Content-Type:
99
101
  - application/json
100
102
  Date:
101
- - Mon, 01 Dec 2014 18:07:40 GMT
103
+ - Thu, 12 Feb 2015 00:53:31 GMT
102
104
  Content-Length:
103
105
  - '28'
104
106
  body:
105
- encoding: UTF-8
106
- string: |-
107
- [{"Kind":2,"Path":"/root"}
108
- ]
107
+ encoding: US-ASCII
108
+ string: ! '[{"Kind":2,"Path":"/root"}
109
+
110
+ ]'
109
111
  http_version:
110
- recorded_at: Mon, 01 Dec 2014 18:07:40 GMT
112
+ recorded_at: Thu, 12 Feb 2015 00:53:31 GMT
111
113
  - request:
112
114
  method: post
113
- uri: "<DOCKER_HOST>/v1.15/containers/f206d30f87bbb4535daaf08c8f49b673bd09cd996b67a14669ce33af9ef81483/wait"
115
+ uri: <DOCKER_HOST>/v1.16/containers/4c66f54f617e6d3764154c5af5ec25643b539f0a34f9384f99820fd950e1d2b9/wait
114
116
  body:
115
117
  encoding: US-ASCII
116
118
  string: ''
117
119
  headers:
118
120
  User-Agent:
119
- - Swipely/Docker-API 1.15.0
121
+ - Swipely/Docker-API 1.18.0
120
122
  Content-Type:
121
123
  - text/plain
122
124
  response:
@@ -127,24 +129,25 @@ http_interactions:
127
129
  Content-Type:
128
130
  - application/json
129
131
  Date:
130
- - Mon, 01 Dec 2014 18:07:40 GMT
132
+ - Thu, 12 Feb 2015 00:53:31 GMT
131
133
  Content-Length:
132
134
  - '17'
133
135
  body:
134
- encoding: UTF-8
135
- string: |
136
- {"StatusCode":0}
136
+ encoding: US-ASCII
137
+ string: ! '{"StatusCode":0}
138
+
139
+ '
137
140
  http_version:
138
- recorded_at: Mon, 01 Dec 2014 18:07:40 GMT
141
+ recorded_at: Thu, 12 Feb 2015 00:53:31 GMT
139
142
  - request:
140
143
  method: delete
141
- uri: "<DOCKER_HOST>/v1.15/containers/f206d30f87bbb4535daaf08c8f49b673bd09cd996b67a14669ce33af9ef81483"
144
+ uri: <DOCKER_HOST>/v1.16/containers/4c66f54f617e6d3764154c5af5ec25643b539f0a34f9384f99820fd950e1d2b9
142
145
  body:
143
146
  encoding: US-ASCII
144
147
  string: ''
145
148
  headers:
146
149
  User-Agent:
147
- - Swipely/Docker-API 1.15.0
150
+ - Swipely/Docker-API 1.18.0
148
151
  Content-Type:
149
152
  - text/plain
150
153
  response:
@@ -153,10 +156,10 @@ http_interactions:
153
156
  message:
154
157
  headers:
155
158
  Date:
156
- - Mon, 01 Dec 2014 18:07:40 GMT
159
+ - Thu, 12 Feb 2015 00:53:32 GMT
157
160
  body:
158
- encoding: UTF-8
161
+ encoding: US-ASCII
159
162
  string: ''
160
163
  http_version:
161
- recorded_at: Mon, 01 Dec 2014 18:07:40 GMT
162
- recorded_with: VCR 2.9.3
164
+ recorded_at: Thu, 12 Feb 2015 00:53:32 GMT
165
+ 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/containers/create"
5
+ uri: <DOCKER_HOST>/v1.16/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"Cmd":["true"],"Image":"debian:wheezy"}'
8
+ string: ! '{"Cmd":["true"],"Image":"debian:wheezy"}'
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
  - application/json
14
14
  response:
@@ -19,24 +19,25 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 01 Dec 2014 18:08:20 GMT
22
+ - Thu, 12 Feb 2015 01:02:55 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
- encoding: UTF-8
27
- string: |
28
- {"Id":"ddb290600c9cc2d42c139008add0d1a36a63c0feec0995d98dc514d2009da82e","Warnings":null}
26
+ encoding: US-ASCII
27
+ string: ! '{"Id":"47dd032599c479284b47d87a5960c0a84bc77e7e04a46838cad0690320b35f37","Warnings":null}
28
+
29
+ '
29
30
  http_version:
30
- recorded_at: Mon, 01 Dec 2014 18:08:20 GMT
31
+ recorded_at: Thu, 12 Feb 2015 01:02:55 GMT
31
32
  - request:
32
33
  method: post
33
- uri: "<DOCKER_HOST>/v1.15/containers/ddb290600c9cc2d42c139008add0d1a36a63c0feec0995d98dc514d2009da82e/start"
34
+ uri: <DOCKER_HOST>/v1.16/containers/47dd032599c479284b47d87a5960c0a84bc77e7e04a46838cad0690320b35f37/start
34
35
  body:
35
36
  encoding: UTF-8
36
- string: "{}"
37
+ string: ! '{}'
37
38
  headers:
38
39
  User-Agent:
39
- - Swipely/Docker-API 1.15.0
40
+ - Swipely/Docker-API 1.18.0
40
41
  Content-Type:
41
42
  - application/json
42
43
  response:
@@ -45,21 +46,50 @@ http_interactions:
45
46
  message:
46
47
  headers:
47
48
  Date:
48
- - Mon, 01 Dec 2014 18:08:20 GMT
49
+ - Thu, 12 Feb 2015 01:02:55 GMT
49
50
  body:
50
- encoding: UTF-8
51
+ encoding: US-ASCII
51
52
  string: ''
52
53
  http_version:
53
- recorded_at: Mon, 01 Dec 2014 18:08:20 GMT
54
+ recorded_at: Thu, 12 Feb 2015 01:02:56 GMT
54
55
  - request:
55
56
  method: post
56
- uri: "<DOCKER_HOST>/v1.15/commit?container=ddb29060"
57
+ uri: <DOCKER_HOST>/v1.16/containers/47dd032599c479284b47d87a5960c0a84bc77e7e04a46838cad0690320b35f37/wait
58
+ body:
59
+ encoding: US-ASCII
60
+ string: ''
61
+ headers:
62
+ User-Agent:
63
+ - Swipely/Docker-API 1.18.0
64
+ Content-Type:
65
+ - text/plain
66
+ response:
67
+ status:
68
+ code: 200
69
+ message:
70
+ headers:
71
+ Content-Type:
72
+ - application/json
73
+ Date:
74
+ - Thu, 12 Feb 2015 01:02:56 GMT
75
+ Content-Length:
76
+ - '17'
77
+ body:
78
+ encoding: US-ASCII
79
+ string: ! '{"StatusCode":0}
80
+
81
+ '
82
+ http_version:
83
+ recorded_at: Thu, 12 Feb 2015 01:02:56 GMT
84
+ - request:
85
+ method: post
86
+ uri: <DOCKER_HOST>/v1.16/commit?container=47dd0325
57
87
  body:
58
88
  encoding: UTF-8
59
89
  string: 'null'
60
90
  headers:
61
91
  User-Agent:
62
- - Swipely/Docker-API 1.15.0
92
+ - Swipely/Docker-API 1.18.0
63
93
  Content-Type:
64
94
  - application/json
65
95
  response:
@@ -70,24 +100,25 @@ http_interactions:
70
100
  Content-Type:
71
101
  - application/json
72
102
  Date:
73
- - Mon, 01 Dec 2014 18:08:20 GMT
103
+ - Thu, 12 Feb 2015 01:02:57 GMT
74
104
  Content-Length:
75
105
  - '74'
76
106
  body:
77
- encoding: UTF-8
78
- string: |
79
- {"Id":"4021e5edd97e2f7d42a3e7073154aeb7137d5d8d7f7c3cee3f61eadbf591fce7"}
107
+ encoding: US-ASCII
108
+ string: ! '{"Id":"acc27058c70fce89605592bf1849a82ebea4e5dab0cc69c21a48e38fdfe26fc1"}
109
+
110
+ '
80
111
  http_version:
81
- recorded_at: Mon, 01 Dec 2014 18:08:20 GMT
112
+ recorded_at: Thu, 12 Feb 2015 01:02:57 GMT
82
113
  - request:
83
114
  method: delete
84
- uri: "<DOCKER_HOST>/v1.15/containers/ddb290600c9cc2d42c139008add0d1a36a63c0feec0995d98dc514d2009da82e"
115
+ uri: <DOCKER_HOST>/v1.16/containers/47dd032599c479284b47d87a5960c0a84bc77e7e04a46838cad0690320b35f37
85
116
  body:
86
117
  encoding: US-ASCII
87
118
  string: ''
88
119
  headers:
89
120
  User-Agent:
90
- - Swipely/Docker-API 1.15.0
121
+ - Swipely/Docker-API 1.18.0
91
122
  Content-Type:
92
123
  - text/plain
93
124
  response:
@@ -96,21 +127,21 @@ http_interactions:
96
127
  message:
97
128
  headers:
98
129
  Date:
99
- - Mon, 01 Dec 2014 18:08:20 GMT
130
+ - Thu, 12 Feb 2015 01:02:58 GMT
100
131
  body:
101
- encoding: UTF-8
132
+ encoding: US-ASCII
102
133
  string: ''
103
134
  http_version:
104
- recorded_at: Mon, 01 Dec 2014 18:08:20 GMT
135
+ recorded_at: Thu, 12 Feb 2015 01:02:58 GMT
105
136
  - request:
106
137
  method: delete
107
- uri: "<DOCKER_HOST>/v1.15/images/4021e5edd97e2f7d42a3e7073154aeb7137d5d8d7f7c3cee3f61eadbf591fce7"
138
+ uri: <DOCKER_HOST>/v1.16/images/acc27058c70fce89605592bf1849a82ebea4e5dab0cc69c21a48e38fdfe26fc1
108
139
  body:
109
140
  encoding: US-ASCII
110
141
  string: ''
111
142
  headers:
112
143
  User-Agent:
113
- - Swipely/Docker-API 1.15.0
144
+ - Swipely/Docker-API 1.18.0
114
145
  Content-Type:
115
146
  - text/plain
116
147
  response:
@@ -121,14 +152,14 @@ http_interactions:
121
152
  Content-Type:
122
153
  - application/json
123
154
  Date:
124
- - Mon, 01 Dec 2014 18:08:20 GMT
155
+ - Thu, 12 Feb 2015 01:02:58 GMT
125
156
  Content-Length:
126
157
  - '81'
127
158
  body:
128
- encoding: UTF-8
129
- string: |-
130
- [{"Deleted":"4021e5edd97e2f7d42a3e7073154aeb7137d5d8d7f7c3cee3f61eadbf591fce7"}
131
- ]
159
+ encoding: US-ASCII
160
+ string: ! '[{"Deleted":"acc27058c70fce89605592bf1849a82ebea4e5dab0cc69c21a48e38fdfe26fc1"}
161
+
162
+ ]'
132
163
  http_version:
133
- recorded_at: Mon, 01 Dec 2014 18:08:20 GMT
134
- recorded_with: VCR 2.9.3
164
+ recorded_at: Thu, 12 Feb 2015 01:02:58 GMT
165
+ 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,25 +19,25 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Mon, 01 Dec 2014 18:07:43 GMT
22
+ - Thu, 12 Feb 2015 00:53:37 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:07:43 GMT
31
+ recorded_at: Thu, 12 Feb 2015 00:53:37 GMT
32
32
  - request:
33
33
  method: post
34
- uri: "<DOCKER_HOST>/v1.15/containers/create"
34
+ uri: <DOCKER_HOST>/v1.16/containers/create
35
35
  body:
36
36
  encoding: UTF-8
37
- string: '{"Image":"f6fab3b798be","Cmd":["touch","/test"]}'
37
+ string: ! '{"Image":"c90d655b99b2","Cmd":["touch","/test"]}'
38
38
  headers:
39
39
  User-Agent:
40
- - Swipely/Docker-API 1.15.0
40
+ - Swipely/Docker-API 1.18.0
41
41
  Content-Type:
42
42
  - application/json
43
43
  response:
@@ -48,24 +48,25 @@ http_interactions:
48
48
  Content-Type:
49
49
  - application/json
50
50
  Date:
51
- - Mon, 01 Dec 2014 18:07:43 GMT
51
+ - Thu, 12 Feb 2015 00:53:38 GMT
52
52
  Content-Length:
53
53
  - '90'
54
54
  body:
55
- encoding: UTF-8
56
- string: |
57
- {"Id":"38076d54d70f119e2b3345d6359605e9777bac36bea68facee102409d7a4c0d3","Warnings":null}
55
+ encoding: US-ASCII
56
+ string: ! '{"Id":"ed3183772e08bd79efe598b80aaacbe23b1533234b2587b35581c4517558d8e5","Warnings":null}
57
+
58
+ '
58
59
  http_version:
59
- recorded_at: Mon, 01 Dec 2014 18:07:43 GMT
60
+ recorded_at: Thu, 12 Feb 2015 00:53:38 GMT
60
61
  - request:
61
62
  method: post
62
- uri: "<DOCKER_HOST>/v1.15/containers/38076d54d70f119e2b3345d6359605e9777bac36bea68facee102409d7a4c0d3/start"
63
+ uri: <DOCKER_HOST>/v1.16/containers/ed3183772e08bd79efe598b80aaacbe23b1533234b2587b35581c4517558d8e5/start
63
64
  body:
64
65
  encoding: UTF-8
65
- string: "{}"
66
+ string: ! '{}'
66
67
  headers:
67
68
  User-Agent:
68
- - Swipely/Docker-API 1.15.0
69
+ - Swipely/Docker-API 1.18.0
69
70
  Content-Type:
70
71
  - application/json
71
72
  response:
@@ -74,21 +75,21 @@ http_interactions:
74
75
  message:
75
76
  headers:
76
77
  Date:
77
- - Mon, 01 Dec 2014 18:07:44 GMT
78
+ - Thu, 12 Feb 2015 00:53:38 GMT
78
79
  body:
79
- encoding: UTF-8
80
+ encoding: US-ASCII
80
81
  string: ''
81
82
  http_version:
82
- recorded_at: Mon, 01 Dec 2014 18:07:44 GMT
83
+ recorded_at: Thu, 12 Feb 2015 00:53:38 GMT
83
84
  - request:
84
85
  method: post
85
- uri: "<DOCKER_HOST>/v1.15/containers/38076d54d70f119e2b3345d6359605e9777bac36bea68facee102409d7a4c0d3/wait"
86
+ uri: <DOCKER_HOST>/v1.16/containers/ed3183772e08bd79efe598b80aaacbe23b1533234b2587b35581c4517558d8e5/wait
86
87
  body:
87
88
  encoding: US-ASCII
88
89
  string: ''
89
90
  headers:
90
91
  User-Agent:
91
- - Swipely/Docker-API 1.15.0
92
+ - Swipely/Docker-API 1.18.0
92
93
  Content-Type:
93
94
  - text/plain
94
95
  response:
@@ -99,24 +100,25 @@ http_interactions:
99
100
  Content-Type:
100
101
  - application/json
101
102
  Date:
102
- - Mon, 01 Dec 2014 18:07:44 GMT
103
+ - Thu, 12 Feb 2015 00:53:38 GMT
103
104
  Content-Length:
104
105
  - '17'
105
106
  body:
106
- encoding: UTF-8
107
- string: |
108
- {"StatusCode":0}
107
+ encoding: US-ASCII
108
+ string: ! '{"StatusCode":0}
109
+
110
+ '
109
111
  http_version:
110
- recorded_at: Mon, 01 Dec 2014 18:07:44 GMT
112
+ recorded_at: Thu, 12 Feb 2015 00:53:38 GMT
111
113
  - request:
112
114
  method: delete
113
- uri: "<DOCKER_HOST>/v1.15/containers/38076d54d70f119e2b3345d6359605e9777bac36bea68facee102409d7a4c0d3"
115
+ uri: <DOCKER_HOST>/v1.16/containers/ed3183772e08bd79efe598b80aaacbe23b1533234b2587b35581c4517558d8e5
114
116
  body:
115
117
  encoding: US-ASCII
116
118
  string: ''
117
119
  headers:
118
120
  User-Agent:
119
- - Swipely/Docker-API 1.15.0
121
+ - Swipely/Docker-API 1.18.0
120
122
  Content-Type:
121
123
  - text/plain
122
124
  response:
@@ -125,10 +127,10 @@ http_interactions:
125
127
  message:
126
128
  headers:
127
129
  Date:
128
- - Mon, 01 Dec 2014 18:07:44 GMT
130
+ - Thu, 12 Feb 2015 00:53:39 GMT
129
131
  body:
130
- encoding: UTF-8
132
+ encoding: US-ASCII
131
133
  string: ''
132
134
  http_version:
133
- recorded_at: Mon, 01 Dec 2014 18:07:44 GMT
134
- recorded_with: VCR 2.9.3
135
+ recorded_at: Thu, 12 Feb 2015 00:53:39 GMT
136
+ recorded_with: VCR 2.9.2