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
@@ -0,0 +1,183 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: <DOCKER_HOST>/v1.16/containers/create
6
+ body:
7
+ encoding: UTF-8
8
+ string: ! '{"Cmd":["sleep","20"],"Image":"debian:wheezy"}'
9
+ headers:
10
+ User-Agent:
11
+ - Swipely/Docker-API 1.18.0
12
+ Content-Type:
13
+ - application/json
14
+ response:
15
+ status:
16
+ code: 201
17
+ message:
18
+ headers:
19
+ Content-Type:
20
+ - application/json
21
+ Date:
22
+ - Thu, 12 Feb 2015 00:53:54 GMT
23
+ Content-Length:
24
+ - '90'
25
+ body:
26
+ encoding: US-ASCII
27
+ string: ! '{"Id":"8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2","Warnings":null}
28
+
29
+ '
30
+ http_version:
31
+ recorded_at: Thu, 12 Feb 2015 00:53:54 GMT
32
+ - request:
33
+ method: post
34
+ uri: <DOCKER_HOST>/v1.16/containers/8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2/start
35
+ body:
36
+ encoding: UTF-8
37
+ string: ! '{}'
38
+ headers:
39
+ User-Agent:
40
+ - Swipely/Docker-API 1.18.0
41
+ Content-Type:
42
+ - application/json
43
+ response:
44
+ status:
45
+ code: 204
46
+ message:
47
+ headers:
48
+ Date:
49
+ - Thu, 12 Feb 2015 00:53:54 GMT
50
+ body:
51
+ encoding: US-ASCII
52
+ string: ''
53
+ http_version:
54
+ recorded_at: Thu, 12 Feb 2015 00:53:54 GMT
55
+ - request:
56
+ method: post
57
+ uri: <DOCKER_HOST>/v1.16/containers/8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2/exec
58
+ body:
59
+ encoding: UTF-8
60
+ string: ! '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":false,"Cmd":["bash","-c","sleep
61
+ 2; echo hello"]}'
62
+ headers:
63
+ User-Agent:
64
+ - Swipely/Docker-API 1.18.0
65
+ Content-Type:
66
+ - application/json
67
+ response:
68
+ status:
69
+ code: 201
70
+ message:
71
+ headers:
72
+ Content-Type:
73
+ - application/json
74
+ Date:
75
+ - Thu, 12 Feb 2015 00:53:54 GMT
76
+ Content-Length:
77
+ - '74'
78
+ body:
79
+ encoding: US-ASCII
80
+ string: ! '{"Id":"88ddf689d93dae667f68c801bc3192cce86ad2f0e868656d62a089fdc46d8737"}
81
+
82
+ '
83
+ http_version:
84
+ recorded_at: Thu, 12 Feb 2015 00:53:54 GMT
85
+ - request:
86
+ method: post
87
+ uri: <DOCKER_HOST>/v1.16/exec/88ddf689d93dae667f68c801bc3192cce86ad2f0e868656d62a089fdc46d8737/start
88
+ body:
89
+ encoding: UTF-8
90
+ string: ! '{"Tty":false,"Detach":false}'
91
+ headers:
92
+ User-Agent:
93
+ - Swipely/Docker-API 1.18.0
94
+ Content-Type:
95
+ - application/json
96
+ response:
97
+ status:
98
+ code: 200
99
+ message:
100
+ headers:
101
+ Content-Type:
102
+ - application/vnd.docker.raw-stream
103
+ body:
104
+ encoding: US-ASCII
105
+ string: !binary |-
106
+ AQAAAAAAAAZoZWxsbwo=
107
+ http_version:
108
+ recorded_at: Thu, 12 Feb 2015 00:53:56 GMT
109
+ - request:
110
+ method: get
111
+ uri: <DOCKER_HOST>/v1.16/exec/88ddf689d93dae667f68c801bc3192cce86ad2f0e868656d62a089fdc46d8737/json
112
+ body:
113
+ encoding: US-ASCII
114
+ string: ''
115
+ headers:
116
+ User-Agent:
117
+ - Swipely/Docker-API 1.18.0
118
+ Content-Type:
119
+ - text/plain
120
+ response:
121
+ status:
122
+ code: 200
123
+ message:
124
+ headers:
125
+ Content-Type:
126
+ - application/json
127
+ Date:
128
+ - Thu, 12 Feb 2015 00:53:56 GMT
129
+ Content-Length:
130
+ - '1888'
131
+ body:
132
+ encoding: US-ASCII
133
+ string: ! '{"ID":"88ddf689d93dae667f68c801bc3192cce86ad2f0e868656d62a089fdc46d8737","Running":false,"ExitCode":0,"ProcessConfig":{"privileged":false,"user":"","tty":false,"entrypoint":"bash","arguments":["-c","sleep
134
+ 2; echo hello"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Pid":9917,"ExitCode":0,"Error":"","StartedAt":"2015-02-12T00:53:54.125923135Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2","Created":"2015-02-12T00:53:53.75726204Z","Path":"sleep","Args":["20"],"Config":{"Hostname":"8d22ae8d6602","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["sleep","20"],"Image":"debian:wheezy","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"MacAddress":"","OnBuild":null},"Image":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","NetworkSettings":{"IPAddress":"172.17.0.64","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:40","Gateway":"172.17.42.1","Bridge":"docker0","PortMapping":null,"Ports":{}},"ResolvConfPath":"/var/lib/docker/containers/8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2/resolv.conf","HostnamePath":"/var/lib/docker/containers/8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2/hostname","HostsPath":"/var/lib/docker/containers/8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2/hosts","Name":"/backstabbing_pike","Driver":"devicemapper","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"Volumes":{},"VolumesRW":{}}}'
135
+ http_version:
136
+ recorded_at: Thu, 12 Feb 2015 00:53:56 GMT
137
+ - request:
138
+ method: post
139
+ uri: <DOCKER_HOST>/v1.16/containers/8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2/kill
140
+ body:
141
+ encoding: US-ASCII
142
+ string: ''
143
+ headers:
144
+ User-Agent:
145
+ - Swipely/Docker-API 1.18.0
146
+ Content-Type:
147
+ - text/plain
148
+ response:
149
+ status:
150
+ code: 204
151
+ message:
152
+ headers:
153
+ Date:
154
+ - Thu, 12 Feb 2015 00:53:56 GMT
155
+ body:
156
+ encoding: US-ASCII
157
+ string: ''
158
+ http_version:
159
+ recorded_at: Thu, 12 Feb 2015 00:53:56 GMT
160
+ - request:
161
+ method: delete
162
+ uri: <DOCKER_HOST>/v1.16/containers/8d22ae8d6602ea1f072d3a8f7da7a58706ffb463a931c119f7c0596b3cd524c2
163
+ body:
164
+ encoding: US-ASCII
165
+ string: ''
166
+ headers:
167
+ User-Agent:
168
+ - Swipely/Docker-API 1.18.0
169
+ Content-Type:
170
+ - text/plain
171
+ response:
172
+ status:
173
+ code: 204
174
+ message:
175
+ headers:
176
+ Date:
177
+ - Thu, 12 Feb 2015 00:53:57 GMT
178
+ body:
179
+ encoding: US-ASCII
180
+ string: ''
181
+ http_version:
182
+ recorded_at: Thu, 12 Feb 2015 00:53:57 GMT
183
+ 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":["sleep","20"],"Image":"debian:wheezy"}'
8
+ string: ! '{"Cmd":["sleep","20"],"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:02 GMT
22
+ - Thu, 12 Feb 2015 00:54:02 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
- encoding: UTF-8
27
- string: |
28
- {"Id":"23c3c2c652864c58626b77ad6cd5f437d5488d23b6bba3f36138ecfb6d83c3b6","Warnings":null}
26
+ encoding: US-ASCII
27
+ string: ! '{"Id":"826241852c9dce92996cc154c58f0528f70091aec4a6722644cbe8bc9653111e","Warnings":null}
28
+
29
+ '
29
30
  http_version:
