docker-api 1.5.4 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +19 -10
- data/docker-api.gemspec +1 -1
- data/lib/docker.rb +14 -7
- data/lib/docker/connection.rb +6 -1
- data/lib/docker/image.rb +6 -5
- data/lib/docker/version.rb +1 -1
- data/spec/docker/connection_spec.rb +14 -6
- data/spec/docker/container_spec.rb +27 -8
- data/spec/docker/image_spec.rb +23 -5
- data/spec/docker_spec.rb +36 -28
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +16 -13
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +16 -13
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +16 -13
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +120 -211
- data/spec/vcr/Docker_Container/_attach/yields_each_chunk.yml +46 -38
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +65 -53
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +50 -41
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +62 -48
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +194 -119
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +127 -52
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +18 -15
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +62 -126
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +49 -66
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +33 -27
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +91 -129
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +116 -95
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +50 -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 +135 -109
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +28 -57
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +107 -143
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +78 -39
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +50 -41
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +35 -29
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +50 -41
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +34 -26
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/builds_an_image.yml +17 -17
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +20 -15
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +19 -14
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +34 -26
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +134 -95
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +29 -29
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +5 -5
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +30 -30
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +34 -26
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +49 -38
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +64 -51
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +64 -51
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +20 -14
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +33 -25
- metadata +29 -54
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist_and_the_body_is_a_Hash/when_the_HTTP_request_returns_a_200/sets_the_id.yml +0 -30
@@ -2,83 +2,92 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: http://
|
5
|
+
uri: http://unix/v1.4/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["lol","not","a","real","command"],"Image":"base"}'
|
8
|
+
string: ! '{"Cmd":["lol","not","a","real","command"],"Image":"base"}'
|
9
9
|
headers:
|
10
|
-
Content-Type:
|
11
|
-
- text/plain
|
12
10
|
User-Agent:
|
13
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.5.4
|
12
|
+
Content-Type:
|
13
|
+
- application/json
|
14
14
|
response:
|
15
15
|
status:
|
16
16
|
code: 201
|
17
17
|
message: ''
|
18
18
|
headers:
|
19
|
-
|
20
|
-
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
19
|
+
!binary "Q29udGVudC1UeXBl":
|
20
|
+
- !binary |-
|
21
|
+
YXBwbGljYXRpb24vanNvbg==
|
22
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
23
|
+
- !binary |-
|
24
|
+
NjU=
|
25
|
+
!binary "RGF0ZQ==":
|
26
|
+
- !binary |-
|
27
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOCBHTVQ=
|
25
28
|
body:
|
26
|
-
encoding:
|
27
|
-
string: '{"Id":"
|
29
|
+
encoding: US-ASCII
|
30
|
+
string: ! '{"Id":"bdf4626c3eba","Warnings":["IPv4 forwarding is disabled."]}'
|
28
31
|
http_version:
|
29
|
-
recorded_at:
|
32
|
+
recorded_at: Mon, 07 Oct 2013 00:47:38 GMT
|
30
33
|
- request:
|
31
34
|
method: post
|
32
|
-
uri: http://
|
35
|
+
uri: http://unix/v1.4/containers/bdf4626c3eba/start
|
33
36
|
body:
|
34
|
-
encoding:
|
35
|
-
string: ''
|
37
|
+
encoding: UTF-8
|
38
|
+
string: ! '{}'
|
36
39
|
headers:
|
37
|
-
Content-Type:
|
38
|
-
- text/plain
|
39
40
|
User-Agent:
|
40
|
-
- Swipely/Docker-API 1.
|
41
|
+
- Swipely/Docker-API 1.5.4
|
42
|
+
Content-Type:
|
43
|
+
- application/json
|
41
44
|
response:
|
42
45
|
status:
|
43
46
|
code: 204
|
44
47
|
message: ''
|
45
48
|
headers:
|
46
|
-
|
47
|
-
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
49
|
+
!binary "Q29udGVudC1UeXBl":
|
50
|
+
- !binary |-
|
51
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
52
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
53
|
+
- !binary |-
|
54
|
+
MA==
|
55
|
+
!binary "RGF0ZQ==":
|
56
|
+
- !binary |-
|
57
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOCBHTVQ=
|
52
58
|
body:
|
53
|
-
encoding:
|
59
|
+
encoding: US-ASCII
|
54
60
|
string: ''
|
55
61
|
http_version:
|
56
|
-
recorded_at:
|
62
|
+
recorded_at: Mon, 07 Oct 2013 00:47:38 GMT
|
57
63
|
- request:
|
58
64
|
method: post
|
59
|
-
uri: http://
|
65
|
+
uri: http://unix/v1.4/containers/bdf4626c3eba/wait
|
60
66
|
body:
|
61
67
|
encoding: US-ASCII
|
62
68
|
string: ''
|
63
69
|
headers:
|
70
|
+
User-Agent:
|
71
|
+
- Swipely/Docker-API 1.5.4
|
64
72
|
Content-Type:
|
65
73
|
- text/plain
|
66
|
-
User-Agent:
|
67
|
-
- Swipely/Docker-API 1.3.1
|
68
74
|
response:
|
69
75
|
status:
|
70
76
|
code: 200
|
71
77
|
message: ''
|
72
78
|
headers:
|
73
|
-
|
74
|
-
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
+
!binary "Q29udGVudC1UeXBl":
|
80
|
+
- !binary |-
|
81
|
+
YXBwbGljYXRpb24vanNvbg==
|
82
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
83
|
+
- !binary |-
|
84
|
+
MTg=
|
85
|
+
!binary "RGF0ZQ==":
|
86
|
+
- !binary |-
|
87
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
|
79
88
|
body:
|
80
|
-
encoding:
|
81
|
-
string: '{"StatusCode":127}'
|
89
|
+
encoding: US-ASCII
|
90
|
+
string: ! '{"StatusCode":127}'
|
82
91
|
http_version:
|
83
|
-
recorded_at:
|
84
|
-
recorded_with: VCR 2.
|
92
|
+
recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
|
93
|
+
recorded_with: VCR 2.6.0
|
@@ -2,219 +2,245 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: http://
|
5
|
+
uri: http://unix/v1.4/containers/create
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"Cmd":["pwd"],"Image":"base"}'
|
8
|
+
string: ! '{"Cmd":["pwd"],"Image":"base"}'
|
9
9
|
headers:
|
10
|
-
Content-Type:
|
11
|
-
- text/plain
|
12
10
|
User-Agent:
|
13
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.5.4
|
12
|
+
Content-Type:
|
13
|
+
- application/json
|
14
14
|
response:
|
15
15
|
status:
|
16
16
|
code: 201
|
17
17
|
message: ''
|
18
18
|
headers:
|
19
|
-
|
20
|
-
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
19
|
+
!binary "Q29udGVudC1UeXBl":
|
20
|
+
- !binary |-
|
21
|
+
YXBwbGljYXRpb24vanNvbg==
|
22
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
23
|
+
- !binary |-
|
24
|
+
NjU=
|
25
|
+
!binary "RGF0ZQ==":
|
26
|
+
- !binary |-
|
27
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
|
25
28
|
body:
|
26
|
-
encoding:
|
27
|
-
string: '{"Id":"
|
29
|
+
encoding: US-ASCII
|
30
|
+
string: ! '{"Id":"0f51f2f337bc","Warnings":["IPv4 forwarding is disabled."]}'
|
28
31
|
http_version:
|
29
|
-
recorded_at:
|
32
|
+
recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
|
30
33
|
- request:
|
31
34
|
method: post
|
32
|
-
uri: http://
|
35
|
+
uri: http://unix/v1.4/containers/0f51f2f337bc/start
|
33
36
|
body:
|
34
|
-
encoding:
|
35
|
-
string: ''
|
37
|
+
encoding: UTF-8
|
38
|
+
string: ! '{}'
|
36
39
|
headers:
|
37
|
-
Content-Type:
|
38
|
-
- text/plain
|
39
40
|
User-Agent:
|
40
|
-
- Swipely/Docker-API 1.
|
41
|
+
- Swipely/Docker-API 1.5.4
|
42
|
+
Content-Type:
|
43
|
+
- application/json
|
41
44
|
response:
|
42
45
|
status:
|
43
46
|
code: 204
|
44
47
|
message: ''
|
45
48
|
headers:
|
46
|
-
|
47
|
-
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
49
|
+
!binary "Q29udGVudC1UeXBl":
|
50
|
+
- !binary |-
|
51
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
52
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
53
|
+
- !binary |-
|
54
|
+
MA==
|
55
|
+
!binary "RGF0ZQ==":
|
56
|
+
- !binary |-
|
57
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
|
52
58
|
body:
|
53
|
-
encoding:
|
59
|
+
encoding: US-ASCII
|
54
60
|
string: ''
|
55
61
|
http_version:
|
56
|
-
recorded_at:
|
62
|
+
recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
|
57
63
|
- request:
|
58
64
|
method: post
|
59
|
-
uri: http://
|
65
|
+
uri: http://unix/v1.4/containers/0f51f2f337bc/wait
|
60
66
|
body:
|
61
67
|
encoding: US-ASCII
|
62
68
|
string: ''
|
63
69
|
headers:
|
70
|
+
User-Agent:
|
71
|
+
- Swipely/Docker-API 1.5.4
|
64
72
|
Content-Type:
|
65
73
|
- text/plain
|
66
|
-
User-Agent:
|
67
|
-
- Swipely/Docker-API 1.3.1
|
68
74
|
response:
|
69
75
|
status:
|
70
76
|
code: 200
|
71
77
|
message: ''
|
72
78
|
headers:
|
73
|
-
|
74
|
-
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
+
!binary "Q29udGVudC1UeXBl":
|
80
|
+
- !binary |-
|
81
|
+
YXBwbGljYXRpb24vanNvbg==
|
82
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
83
|
+
- !binary |-
|
84
|
+
MTY=
|
85
|
+
!binary "RGF0ZQ==":
|
86
|
+
- !binary |-
|
87
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
|
79
88
|
body:
|
80
|
-
encoding:
|
81
|
-
string: '{"StatusCode":0}'
|
89
|
+
encoding: US-ASCII
|
90
|
+
string: ! '{"StatusCode":0}'
|
82
91
|
http_version:
|
83
|
-
recorded_at:
|
92
|
+
recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
|
84
93
|
- request:
|
85
94
|
method: post
|
86
|
-
uri: http://
|
95
|
+
uri: http://unix/v1.4/commit?container=0f51f2f3
|
87
96
|
body:
|
88
97
|
encoding: US-ASCII
|
89
98
|
string: ''
|
90
99
|
headers:
|
100
|
+
User-Agent:
|
101
|
+
- Swipely/Docker-API 1.5.4
|
91
102
|
Content-Type:
|
92
103
|
- text/plain
|
93
|
-
User-Agent:
|
94
|
-
- Swipely/Docker-API 1.3.1
|
95
104
|
response:
|
96
105
|
status:
|
97
106
|
code: 201
|
98
107
|
message: ''
|
99
108
|
headers:
|
100
|
-
|
101
|
-
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
109
|
+
!binary "Q29udGVudC1UeXBl":
|
110
|
+
- !binary |-
|
111
|
+
YXBwbGljYXRpb24vanNvbg==
|
112
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
113
|
+
- !binary |-
|
114
|
+
MjE=
|
115
|
+
!binary "RGF0ZQ==":
|
116
|
+
- !binary |-
|
117
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
|
106
118
|
body:
|
107
|
-
encoding:
|
108
|
-
string: '{"Id":"
|
119
|
+
encoding: US-ASCII
|
120
|
+
string: ! '{"Id":"4f950dcbd5a5"}'
|
109
121
|
http_version:
|
110
|
-
recorded_at:
|
122
|
+
recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
|
111
123
|
- request:
|
112
124
|
method: post
|
113
|
-
uri: http://
|
125
|
+
uri: http://unix/v1.4/containers/create
|
114
126
|
body:
|
115
127
|
encoding: UTF-8
|
116
|
-
string: '{"Image":"
|
128
|
+
string: ! '{"Image":"4f950dcbd5a5","Cmd":["ls"]}'
|
117
129
|
headers:
|
118
|
-
Content-Type:
|
119
|
-
- text/plain
|
120
130
|
User-Agent:
|
121
|
-
- Swipely/Docker-API 1.
|
131
|
+
- Swipely/Docker-API 1.5.4
|
132
|
+
Content-Type:
|
133
|
+
- application/json
|
122
134
|
response:
|
123
135
|
status:
|
124
136
|
code: 201
|
125
137
|
message: ''
|
126
138
|
headers:
|
127
|
-
|
128
|
-
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
139
|
+
!binary "Q29udGVudC1UeXBl":
|
140
|
+
- !binary |-
|
141
|
+
YXBwbGljYXRpb24vanNvbg==
|
142
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
143
|
+
- !binary |-
|
144
|
+
NjU=
|
145
|
+
!binary "RGF0ZQ==":
|
146
|
+
- !binary |-
|
147
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
|
133
148
|
body:
|
134
|
-
encoding:
|
135
|
-
string: '{"Id":"
|
149
|
+
encoding: US-ASCII
|
150
|
+
string: ! '{"Id":"9e72eb4c5f37","Warnings":["IPv4 forwarding is disabled."]}'
|
136
151
|
http_version:
|
137
|
-
recorded_at:
|
152
|
+
recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
|
138
153
|
- request:
|
139
154
|
method: post
|
140
|
-
uri: http://
|
155
|
+
uri: http://unix/v1.4/containers/9e72eb4c5f37/start
|
141
156
|
body:
|
142
|
-
encoding:
|
143
|
-
string: ''
|
157
|
+
encoding: UTF-8
|
158
|
+
string: ! '{}'
|
144
159
|
headers:
|
145
|
-
Content-Type:
|
146
|
-
- text/plain
|
147
160
|
User-Agent:
|
148
|
-
- Swipely/Docker-API 1.
|
161
|
+
- Swipely/Docker-API 1.5.4
|
162
|
+
Content-Type:
|
163
|
+
- application/json
|
149
164
|
response:
|
150
165
|
status:
|
151
166
|
code: 204
|
152
167
|
message: ''
|
153
168
|
headers:
|
154
|
-
|
155
|
-
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
169
|
+
!binary "Q29udGVudC1UeXBl":
|
170
|
+
- !binary |-
|
171
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
172
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
173
|
+
- !binary |-
|
174
|
+
MA==
|
175
|
+
!binary "RGF0ZQ==":
|
176
|
+
- !binary |-
|
177
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
|
160
178
|
body:
|
161
|
-
encoding:
|
179
|
+
encoding: US-ASCII
|
162
180
|
string: ''
|
163
181
|
http_version:
|
164
|
-
recorded_at:
|
182
|
+
recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
|
165
183
|
- request:
|
166
184
|
method: post
|
167
|
-
uri: http://
|
185
|
+
uri: http://unix/v1.4/containers/9e72eb4c5f37/start
|
168
186
|
body:
|
169
|
-
encoding:
|
170
|
-
string: ''
|
187
|
+
encoding: UTF-8
|
188
|
+
string: ! '{}'
|
171
189
|
headers:
|
172
|
-
Content-Type:
|
173
|
-
- text/plain
|
174
190
|
User-Agent:
|
175
|
-
- Swipely/Docker-API 1.
|
191
|
+
- Swipely/Docker-API 1.5.4
|
192
|
+
Content-Type:
|
193
|
+
- application/json
|
176
194
|
response:
|
177
195
|
status:
|
178
196
|
code: 500
|
179
197
|
message: ''
|
180
198
|
headers:
|
181
|
-
|
182
|
-
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
199
|
+
!binary "Q29udGVudC1UeXBl":
|
200
|
+
- !binary |-
|
201
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
202
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
203
|
+
- !binary |-
|
204
|
+
MTM4
|
205
|
+
!binary "RGF0ZQ==":
|
206
|
+
- !binary |-
|
207
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
|
187
208
|
body:
|
188
|
-
encoding:
|
189
|
-
string:
|
190
|
-
|
209
|
+
encoding: US-ASCII
|
210
|
+
string: ! 'Error starting container 9e72eb4c5f37: The container 9e72eb4c5f37e773dae080f57d3f155ce2037a0db3b5ad82710e5f8163dfa793
|
211
|
+
is already running.
|
212
|
+
|
213
|
+
'
|
191
214
|
http_version:
|
192
|
-
recorded_at:
|
215
|
+
recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
|
193
216
|
- request:
|
194
217
|
method: post
|
195
|
-
uri: http://
|
218
|
+
uri: http://unix/v1.4/containers/9e72eb4c5f37/wait
|
196
219
|
body:
|
197
220
|
encoding: US-ASCII
|
198
221
|
string: ''
|
199
222
|
headers:
|
223
|
+
User-Agent:
|
224
|
+
- Swipely/Docker-API 1.5.4
|
200
225
|
Content-Type:
|
201
226
|
- text/plain
|
202
|
-
User-Agent:
|
203
|
-
- Swipely/Docker-API 1.3.1
|
204
227
|
response:
|
205
228
|
status:
|
206
229
|
code: 200
|
207
230
|
message: ''
|
208
231
|
headers:
|
209
|
-
|
210
|
-
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
232
|
+
!binary "Q29udGVudC1UeXBl":
|
233
|
+
- !binary |-
|
234
|
+
YXBwbGljYXRpb24vanNvbg==
|
235
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
236
|
+
- !binary |-
|
237
|
+
MTY=
|
238
|
+
!binary "RGF0ZQ==":
|
239
|
+
- !binary |-
|
240
|
+
TW9uLCAwNyBPY3QgMjAxMyAwMDo0Nzo0MCBHTVQ=
|
215
241
|
body:
|
216
|
-
encoding:
|
217
|
-
string: '{"StatusCode":0}'
|
242
|
+
encoding: US-ASCII
|
243
|
+
string: ! '{"StatusCode":0}'
|
218
244
|
http_version:
|
219
|
-
recorded_at:
|
220
|
-
recorded_with: VCR 2.
|
245
|
+
recorded_at: Mon, 07 Oct 2013 00:47:40 GMT
|
246
|
+
recorded_with: VCR 2.6.0
|