docker-api 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -7
- data/lib/docker/exec.rb +8 -2
- data/lib/docker/util.rb +11 -1
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +6 -5
- data/spec/docker/exec_spec.rb +29 -61
- data/spec/docker/image_spec.rb +8 -4
- data/spec/docker_spec.rb +4 -3
- data/spec/fixtures/build_from_dir/Dockerfile +1 -1
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +10 -9
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +15 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +15 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +10 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +45 -34
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +45 -42
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +66 -35
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +37 -35
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +45 -43
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +44 -42
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +24 -22
- 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
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +24 -22
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +68 -39
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +183 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +26 -25
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +68 -38
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +85 -92
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +24 -22
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +24 -22
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +48 -43
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +83 -69
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +73 -65
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +29 -27
- 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
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +42 -37
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +49 -44
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +54 -51
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +29 -27
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +29 -27
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +35 -33
- data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +207 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +180 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +67 -38
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +67 -38
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +67 -87
- 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
- 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
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +9 -9
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +11 -9
- 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
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +421 -51
- 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
- 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
- data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +9 -7
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +11 -9
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +11 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +21 -18
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +164 -35
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +21 -23
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +15 -15
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +887 -840
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +76 -65
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +56 -48
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +63 -61
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +9 -9
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +69 -66
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +19 -17
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +99 -113
- data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +100 -391
- 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
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +115 -110
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +77 -93
- data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +19 -17
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +581 -229
- 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
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +42 -40
- 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
- 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
- data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +42 -39
- data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +51 -63
- data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +51 -63
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +48 -209
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +22 -22
- metadata +8 -8
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +0 -153
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +0 -155
- 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:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["sleep","10"],"Image":"debian:wheezy"}'
|
8
|
+
string: ! '{"Cmd":["sleep","10"],"Image":"debian:wheezy"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
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
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:54:09 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"6b37bf9030f9a52e08777e7d775f9454b567665e766731a6681ed7cd279cb136","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:09 GMT
|
31
32
|
- request:
|
32
33
|
method: post
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/6b37bf9030f9a52e08777e7d775f9454b567665e766731a6681ed7cd279cb136/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.
|
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
|
-
-
|
49
|
+
- Thu, 12 Feb 2015 00:54:09 GMT
|
49
50
|
body:
|
50
|
-
encoding:
|
51
|
+
encoding: US-ASCII
|
51
52
|
string: ''
|
52
53
|
http_version:
|
53
|
-
recorded_at:
|
54
|
+
recorded_at: Thu, 12 Feb 2015 00:54:09 GMT
|
54
55
|
- request:
|
55
56
|
method: get
|
56
|
-
uri:
|
57
|
+
uri: <DOCKER_HOST>/v1.16/containers/json
|
57
58
|
body:
|
58
59
|
encoding: US-ASCII
|
59
60
|
string: ''
|
60
61
|
headers:
|
61
62
|
User-Agent:
|
62
|
-
- Swipely/Docker-API 1.
|
63
|
+
- Swipely/Docker-API 1.18.0
|
63
64
|
Content-Type:
|
64
65
|
- text/plain
|
65
66
|
response:
|
@@ -70,26 +71,29 @@ http_interactions:
|
|
70
71
|
Content-Type:
|
71
72
|
- application/json
|
72
73
|
Date:
|
73
|
-
-
|
74
|
+
- Thu, 12 Feb 2015 00:54:09 GMT
|
74
75
|
Content-Length:
|
75
|
-
- '
|
76
|
+
- '490'
|
76
77
|
body:
|
77
|
-
encoding:
|
78
|
-
string:
|
79
|
-
|
80
|
-
|
81
|
-
]
|
78
|
+
encoding: US-ASCII
|
79
|
+
string: ! '[{"Command":"sleep 10","Created":1423702448,"Id":"6b37bf9030f9a52e08777e7d775f9454b567665e766731a6681ed7cd279cb136","Image":"debian:wheezy","Names":["/dreamy_goldstine"],"Ports":[],"Status":"Up
|
80
|
+
Less than a second"}
|
81
|
+
|
82
|
+
,{"Command":"docker-registry","Created":1423702401,"Id":"7495fa1e6c231934f42eb34525f24a052af2a7a43ae9c85051636428a62a40ba","Image":"registry:latest","Names":["/registry"],"Ports":[{"IP":"0.0.0.0","PrivatePort":5000,"PublicPort":5000,"Type":"tcp"}],"Status":"Up
|
83
|
+
47 seconds"}
|
84
|
+
|
85
|
+
]'
|
82
86
|
http_version:
|
83
|
-
recorded_at:
|
87
|
+
recorded_at: Thu, 12 Feb 2015 00:54:09 GMT
|
84
88
|
- request:
|
85
89
|
method: post
|
86
|
-
uri:
|
90
|
+
uri: <DOCKER_HOST>/v1.16/containers/6b37bf9030f9a52e08777e7d775f9454b567665e766731a6681ed7cd279cb136/stop
|
87
91
|
body:
|
88
92
|
encoding: UTF-8
|
89
|
-
string:
|
93
|
+
string: ! '{}'
|
90
94
|
headers:
|
91
95
|
User-Agent:
|
92
|
-
- Swipely/Docker-API 1.
|
96
|
+
- Swipely/Docker-API 1.18.0
|
93
97
|
Content-Type:
|
94
98
|
- application/json
|
95
99
|
response:
|
@@ -98,21 +102,21 @@ http_interactions:
|
|
98
102
|
message:
|
99
103
|
headers:
|
100
104
|
Date:
|
101
|
-
-
|
105
|
+
- Thu, 12 Feb 2015 00:54:09 GMT
|
102
106
|
body:
|
103
|
-
encoding:
|
107
|
+
encoding: US-ASCII
|
104
108
|
string: ''
|
105
109
|
http_version:
|
106
|
-
recorded_at:
|
110
|
+
recorded_at: Thu, 12 Feb 2015 00:54:09 GMT
|
107
111
|
- request:
|
108
112
|
method: get
|
109
|
-
uri:
|
113
|
+
uri: <DOCKER_HOST>/v1.16/containers/json
|
110
114
|
body:
|
111
115
|
encoding: US-ASCII
|
112
116
|
string: ''
|
113
117
|
headers:
|
114
118
|
User-Agent:
|
115
|
-
- Swipely/Docker-API 1.
|
119
|
+
- Swipely/Docker-API 1.18.0
|
116
120
|
Content-Type:
|
117
121
|
- text/plain
|
118
122
|
response:
|
@@ -123,25 +127,26 @@ http_interactions:
|
|
123
127
|
Content-Type:
|
124
128
|
- application/json
|
125
129
|
Date:
|
126
|
-
-
|
130
|
+
- Thu, 12 Feb 2015 00:54:09 GMT
|
127
131
|
Content-Length:
|
128
132
|
- '275'
|
129
133
|
body:
|
130
|
-
encoding:
|
131
|
-
string:
|
132
|
-
|
133
|
-
|
134
|
+
encoding: US-ASCII
|
135
|
+
string: ! '[{"Command":"docker-registry","Created":1423702401,"Id":"7495fa1e6c231934f42eb34525f24a052af2a7a43ae9c85051636428a62a40ba","Image":"registry:latest","Names":["/registry"],"Ports":[{"IP":"0.0.0.0","PrivatePort":5000,"PublicPort":5000,"Type":"tcp"}],"Status":"Up
|
136
|
+
47 seconds"}
|
137
|
+
|
138
|
+
]'
|
134
139
|
http_version:
|
135
|
-
recorded_at:
|
140
|
+
recorded_at: Thu, 12 Feb 2015 00:54:09 GMT
|
136
141
|
- request:
|
137
142
|
method: post
|
138
|
-
uri:
|
143
|
+
uri: <DOCKER_HOST>/v1.16/containers/6b37bf9030f9a52e08777e7d775f9454b567665e766731a6681ed7cd279cb136/restart?t=10
|
139
144
|
body:
|
140
145
|
encoding: UTF-8
|
141
|
-
string:
|
146
|
+
string: ! '{}'
|
142
147
|
headers:
|
143
148
|
User-Agent:
|
144
|
-
- Swipely/Docker-API 1.
|
149
|
+
- Swipely/Docker-API 1.18.0
|
145
150
|
Content-Type:
|
146
151
|
- application/json
|
147
152
|
response:
|
@@ -150,21 +155,21 @@ http_interactions:
|
|
150
155
|
message:
|
151
156
|
headers:
|
152
157
|
Date:
|
153
|
-
-
|
158
|
+
- Thu, 12 Feb 2015 00:54:09 GMT
|
154
159
|
body:
|
155
|
-
encoding:
|
160
|
+
encoding: US-ASCII
|
156
161
|
string: ''
|
157
162
|
http_version:
|
158
|
-
recorded_at:
|
163
|
+
recorded_at: Thu, 12 Feb 2015 00:54:09 GMT
|
159
164
|
- request:
|
160
165
|
method: get
|
161
|
-
uri:
|
166
|
+
uri: <DOCKER_HOST>/v1.16/containers/json
|
162
167
|
body:
|
163
168
|
encoding: US-ASCII
|
164
169
|
string: ''
|
165
170
|
headers:
|
166
171
|
User-Agent:
|
167
|
-
- Swipely/Docker-API 1.
|
172
|
+
- Swipely/Docker-API 1.18.0
|
168
173
|
Content-Type:
|
169
174
|
- text/plain
|
170
175
|
response:
|
@@ -175,26 +180,29 @@ http_interactions:
|
|
175
180
|
Content-Type:
|
176
181
|
- application/json
|
177
182
|
Date:
|
178
|
-
-
|
183
|
+
- Thu, 12 Feb 2015 00:54:09 GMT
|
179
184
|
Content-Length:
|
180
|
-
- '
|
185
|
+
- '490'
|
181
186
|
body:
|
182
|
-
encoding:
|
183
|
-
string:
|
184
|
-
|
185
|
-
|
186
|
-
]
|
187
|
+
encoding: US-ASCII
|
188
|
+
string: ! '[{"Command":"sleep 10","Created":1423702448,"Id":"6b37bf9030f9a52e08777e7d775f9454b567665e766731a6681ed7cd279cb136","Image":"debian:wheezy","Names":["/dreamy_goldstine"],"Ports":[],"Status":"Up
|
189
|
+
Less than a second"}
|
190
|
+
|
191
|
+
,{"Command":"docker-registry","Created":1423702401,"Id":"7495fa1e6c231934f42eb34525f24a052af2a7a43ae9c85051636428a62a40ba","Image":"registry:latest","Names":["/registry"],"Ports":[{"IP":"0.0.0.0","PrivatePort":5000,"PublicPort":5000,"Type":"tcp"}],"Status":"Up
|
192
|
+
47 seconds"}
|
193
|
+
|
194
|
+
]'
|
187
195
|
http_version:
|
188
|
-
recorded_at:
|
196
|
+
recorded_at: Thu, 12 Feb 2015 00:54:09 GMT
|
189
197
|
- request:
|
190
198
|
method: post
|
191
|
-
uri:
|
199
|
+
uri: <DOCKER_HOST>/v1.16/containers/6b37bf9030f9a52e08777e7d775f9454b567665e766731a6681ed7cd279cb136/kill
|
192
200
|
body:
|
193
201
|
encoding: US-ASCII
|
194
202
|
string: ''
|
195
203
|
headers:
|
196
204
|
User-Agent:
|
197
|
-
- Swipely/Docker-API 1.
|
205
|
+
- Swipely/Docker-API 1.18.0
|
198
206
|
Content-Type:
|
199
207
|
- text/plain
|
200
208
|
response:
|
@@ -203,21 +211,21 @@ http_interactions:
|
|
203
211
|
message:
|
204
212
|
headers:
|
205
213
|
Date:
|
206
|
-
-
|
214
|
+
- Thu, 12 Feb 2015 00:54:09 GMT
|
207
215
|
body:
|
208
|
-
encoding:
|
216
|
+
encoding: US-ASCII
|
209
217
|
string: ''
|
210
218
|
http_version:
|
211
|
-
recorded_at:
|
219
|
+
recorded_at: Thu, 12 Feb 2015 00:54:09 GMT
|
212
220
|
- request:
|
213
221
|
method: delete
|
214
|
-
uri:
|
222
|
+
uri: <DOCKER_HOST>/v1.16/containers/6b37bf9030f9a52e08777e7d775f9454b567665e766731a6681ed7cd279cb136
|
215
223
|
body:
|
216
224
|
encoding: US-ASCII
|
217
225
|
string: ''
|
218
226
|
headers:
|
219
227
|
User-Agent:
|
220
|
-
- Swipely/Docker-API 1.
|
228
|
+
- Swipely/Docker-API 1.18.0
|
221
229
|
Content-Type:
|
222
230
|
- text/plain
|
223
231
|
response:
|
@@ -226,10 +234,10 @@ http_interactions:
|
|
226
234
|
message:
|
227
235
|
headers:
|
228
236
|
Date:
|
229
|
-
-
|
237
|
+
- Thu, 12 Feb 2015 00:54:10 GMT
|
230
238
|
body:
|
231
|
-
encoding:
|
239
|
+
encoding: US-ASCII
|
232
240
|
string: ''
|
233
241
|
http_version:
|
234
|
-
recorded_at:
|
235
|
-
recorded_with: VCR 2.9.
|
242
|
+
recorded_at: Thu, 12 Feb 2015 00:54:10 GMT
|
243
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["false"],"Image":"debian:wheezy"}'
|
8
|
+
string: ! '{"Cmd":["false"],"Image":"debian:wheezy"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
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
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:54:21 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"3600666983c70ed47254bfcc4941c22c682c3c6c1d396deff7774bf2885684cd","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:21 GMT
|
31
32
|
- request:
|
32
33
|
method: post
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/3600666983c70ed47254bfcc4941c22c682c3c6c1d396deff7774bf2885684cd/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.
|
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
|
-
-
|
49
|
+
- Thu, 12 Feb 2015 00:54:21 GMT
|
49
50
|
body:
|
50
|
-
encoding:
|
51
|
+
encoding: US-ASCII
|
51
52
|
string: ''
|
52
53
|
http_version:
|
53
|
-
recorded_at:
|
54
|
+
recorded_at: Thu, 12 Feb 2015 00:54:21 GMT
|
54
55
|
- request:
|
55
56
|
method: post
|
56
|
-
uri:
|
57
|
+
uri: <DOCKER_HOST>/v1.16/containers/3600666983c70ed47254bfcc4941c22c682c3c6c1d396deff7774bf2885684cd/wait
|
57
58
|
body:
|
58
59
|
encoding: US-ASCII
|
59
60
|
string: ''
|
60
61
|
headers:
|
61
62
|
User-Agent:
|
62
|
-
- Swipely/Docker-API 1.
|
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
|
-
-
|
74
|
+
- Thu, 12 Feb 2015 00:54:21 GMT
|
74
75
|
Content-Length:
|
75
76
|
- '17'
|
76
77
|
body:
|
77
|
-
encoding:
|
78
|
-
string:
|
79
|
-
|
78
|
+
encoding: US-ASCII
|
79
|
+
string: ! '{"StatusCode":1}
|
80
|
+
|
81
|
+
'
|
80
82
|
http_version:
|
81
|
-
recorded_at:
|
83
|
+
recorded_at: Thu, 12 Feb 2015 00:54:21 GMT
|
82
84
|
- request:
|
83
85
|
method: delete
|
84
|
-
uri:
|
86
|
+
uri: <DOCKER_HOST>/v1.16/containers/3600666983c70ed47254bfcc4941c22c682c3c6c1d396deff7774bf2885684cd
|
85
87
|
body:
|
86
88
|
encoding: US-ASCII
|
87
89
|
string: ''
|
88
90
|
headers:
|
89
91
|
User-Agent:
|
90
|
-
- Swipely/Docker-API 1.
|
92
|
+
- Swipely/Docker-API 1.18.0
|
91
93
|
Content-Type:
|
92
94
|
- text/plain
|
93
95
|
response:
|
@@ -96,10 +98,10 @@ http_interactions:
|
|
96
98
|
message:
|
97
99
|
headers:
|
98
100
|
Date:
|
99
|
-
-
|
101
|
+
- Thu, 12 Feb 2015 00:54:22 GMT
|
100
102
|
body:
|
101
|
-
encoding:
|
103
|
+
encoding: US-ASCII
|
102
104
|
string: ''
|
103
105
|
http_version:
|
104
|
-
recorded_at:
|
105
|
-
recorded_with: VCR 2.9.
|
106
|
+
recorded_at: Thu, 12 Feb 2015 00:54:22 GMT
|
107
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["pwd"],"Image":"debian:wheezy"}'
|
8
|
+
string: ! '{"Cmd":["pwd"],"Image":"debian:wheezy"}'
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
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
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:54:22 GMT
|
23
23
|
Content-Length:
|
24
24
|
- '90'
|
25
25
|
body:
|
26
|
-
encoding:
|
27
|
-
string:
|
28
|
-
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! '{"Id":"afaeba0916f26274b8085a363ec2f4d9b812d8b6273b629b4c1f4082fa132caf","Warnings":null}
|
28
|
+
|
29
|
+
'
|
29
30
|
http_version:
|
30
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:22 GMT
|
31
32
|
- request:
|
32
33
|
method: post
|
33
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/containers/afaeba0916f26274b8085a363ec2f4d9b812d8b6273b629b4c1f4082fa132caf/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.
|
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
|
-
-
|
49
|
+
- Thu, 12 Feb 2015 00:54:23 GMT
|
49
50
|
body:
|
50
|
-
encoding:
|
51
|
+
encoding: US-ASCII
|
51
52
|
string: ''
|
52
53
|
http_version:
|
53
|
-
recorded_at:
|
54
|
+
recorded_at: Thu, 12 Feb 2015 00:54:23 GMT
|
54
55
|
- request:
|
55
56
|
method: post
|
56
|
-
uri:
|
57
|
+
uri: <DOCKER_HOST>/v1.16/containers/afaeba0916f26274b8085a363ec2f4d9b812d8b6273b629b4c1f4082fa132caf/wait
|
57
58
|
body:
|
58
59
|
encoding: US-ASCII
|
59
60
|
string: ''
|
60
61
|
headers:
|
61
62
|
User-Agent:
|
62
|
-
- Swipely/Docker-API 1.
|
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
|
-
-
|
74
|
+
- Thu, 12 Feb 2015 00:54:23 GMT
|
74
75
|
Content-Length:
|
75
76
|
- '17'
|
76
77
|
body:
|
77
|
-
encoding:
|
78
|
-
string:
|
79
|
-
|
78
|
+
encoding: US-ASCII
|
79
|
+
string: ! '{"StatusCode":0}
|
80
|
+
|
81
|
+
'
|
80
82
|
http_version:
|
81
|
-
recorded_at:
|
83
|
+
recorded_at: Thu, 12 Feb 2015 00:54:23 GMT
|
82
84
|
- request:
|
83
85
|
method: post
|
84
|
-
uri:
|
86
|
+
uri: <DOCKER_HOST>/v1.16/commit?container=afaeba09
|
85
87
|
body:
|
86
88
|
encoding: UTF-8
|
87
89
|
string: 'null'
|
88
90
|
headers:
|
89
91
|
User-Agent:
|
90
|
-
- Swipely/Docker-API 1.
|
92
|
+
- Swipely/Docker-API 1.18.0
|
91
93
|
Content-Type:
|
92
94
|
- application/json
|
93
95
|
response:
|
@@ -98,24 +100,25 @@ http_interactions:
|
|
98
100
|
Content-Type:
|
99
101
|
- application/json
|
100
102
|
Date:
|
101
|
-
-
|
103
|
+
- Thu, 12 Feb 2015 00:54:24 GMT
|
102
104
|
Content-Length:
|
103
105
|
- '74'
|
104
106
|
body:
|
105
|
-
encoding:
|
106
|
-
string:
|
107
|
-
|
107
|
+
encoding: US-ASCII
|
108
|
+
string: ! '{"Id":"63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c"}
|
109
|
+
|
110
|
+
'
|
108
111
|
http_version:
|
109
|
-
recorded_at:
|
112
|
+
recorded_at: Thu, 12 Feb 2015 00:54:24 GMT
|
110
113
|
- request:
|
111
114
|
method: post
|
112
|
-
uri:
|
115
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
113
116
|
body:
|
114
117
|
encoding: UTF-8
|
115
|
-
string: '{"Image":"
|
118
|
+
string: ! '{"Image":"63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c","Cmd":["ls"]}'
|
116
119
|
headers:
|
117
120
|
User-Agent:
|
118
|
-
- Swipely/Docker-API 1.
|
121
|
+
- Swipely/Docker-API 1.18.0
|
119
122
|
Content-Type:
|
120
123
|
- application/json
|
121
124
|
response:
|
@@ -126,24 +129,25 @@ http_interactions:
|
|
126
129
|
Content-Type:
|
127
130
|
- application/json
|
128
131
|
Date:
|
129
|
-
-
|
132
|
+
- Thu, 12 Feb 2015 00:54:24 GMT
|
130
133
|
Content-Length:
|
131
134
|
- '90'
|
132
135
|
body:
|
133
|
-
encoding:
|
134
|
-
string:
|
135
|
-
|
136
|
+
encoding: US-ASCII
|
137
|
+
string: ! '{"Id":"e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535","Warnings":null}
|
138
|
+
|
139
|
+
'
|
136
140
|
http_version:
|
137
|
-
recorded_at:
|
141
|
+
recorded_at: Thu, 12 Feb 2015 00:54:24 GMT
|
138
142
|
- request:
|
139
143
|
method: post
|
140
|
-
uri:
|
144
|
+
uri: <DOCKER_HOST>/v1.16/containers/e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535/start
|
141
145
|
body:
|
142
146
|
encoding: UTF-8
|
143
|
-
string:
|
147
|
+
string: ! '{}'
|
144
148
|
headers:
|
145
149
|
User-Agent:
|
146
|
-
- Swipely/Docker-API 1.
|
150
|
+
- Swipely/Docker-API 1.18.0
|
147
151
|
Content-Type:
|
148
152
|
- application/json
|
149
153
|
response:
|
@@ -152,21 +156,21 @@ http_interactions:
|
|
152
156
|
message:
|
153
157
|
headers:
|
154
158
|
Date:
|
155
|
-
-
|
159
|
+
- Thu, 12 Feb 2015 00:54:24 GMT
|
156
160
|
body:
|
157
|
-
encoding:
|
161
|
+
encoding: US-ASCII
|
158
162
|
string: ''
|
159
163
|
http_version:
|
160
|
-
recorded_at:
|
164
|
+
recorded_at: Thu, 12 Feb 2015 00:54:24 GMT
|
161
165
|
- request:
|
162
166
|
method: post
|
163
|
-
uri:
|
167
|
+
uri: <DOCKER_HOST>/v1.16/containers/e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535/wait
|
164
168
|
body:
|
165
169
|
encoding: US-ASCII
|
166
170
|
string: ''
|
167
171
|
headers:
|
168
172
|
User-Agent:
|
169
|
-
- Swipely/Docker-API 1.
|
173
|
+
- Swipely/Docker-API 1.18.0
|
170
174
|
Content-Type:
|
171
175
|
- text/plain
|
172
176
|
response:
|
@@ -177,24 +181,25 @@ http_interactions:
|
|
177
181
|
Content-Type:
|
178
182
|
- application/json
|
179
183
|
Date:
|
180
|
-
-
|
184
|
+
- Thu, 12 Feb 2015 00:54:24 GMT
|
181
185
|
Content-Length:
|
182
186
|
- '17'
|
183
187
|
body:
|
184
|
-
encoding:
|
185
|
-
string:
|
186
|
-
|
188
|
+
encoding: US-ASCII
|
189
|
+
string: ! '{"StatusCode":0}
|
190
|
+
|
191
|
+
'
|
187
192
|
http_version:
|
188
|
-
recorded_at:
|
193
|
+
recorded_at: Thu, 12 Feb 2015 00:54:24 GMT
|
189
194
|
- request:
|
190
195
|
method: delete
|
191
|
-
uri:
|
196
|
+
uri: <DOCKER_HOST>/v1.16/containers/afaeba0916f26274b8085a363ec2f4d9b812d8b6273b629b4c1f4082fa132caf
|
192
197
|
body:
|
193
198
|
encoding: US-ASCII
|
194
199
|
string: ''
|
195
200
|
headers:
|
196
201
|
User-Agent:
|
197
|
-
- Swipely/Docker-API 1.
|
202
|
+
- Swipely/Docker-API 1.18.0
|
198
203
|
Content-Type:
|
199
204
|
- text/plain
|
200
205
|
response:
|
@@ -203,21 +208,21 @@ http_interactions:
|
|
203
208
|
message:
|
204
209
|
headers:
|
205
210
|
Date:
|
206
|
-
-
|
211
|
+
- Thu, 12 Feb 2015 00:54:25 GMT
|
207
212
|
body:
|
208
|
-
encoding:
|
213
|
+
encoding: US-ASCII
|
209
214
|
string: ''
|
210
215
|
http_version:
|
211
|
-
recorded_at:
|
216
|
+
recorded_at: Thu, 12 Feb 2015 00:54:25 GMT
|
212
217
|
- request:
|
213
218
|
method: get
|
214
|
-
uri:
|
219
|
+
uri: <DOCKER_HOST>/v1.16/containers/e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535/json
|
215
220
|
body:
|
216
221
|
encoding: US-ASCII
|
217
222
|
string: ''
|
218
223
|
headers:
|
219
224
|
User-Agent:
|
220
|
-
- Swipely/Docker-API 1.
|
225
|
+
- Swipely/Docker-API 1.18.0
|
221
226
|
Content-Type:
|
222
227
|
- text/plain
|
223
228
|
response:
|
@@ -228,24 +233,25 @@ http_interactions:
|
|
228
233
|
Content-Type:
|
229
234
|
- application/json
|
230
235
|
Date:
|
231
|
-
-
|
236
|
+
- Thu, 12 Feb 2015 00:54:25 GMT
|
232
237
|
Content-Length:
|
233
|
-
- '
|
238
|
+
- '1931'
|
234
239
|
body:
|
235
|
-
encoding:
|
236
|
-
string:
|
237
|
-
|
240
|
+
encoding: US-ASCII
|
241
|
+
string: ! '{"AppArmorProfile":"","Args":[],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["ls"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"e8f95d27dea0","Image":"63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-12T00:54:24.394220115Z","Driver":"devicemapper","ExecDriver":"native-0.2","HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"/var/lib/docker/containers/e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535/hostname","HostsPath":"/var/lib/docker/containers/e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535/hosts","Id":"e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535","Image":"63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c","MountLabel":"","Name":"/distracted_sammet","NetworkSettings":{"Bridge":"","Gateway":"","IPAddress":"","IPPrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"ls","ProcessLabel":"","ResolvConfPath":"/var/lib/docker/containers/e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535/resolv.conf","State":{"Error":"","ExitCode":0,"FinishedAt":"2015-02-12T00:54:24.790254949Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"2015-02-12T00:54:24.748261423Z"},"Volumes":{},"VolumesRW":{}}
|
242
|
+
|
243
|
+
'
|
238
244
|
http_version:
|
239
|
-
recorded_at:
|
245
|
+
recorded_at: Thu, 12 Feb 2015 00:54:25 GMT
|
240
246
|
- request:
|
241
247
|
method: delete
|
242
|
-
uri:
|
248
|
+
uri: <DOCKER_HOST>/v1.16/containers/e8f95d27dea058750b38f1eee9122426d2c435611ef73ebd2f5c769184d1e535
|
243
249
|
body:
|
244
250
|
encoding: US-ASCII
|
245
251
|
string: ''
|
246
252
|
headers:
|
247
253
|
User-Agent:
|
248
|
-
- Swipely/Docker-API 1.
|
254
|
+
- Swipely/Docker-API 1.18.0
|
249
255
|
Content-Type:
|
250
256
|
- text/plain
|
251
257
|
response:
|
@@ -254,21 +260,21 @@ http_interactions:
|
|
254
260
|
message:
|
255
261
|
headers:
|
256
262
|
Date:
|
257
|
-
-
|
263
|
+
- Thu, 12 Feb 2015 00:54:26 GMT
|
258
264
|
body:
|
259
|
-
encoding:
|
265
|
+
encoding: US-ASCII
|
260
266
|
string: ''
|
261
267
|
http_version:
|
262
|
-
recorded_at:
|
268
|
+
recorded_at: Thu, 12 Feb 2015 00:54:26 GMT
|
263
269
|
- request:
|
264
270
|
method: get
|
265
|
-
uri:
|
271
|
+
uri: <DOCKER_HOST>/v1.16/images/63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c/json
|
266
272
|
body:
|
267
273
|
encoding: US-ASCII
|
268
274
|
string: ''
|
269
275
|
headers:
|
270
276
|
User-Agent:
|
271
|
-
- Swipely/Docker-API 1.
|
277
|
+
- Swipely/Docker-API 1.18.0
|
272
278
|
Content-Type:
|
273
279
|
- text/plain
|
274
280
|
response:
|
@@ -279,24 +285,25 @@ http_interactions:
|
|
279
285
|
Content-Type:
|
280
286
|
- application/json
|
281
287
|
Date:
|
282
|
-
-
|
288
|
+
- Thu, 12 Feb 2015 00:54:26 GMT
|
283
289
|
Content-Length:
|
284
|
-
- '
|
290
|
+
- '1428'
|
285
291
|
body:
|
286
|
-
encoding:
|
287
|
-
string:
|
288
|
-
|
292
|
+
encoding: US-ASCII
|
293
|
+
string: ! '{"Architecture":"amd64","Author":"","Checksum":"tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["pwd"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"","Image":"","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"afaeba0916f26274b8085a363ec2f4d9b812d8b6273b629b4c1f4082fa132caf","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["pwd"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"afaeba0916f2","Image":"debian:wheezy","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-12T00:54:23.69716525Z","DockerVersion":"1.4.1","Id":"63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c","Os":"linux","Parent":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","Size":0,"VirtualSize":85120773}
|
294
|
+
|
295
|
+
'
|
289
296
|
http_version:
|
290
|
-
recorded_at:
|
297
|
+
recorded_at: Thu, 12 Feb 2015 00:54:26 GMT
|
291
298
|
- request:
|
292
299
|
method: get
|
293
|
-
uri:
|
300
|
+
uri: <DOCKER_HOST>/v1.16/images/63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c/history
|
294
301
|
body:
|
295
302
|
encoding: US-ASCII
|
296
303
|
string: ''
|
297
304
|
headers:
|
298
305
|
User-Agent:
|
299
|
-
- Swipely/Docker-API 1.
|
306
|
+
- Swipely/Docker-API 1.18.0
|
300
307
|
Content-Type:
|
301
308
|
- text/plain
|
302
309
|
response:
|
@@ -307,28 +314,32 @@ http_interactions:
|
|
307
314
|
Content-Type:
|
308
315
|
- application/json
|
309
316
|
Date:
|
310
|
-
-
|
317
|
+
- Thu, 12 Feb 2015 00:54:26 GMT
|
311
318
|
Content-Length:
|
312
319
|
- '695'
|
313
320
|
body:
|
314
|
-
encoding:
|
315
|
-
string:
|
316
|
-
|
317
|
-
,{"Created":
|
318
|
-
|
321
|
+
encoding: US-ASCII
|
322
|
+
string: ! '[{"Created":1423702463,"CreatedBy":"pwd","Id":"63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c","Size":0,"Tags":null}
|
323
|
+
|
324
|
+
,{"Created":1422379591,"CreatedBy":"/bin/sh -c #(nop) CMD [/bin/bash]","Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","Size":0,"Tags":["debian:wheezy"]}
|
325
|
+
|
326
|
+
,{"Created":1422379584,"CreatedBy":"/bin/sh -c #(nop) ADD file:3f1a40df75bc5673ce402476db7ad6dbb43e45bd1951ed165b9b01ca78011aa0
|
327
|
+
in /","Id":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","Size":85120773,"Tags":null}
|
328
|
+
|
319
329
|
,{"Created":1371157430,"CreatedBy":"","Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Size":0,"Tags":["scratch:latest"]}
|
320
|
-
|
330
|
+
|
331
|
+
]'
|
321
332
|
http_version:
|
322
|
-
recorded_at:
|
333
|
+
recorded_at: Thu, 12 Feb 2015 00:54:26 GMT
|
323
334
|
- request:
|
324
335
|
method: get
|
325
|
-
uri:
|
336
|
+
uri: <DOCKER_HOST>/v1.16/images/63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c/json
|
326
337
|
body:
|
327
338
|
encoding: US-ASCII
|
328
339
|
string: ''
|
329
340
|
headers:
|
330
341
|
User-Agent:
|
331
|
-
- Swipely/Docker-API 1.
|
342
|
+
- Swipely/Docker-API 1.18.0
|
332
343
|
Content-Type:
|
333
344
|
- text/plain
|
334
345
|
response:
|
@@ -339,24 +350,25 @@ http_interactions:
|
|
339
350
|
Content-Type:
|
340
351
|
- application/json
|
341
352
|
Date:
|
342
|
-
-
|
353
|
+
- Thu, 12 Feb 2015 00:54:26 GMT
|
343
354
|
Content-Length:
|
344
|
-
- '
|
355
|
+
- '1428'
|
345
356
|
body:
|
346
|
-
encoding:
|
347
|
-
string:
|
348
|
-
|
357
|
+
encoding: US-ASCII
|
358
|
+
string: ! '{"Architecture":"amd64","Author":"","Checksum":"tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["pwd"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"","Image":"","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"afaeba0916f26274b8085a363ec2f4d9b812d8b6273b629b4c1f4082fa132caf","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["pwd"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"afaeba0916f2","Image":"debian:wheezy","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-12T00:54:23.69716525Z","DockerVersion":"1.4.1","Id":"63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c","Os":"linux","Parent":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","Size":0,"VirtualSize":85120773}
|
359
|
+
|
360
|
+
'
|
349
361
|
http_version:
|
350
|
-
recorded_at:
|
362
|
+
recorded_at: Thu, 12 Feb 2015 00:54:26 GMT
|
351
363
|
- request:
|
352
364
|
method: delete
|
353
|
-
uri:
|
365
|
+
uri: <DOCKER_HOST>/v1.16/images/63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c?noprune=true
|
354
366
|
body:
|
355
367
|
encoding: US-ASCII
|
356
368
|
string: ''
|
357
369
|
headers:
|
358
370
|
User-Agent:
|
359
|
-
- Swipely/Docker-API 1.
|
371
|
+
- Swipely/Docker-API 1.18.0
|
360
372
|
Content-Type:
|
361
373
|
- text/plain
|
362
374
|
response:
|
@@ -367,14 +379,14 @@ http_interactions:
|
|
367
379
|
Content-Type:
|
368
380
|
- application/json
|
369
381
|
Date:
|
370
|
-
-
|
382
|
+
- Thu, 12 Feb 2015 00:54:27 GMT
|
371
383
|
Content-Length:
|
372
384
|
- '81'
|
373
385
|
body:
|
374
|
-
encoding:
|
375
|
-
string:
|
376
|
-
|
377
|
-
]
|
386
|
+
encoding: US-ASCII
|
387
|
+
string: ! '[{"Deleted":"63bdde37c5d168ca55326bb5fbf677b2fa4a9fd6a11b78033d8bda890756b50c"}
|
388
|
+
|
389
|
+
]'
|
378
390
|
http_version:
|
379
|
-
recorded_at:
|
380
|
-
recorded_with: VCR 2.9.
|
391
|
+
recorded_at: Thu, 12 Feb 2015 00:54:27 GMT
|
392
|
+
recorded_with: VCR 2.9.2
|