30
- recorded_at: Mon, 01 Dec 2014 18:08:02 GMT
31
+ recorded_at: Thu, 12 Feb 2015 00:54:02 GMT
31
32
  - request:
32
33
  method: post
33
- uri: "<DOCKER_HOST>/v1.15/containers/23c3c2c652864c58626b77ad6cd5f437d5488d23b6bba3f36138ecfb6d83c3b6/start"
34
+ uri: <DOCKER_HOST>/v1.16/containers/826241852c9dce92996cc154c58f0528f70091aec4a6722644cbe8bc9653111e/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:08:02 GMT
49
+ - Thu, 12 Feb 2015 00:54:02 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:02 GMT
54
+ recorded_at: Thu, 12 Feb 2015 00:54:02 GMT
54
55
  - request:
55
56
  method: post
56
- uri: "<DOCKER_HOST>/v1.15/containers/23c3c2c652864c58626b77ad6cd5f437d5488d23b6bba3f36138ecfb6d83c3b6/kill"
57
+ uri: <DOCKER_HOST>/v1.16/containers/826241852c9dce92996cc154c58f0528f70091aec4a6722644cbe8bc9653111e/kill
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:
@@ -68,21 +69,21 @@ http_interactions:
68
69
  message:
69
70
  headers:
70
71
  Date:
71
- - Mon, 01 Dec 2014 18:08:03 GMT
72
+ - Thu, 12 Feb 2015 00:54:02 GMT
72
73
  body:
73
- encoding: UTF-8
74
+ encoding: US-ASCII
74
75
  string: ''
75
76
  http_version:
76
- recorded_at: Mon, 01 Dec 2014 18:08:03 GMT
77
+ recorded_at: Thu, 12 Feb 2015 00:54:02 GMT
77
78
  - request:
78
79
  method: delete
79
- uri: "<DOCKER_HOST>/v1.15/containers/23c3c2c652864c58626b77ad6cd5f437d5488d23b6bba3f36138ecfb6d83c3b6"
80
+ uri: <DOCKER_HOST>/v1.16/containers/826241852c9dce92996cc154c58f0528f70091aec4a6722644cbe8bc9653111e
80
81
  body:
81
82
  encoding: US-ASCII
82
83
  string: ''
83
84
  headers:
84
85
  User-Agent:
85
- - Swipely/Docker-API 1.15.0
86
+ - Swipely/Docker-API 1.18.0
86
87
  Content-Type:
87
88
  - text/plain
88
89
  response:
@@ -91,10 +92,10 @@ http_interactions:
91
92
  message:
92
93
  headers:
93
94
  Date:
94
- - Mon, 01 Dec 2014 18:08:03 GMT
95
+ - Thu, 12 Feb 2015 00:54:03 GMT
95
96
  body:
96
- encoding: UTF-8
97
+ encoding: US-ASCII
97
98
  string: ''
98
99
  http_version:
99
- recorded_at: Mon, 01 Dec 2014 18:08:03 GMT
100
- recorded_with: VCR 2.9.3
100
+ recorded_at: Thu, 12 Feb 2015 00:54:03 GMT
101
+ 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":["sleep","20"],"Image":"debian:wheezy"}'
8
+ string: ! '{"Cmd":["sleep","20"],"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:03 GMT
22
+ - Thu, 12 Feb 2015 00:54:03 GMT
23
23
  Content-Length:
24
24
  - '90'
25
25
  body:
26
- encoding: UTF-8
27
- string: |
28
- {"Id":"ef7f05dab95bfe626f1f647451b69e752212483d76ffdfb6f71132fad81f0f85","Warnings":null}
26
+ encoding: US-ASCII
27
+ string: ! '{"Id":"7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7","Warnings":null}
28
+
29
+ '
29
30
  http_version:
30
- recorded_at: Mon, 01 Dec 2014 18:08:03 GMT
31
+ recorded_at: Thu, 12 Feb 2015 00:54:03 GMT
31
32
  - request:
32
33
  method: post
33
- uri: "<DOCKER_HOST>/v1.15/containers/ef7f05dab95bfe626f1f647451b69e752212483d76ffdfb6f71132fad81f0f85/start"
34
+ uri: <DOCKER_HOST>/v1.16/containers/7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7/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,22 +46,22 @@ http_interactions:
45
46
  message:
46
47
  headers:
47
48
  Date:
48
- - Mon, 01 Dec 2014 18:08:03 GMT
49
+ - Thu, 12 Feb 2015 00:54:03 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:03 GMT
54
+ recorded_at: Thu, 12 Feb 2015 00:54:03 GMT
54
55
  - request:
55
56
  method: post
56
- uri: "<DOCKER_HOST>/v1.15/containers/ef7f05dab95bfe626f1f647451b69e752212483d76ffdfb6f71132fad81f0f85/exec"
57
+ uri: <DOCKER_HOST>/v1.16/containers/7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7/exec
57
58
  body:
58
59
  encoding: UTF-8
59
- string: '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":true,"Cmd":["bash","-c","if
60
+ string: ! '{"AttachStdin":false,"AttachStdout":true,"AttachStderr":true,"Tty":true,"Cmd":["bash","-c","if
60
61
  [ -t 1 ]; then echo -n \"I''m a TTY!\"; fi"]}'
61
62
  headers:
62
63
  User-Agent:
63
- - Swipely/Docker-API 1.15.0
64
+ - Swipely/Docker-API 1.18.0
64
65
  Content-Type:
65
66
  - application/json
66
67
  response:
@@ -71,24 +72,25 @@ http_interactions:
71
72
  Content-Type:
72
73
  - application/json
73
74
  Date:
74
- - Mon, 01 Dec 2014 18:08:03 GMT
75
+ - Thu, 12 Feb 2015 00:54:03 GMT
75
76
  Content-Length:
76
77
  - '74'
77
78
  body:
78
- encoding: UTF-8
79
- string: |
80
- {"Id":"30b3d223a8d3f3eae574e74ac0dbe6e9ad71d25d44a674d83f18366eddc13d89"}
79
+ encoding: US-ASCII
80
+ string: ! '{"Id":"d05261bace59bbaeab929d1032b6a5d698fffead9563e1f25631e45afed137ee"}
81
+
82
+ '
81
83
  http_version:
82
- recorded_at: Mon, 01 Dec 2014 18:08:03 GMT
84
+ recorded_at: Thu, 12 Feb 2015 00:54:03 GMT
83
85
  - request:
84
86
  method: post
85
- uri: "<DOCKER_HOST>/v1.15/exec/30b3d223a8d3f3eae574e74ac0dbe6e9ad71d25d44a674d83f18366eddc13d89/start"
87
+ uri: <DOCKER_HOST>/v1.16/exec/d05261bace59bbaeab929d1032b6a5d698fffead9563e1f25631e45afed137ee/start
86
88
  body:
87
89
  encoding: UTF-8
88
- string: '{"Tty":true,"Detach":false}'
90
+ string: ! '{"Tty":true,"Detach":false}'
89
91
  headers:
90
92
  User-Agent:
91
- - Swipely/Docker-API 1.15.0
93
+ - Swipely/Docker-API 1.18.0
92
94
  Content-Type:
93
95
  - application/json
94
96
  response:
@@ -99,19 +101,47 @@ http_interactions:
99
101
  Content-Type:
100
102
  - application/vnd.docker.raw-stream
101
103
  body:
102
- encoding: UTF-8
104
+ encoding: US-ASCII
103
105
  string: I'm a TTY!
104
106
  http_version:
105
- recorded_at: Mon, 01 Dec 2014 18:08:04 GMT
107
+ recorded_at: Thu, 12 Feb 2015 00:54:03 GMT
108
+ - request:
109
+ method: get
110
+ uri: <DOCKER_HOST>/v1.16/exec/d05261bace59bbaeab929d1032b6a5d698fffead9563e1f25631e45afed137ee/json
111
+ body:
112
+ encoding: US-ASCII
113
+ string: ''
114
+ headers:
115
+ User-Agent:
116
+ - Swipely/Docker-API 1.18.0
117
+ Content-Type:
118
+ - text/plain
119
+ response:
120
+ status:
121
+ code: 200
122
+ message:
123
+ headers:
124
+ Content-Type:
125
+ - application/json
126
+ Date:
127
+ - Thu, 12 Feb 2015 00:54:03 GMT
128
+ Content-Length:
129
+ - '1914'
130
+ body:
131
+ encoding: US-ASCII
132
+ string: ! '{"ID":"d05261bace59bbaeab929d1032b6a5d698fffead9563e1f25631e45afed137ee","Running":false,"ExitCode":0,"ProcessConfig":{"privileged":false,"user":"","tty":true,"entrypoint":"bash","arguments":["-c","if
133
+ [ -t 1 ]; then echo -n \"I''m a TTY!\"; fi"]},"OpenStdin":false,"OpenStderr":true,"OpenStdout":true,"Container":{"State":{"Running":true,"Paused":false,"Restarting":false,"OOMKilled":false,"Pid":10150,"ExitCode":0,"Error":"","StartedAt":"2015-02-12T00:54:03.765860638Z","FinishedAt":"0001-01-01T00:00:00Z"},"ID":"7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7","Created":"2015-02-12T00:54:03.427361709Z","Path":"sleep","Args":["20"],"Config":{"Hostname":"7549e49c7fdf","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["sleep","20"],"Image":"debian:wheezy","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"MacAddress":"","OnBuild":null},"Image":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","NetworkSettings":{"IPAddress":"172.17.0.68","IPPrefixLen":16,"MacAddress":"02:42:ac:11:00:44","Gateway":"172.17.42.1","Bridge":"docker0","PortMapping":null,"Ports":{}},"ResolvConfPath":"/var/lib/docker/containers/7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7/resolv.conf","HostnamePath":"/var/lib/docker/containers/7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7/hostname","HostsPath":"/var/lib/docker/containers/7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7/hosts","Name":"/kickass_albattani","Driver":"devicemapper","ExecDriver":"native-0.2","MountLabel":"","ProcessLabel":"","AppArmorProfile":"","RestartCount":0,"Volumes":{},"VolumesRW":{}}}'
134
+ http_version:
135
+ recorded_at: Thu, 12 Feb 2015 00:54:03 GMT
106
136
  - request:
107
137
  method: post
108
- uri: "<DOCKER_HOST>/v1.15/containers/ef7f05dab95bfe626f1f647451b69e752212483d76ffdfb6f71132fad81f0f85/kill"
138
+ uri: <DOCKER_HOST>/v1.16/containers/7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7/kill
109
139
  body:
110
140
  encoding: US-ASCII
111
141
  string: ''
112
142
  headers:
113
143
  User-Agent:
114
- - Swipely/Docker-API 1.15.0
144
+ - Swipely/Docker-API 1.18.0
115
145
  Content-Type:
116
146
  - text/plain
117
147
  response:
@@ -120,21 +150,21 @@ http_interactions:
120
150
  message:
121
151
  headers:
122
152
  Date:
123
- - Mon, 01 Dec 2014 18:08:04 GMT
153
+ - Thu, 12 Feb 2015 00:54:03 GMT
124
154
  body:
125
- encoding: UTF-8
155
+ encoding: US-ASCII
126
156
  string: ''
127
157
  http_version:
128
- recorded_at: Mon, 01 Dec 2014 18:08:04 GMT
158
+ recorded_at: Thu, 12 Feb 2015 00:54:03 GMT
129
159
  - request:
130
160
  method: delete
131
- uri: "<DOCKER_HOST>/v1.15/containers/ef7f05dab95bfe626f1f647451b69e752212483d76ffdfb6f71132fad81f0f85"
161
+ uri: <DOCKER_HOST>/v1.16/containers/7549e49c7fdf696b4eaa3d01567237cef6f423c8b8259fd3a5015a2f1c2618f7
132
162
  body:
133
163
  encoding: US-ASCII
134
164
  string: ''
135
165
  headers:
136
166
  User-Agent:
137
- - Swipely/Docker-API 1.15.0
167
+ - Swipely/Docker-API 1.18.0
138
168
  Content-Type:
139
169
  - text/plain
140
170
  response:
@@ -143,10 +173,10 @@ http_interactions:
143
173
  message:
144
174
  headers:
145
175
  Date:
146
- - Mon, 01 Dec 2014 18:08:04 GMT
176
+ - Thu, 12 Feb 2015 00:54:04 GMT
147
177
  body:
148
- encoding: UTF-8
178
+ encoding: US-ASCII
149
179
  string: ''
150
180
  http_version:
151
- recorded_at: Mon, 01 Dec 2014 18:08:04 GMT
152
- recorded_with: VCR 2.9.3
181
+ recorded_at: Thu, 12 Feb 2015 00:54:04 GMT
182
+ recorded_with: VCR 2.9.2