docker-api 1.8.4 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/docker/image.rb +4 -4
- data/lib/docker/util.rb +9 -1
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +1 -3
- data/spec/docker/util_spec.rb +23 -2
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +16 -16
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +6 -6
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +6 -6
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +6 -6
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +97 -69
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +12 -12
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +12 -12
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +19 -19
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +14 -14
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +9 -122
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +24 -24
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +24 -24
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +12 -12
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +5 -5
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +15 -15
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +14 -82732
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +13 -13
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +13 -13
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +49 -34
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +39 -39
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +14 -14
- 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 +38 -38
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +21 -21
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +52 -37
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +7 -7
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +15 -15
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +9 -9
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +13 -13
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +19 -22
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +7 -7
- 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 +25 -27
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +7 -7
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +7 -7
- 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 +8 -7
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +21 -20
- 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 +36 -38
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +5 -5
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +8 -8
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +10 -10
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +213 -30
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +45 -51
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +48 -100
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +30 -30
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +7 -7
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +32 -32
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +8 -8
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +43 -102
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +9 -9
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +18 -18
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +18 -18
- 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 +12 -12
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +34 -22
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +6 -6
- metadata +2 -6
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +0 -156
- 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 +0 -93
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.8.
|
11
|
+
- Swipely/Docker-API 1.8.4
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,14 +19,14 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 28 Feb 2014 21:29:54 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
26
26
|
- ''
|
27
27
|
body:
|
28
28
|
encoding: UTF-8
|
29
|
-
string: "{\"status\":\"Pulling repository base\"}{\"status\":\"Pulling image
|
29
|
+
string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
|
30
30
|
(ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
31
31
|
image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
32
32
|
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
@@ -34,16 +34,16 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at:
|
37
|
+
recorded_at: Fri, 28 Feb 2014 21:29:55 GMT
|
38
38
|
- request:
|
39
39
|
method: post
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/create
|
41
41
|
body:
|
42
42
|
encoding: UTF-8
|
43
|
-
string: "{\"Image\":\"
|
43
|
+
string: "{\"Image\":\"b750fe79269d\",\"Cmd\":[\"true\"]}"
|
44
44
|
headers:
|
45
45
|
User-Agent:
|
46
|
-
- Swipely/Docker-API 1.8.
|
46
|
+
- Swipely/Docker-API 1.8.4
|
47
47
|
Content-Type:
|
48
48
|
- application/json
|
49
49
|
response:
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- application/json
|
56
56
|
Date:
|
57
|
-
-
|
57
|
+
- Fri, 28 Feb 2014 21:29:55 GMT
|
58
58
|
Content-Length:
|
59
59
|
- '90'
|
60
60
|
Connection:
|
@@ -62,18 +62,18 @@ http_interactions:
|
|
62
62
|
body:
|
63
63
|
encoding: UTF-8
|
64
64
|
string: |
|
65
|
-
{"Id":"
|
65
|
+
{"Id":"e4e1b2526e1cf1eae7ac3b1e1c8c29e37b24130d0fcf410916e9f8b8d61ccc27","Warnings":null}
|
66
66
|
http_version:
|
67
|
-
recorded_at:
|
67
|
+
recorded_at: Fri, 28 Feb 2014 21:29:55 GMT
|
68
68
|
- request:
|
69
69
|
method: post
|
70
|
-
uri: unix:///var/run/docker.sock/v1.
|
70
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/e4e1b2526e1cf1eae7ac3b1e1c8c29e37b24130d0fcf410916e9f8b8d61ccc27/start
|
71
71
|
body:
|
72
72
|
encoding: UTF-8
|
73
73
|
string: "{}"
|
74
74
|
headers:
|
75
75
|
User-Agent:
|
76
|
-
- Swipely/Docker-API 1.8.
|
76
|
+
- Swipely/Docker-API 1.8.4
|
77
77
|
Content-Type:
|
78
78
|
- application/json
|
79
79
|
response:
|
@@ -82,7 +82,7 @@ http_interactions:
|
|
82
82
|
message:
|
83
83
|
headers:
|
84
84
|
Date:
|
85
|
-
-
|
85
|
+
- Fri, 28 Feb 2014 21:29:56 GMT
|
86
86
|
Content-Length:
|
87
87
|
- '0'
|
88
88
|
Content-Type:
|
@@ -93,16 +93,16 @@ http_interactions:
|
|
93
93
|
encoding: UTF-8
|
94
94
|
string: ''
|
95
95
|
http_version:
|
96
|
-
recorded_at:
|
96
|
+
recorded_at: Fri, 28 Feb 2014 21:29:56 GMT
|
97
97
|
- request:
|
98
98
|
method: post
|
99
|
-
uri: unix:///var/run/docker.sock/v1.
|
99
|
+
uri: unix:///var/run/docker.sock/v1.9/commit?container=e4e1b252&repo=nahiluhmot%2Fbase2
|
100
100
|
body:
|
101
101
|
encoding: UTF-8
|
102
102
|
string: 'null'
|
103
103
|
headers:
|
104
104
|
User-Agent:
|
105
|
-
- Swipely/Docker-API 1.8.
|
105
|
+
- Swipely/Docker-API 1.8.4
|
106
106
|
Content-Type:
|
107
107
|
- application/json
|
108
108
|
response:
|
@@ -113,7 +113,7 @@ http_interactions:
|
|
113
113
|
Content-Type:
|
114
114
|
- application/json
|
115
115
|
Date:
|
116
|
-
-
|
116
|
+
- Fri, 28 Feb 2014 21:29:57 GMT
|
117
117
|
Content-Length:
|
118
118
|
- '74'
|
119
119
|
Connection:
|
@@ -121,18 +121,18 @@ http_interactions:
|
|
121
121
|
body:
|
122
122
|
encoding: UTF-8
|
123
123
|
string: |
|
124
|
-
{"Id":"
|
124
|
+
{"Id":"8eeaeb204828c986cffb38b91c9750a7e93c4d60297b30deb2ffd9d6444eb5d7"}
|
125
125
|
http_version:
|
126
|
-
recorded_at:
|
126
|
+
recorded_at: Fri, 28 Feb 2014 21:29:57 GMT
|
127
127
|
- request:
|
128
128
|
method: get
|
129
|
-
uri: unix:///var/run/docker.sock/v1.
|
129
|
+
uri: unix:///var/run/docker.sock/v1.9/images/json?all=true
|
130
130
|
body:
|
131
131
|
encoding: US-ASCII
|
132
132
|
string: ''
|
133
133
|
headers:
|
134
134
|
User-Agent:
|
135
|
-
- Swipely/Docker-API 1.8.
|
135
|
+
- Swipely/Docker-API 1.8.4
|
136
136
|
Content-Type:
|
137
137
|
- text/plain
|
138
138
|
response:
|
@@ -140,10 +140,10 @@ http_interactions:
|
|
140
140
|
code: 200
|
141
141
|
message:
|
142
142
|
headers:
|
143
|
-
Date:
|
144
|
-
- Wed, 12 Feb 2014 20:00:48 GMT
|
145
143
|
Content-Type:
|
146
|
-
-
|
144
|
+
- application/json
|
145
|
+
Date:
|
146
|
+
- Fri, 28 Feb 2014 21:29:57 GMT
|
147
147
|
Connection:
|
148
148
|
- close
|
149
149
|
Transfer-Encoding:
|
@@ -151,80 +151,31 @@ http_interactions:
|
|
151
151
|
body:
|
152
152
|
encoding: UTF-8
|
153
153
|
string: |-
|
154
|
-
[{"Created":
|
155
|
-
,{"Created":
|
156
|
-
,{"Created":
|
157
|
-
,{"Created":
|
158
|
-
,{"Created":
|
159
|
-
,{"Created":
|
160
|
-
,{"Created":
|
161
|
-
,{"Created":
|
162
|
-
,{"Created":1392234800,"Id":"fb41ca2d1280c83a74aedcd2652ffe20f14e07970ff2f08e12cadd76180b4979","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["test:base2"],"Size":7,"VirtualSize":350613950}
|
163
|
-
,{"Created":1392234741,"Id":"adc846af182495cd8452b069ac2cc3c6505baa2cf075c9ebd9cf9f7b35d5f606","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
164
|
-
,{"Created":1392234692,"Id":"1457d7062825fd4a42d7ba884fdc0c07cd3c37b4b2c3f06c9c76a483feda87b0","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
165
|
-
,{"Created":1392234657,"Id":"3ce412e164313ff63e75cd8dc6915655399d1446b0bd318e1ce467b63ea1a67b","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
166
|
-
,{"Created":1392234620,"Id":"c9f01e6b8ee91e1aa71005c78d1690263206548d67119ea65f5ff7fe957524a5","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
167
|
-
,{"Created":1392234578,"Id":"cdb0caeddbbc02bee362f8c1324f7f6565ae5a70d0e0497c0b69f6dec8e84b00","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
168
|
-
,{"Created":1392234410,"Id":"2d48b01d78dc90e320eab62c4a2ca57ee83077274a9ae5f92f85d15c51756eb1","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
169
|
-
,{"Created":1392233937,"Id":"704f6d628d58e0065b1d1115806a285c13e06156eb3452a6891f801e65dfd779","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
170
|
-
,{"Created":1392233789,"Id":"85d72e02f112afefbf18bdf32b25cd1fa1a778a160bc43f9bd4fc586f028b5dd","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
171
|
-
,{"Created":1392233763,"Id":"521a3175071b470d01880b637fb98344e1bc41aceacd555f58bf56da772c624b","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
172
|
-
,{"Created":1392233678,"Id":"a0048ba21ebcd814e16d69b81c2cd8b784c9f5c3e45596e01c5a3d7963106950","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
173
|
-
,{"Created":1392233656,"Id":"e6b097e6eb3026b69cd4735d1eb2187bc6d4b340e2740965a067109c65bec44c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
174
|
-
,{"Created":1392233643,"Id":"bd86ddaf0a7ab87cbe61845c25b8fb47d133d1f6c446ebcf525b918b2d1815d3","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
175
|
-
,{"Created":1392233565,"Id":"f2fcf2d5e8ae40c960893dc59de6c3e277997bea9195e99b0b1f0ad7dbe5baad","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
176
|
-
,{"Created":1392233532,"Id":"da31b99cc21b5551e71179b768dca6d8f2e3348d087bd7667360ef58f5941b67","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
177
|
-
,{"Created":1392233484,"Id":"7aa983898e3f83301ba3e987ff38b3ae91b6c255a33d04b49a0ab10c93ea7741","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
178
|
-
,{"Created":1392233445,"Id":"98f80a45552d9ff640e1c9051a6d4c9a726ab7263fef55d243efd3808bedbf76","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
179
|
-
,{"Created":1392233353,"Id":"907802b97dcd9dc6ce606343e4b925f3ba7454addc707485bc65e21013f4c381","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
180
|
-
,{"Created":1392233269,"Id":"9accbf80307c68fadb3c7f4c0fc469198c3429e883b4eabd57ccfb993da927db","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
181
|
-
,{"Created":1392233220,"Id":"c0d938f826fc7ff70029526a73454bd77b20e08227a6058295460f9b96c6fc85","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
182
|
-
,{"Created":1392233077,"Id":"15c1d077f5bacec291e4e6a9aa7f0d7ec9bc2dc1912319b0136caa1e31b6421c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["test:base"],"Size":7,"VirtualSize":350613950}
|
183
|
-
,{"Created":1392232993,"Id":"6a0a642f5218a820f9282299845a649a229742f594312f7a459610d3a6c1e0c5","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
184
|
-
,{"Created":1392232938,"Id":"4f42c15d0fb988a962164d0e6685bbb8be534b560bd792bf6b85887abf59a727","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
185
|
-
,{"Created":1392232805,"Id":"128dea73db6a53268d23ad5a46dbede37719483f270bd70d9ea7cdfb36203c83","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
186
|
-
,{"Created":1392232753,"Id":"02931c841ecf2b5b20b909c645dfb1c2c639064f2ace9271612c5a4ed0ad2cbd","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
187
|
-
,{"Created":1392232677,"Id":"62d82605bedbac093c57345fedcb5c9d596647ce6228f1799cee3c2a0bc4942a","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
188
|
-
,{"Created":1392232642,"Id":"ee163408789faaaaa30a530597e31601935ade9892870a258b9f46072009b242","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
189
|
-
,{"Created":1392232629,"Id":"61ff32da714693358acee96786cf3b008117c68de29242e4d19a2d744b4b2fbd","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
190
|
-
,{"Created":1392232596,"Id":"6e63ae5d917e87111cd6f65f558eb6a4406dedf8ee663f952f3aaae1eb7b4613","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
191
|
-
,{"Created":1392232553,"Id":"c041aa61d1e743cf65b0d0a5199fe4038c8b4d6fa669fd88deb74891fe3c5bcf","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["test/base:latest"],"Size":7,"VirtualSize":350613950}
|
192
|
-
,{"Created":1392228346,"Id":"8bf7ee4e0ceb6cf71d2e6dcd1ba2a810df6f01066e9b3f417bc9d34c12b44089","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":350613943}
|
193
|
-
,{"Created":1392228160,"Id":"5c5c4a5cb44882835b6f37df7ee23c9d5eec62c3f1bb7aacff644757611b6b38","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":350613943}
|
194
|
-
,{"Created":1392227630,"Id":"350618dc27c04fc77523f0a6720984545223cacfa0271b752bf0f04438829a70","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":350613943}
|
195
|
-
,{"Created":1392227570,"Id":"bf83361ff7c3624391fcd39f7dfe4fced56775daa496cdec5454b33cf1237a18","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":350613943}
|
196
|
-
,{"Created":1392227536,"Id":"3bb5833b42163dc28b3dc3db478708c14037ed2da5acc721434bf5af8b6eb4a2","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":350613943}
|
197
|
-
,{"Created":1392227450,"Id":"1bbc91cd19c04359799a6ad17f66072ca1048386d0e4b2d89311b3cdb0647df5","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":350613943}
|
198
|
-
,{"Created":1392224802,"Id":"d6d2bf4c6746cd6a8695bc0710e30b4171b03627e096b5a275c4c684529186b7","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["swipely/base2:latest"],"Size":18,"VirtualSize":350613961}
|
199
|
-
,{"Created":1392224800,"Id":"fc0060ffa4342164d1184ecfaacad8016c3e81090a73b8a1a7232294ecaac521","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["swipely/base:latest"],"Size":7,"VirtualSize":350613950}
|
200
|
-
,{"Created":1392224791,"Id":"fe20982d654dc449eeca28574a5ca9a88d31214385de328e87701c7791195d38","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":350613943}
|
201
|
-
,{"Created":1392224778,"Id":"e86ce037ddd754144fdbf27a5985c8ea3e542762045f0a9db2380c6a4652351d","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":350613981}
|
202
|
-
,{"Created":1392224774,"Id":"1b3c75d341bd8ca014239a9a658bea02e7e01e02d10aafdca598f1aec970781d","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":350613981}
|
203
|
-
,{"Created":1392224769,"Id":"724a85dfbc0f7e528ee2f30a4ff344a10f708fde454b1c7b2fe36585b42795f1","ParentId":"6b7f51d79dfdc9513b1a7429839a27f23f9c6e7fdfa8fc6ebcb061b18bd2ec8f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":328,"VirtualSize":350614309}
|
204
|
-
,{"Created":1392224767,"Id":"6b7f51d79dfdc9513b1a7429839a27f23f9c6e7fdfa8fc6ebcb061b18bd2ec8f","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":350613981}
|
205
|
-
,{"Created":1392224762,"Id":"53f8b4e63bb87e4ea9304f59f4b926c978d3025c3fcd255485de323ca645e1ef","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":350613981}
|
206
|
-
,{"Created":1392224759,"Id":"4ba9053f199a519e1e1cdbbe1f19230c2160f77453d055a0f0d6ded82ce04946","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":94554,"VirtualSize":350708497}
|
207
|
-
,{"Created":1392224753,"Id":"dae27da5a73f01eede1699649c42c727651b4311d2ff689810bf22c75c2d2a08","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
208
|
-
,{"Created":1392224748,"Id":"291b17ca54f04278c166b1313f9ec211fa27596a6f5a20855fcd8739b8f26116","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
209
|
-
,{"Created":1392224744,"Id":"328de6c59bef1db641600ea40668bbd57f6966a146bebe9640030dea13d0008c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7,"VirtualSize":350613950}
|
210
|
-
,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl","base2:latest"],"Size":175306985,"VirtualSize":350613943}
|
154
|
+
[{"Created":1393622997,"Id":"8eeaeb204828c986cffb38b91c9750a7e93c4d60297b30deb2ffd9d6444eb5d7","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["nahiluhmot/base2:latest"],"Size":7,"VirtualSize":175307042}
|
155
|
+
,{"Created":1393622992,"Id":"ac74549ba478cf73bfca3cfdfd5f61624859ab7a942491b4deb85f96553edddb","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
156
|
+
,{"Created":1393622989,"Id":"50d7d1e75f19b08e53029c4a9786c434ec6cafeca47a8625d7a72391ad08c073","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
157
|
+
,{"Created":1393622986,"Id":"7152d6b36451bcdbc72a150984117bf9e4d90f74ac1ea17ee53ee66083f75055","ParentId":"b11e8415856766b3d31dc90e9a01257c4eb805292e09bb28d5aeaff0d234e1db","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":328,"VirtualSize":175307401}
|
158
|
+
,{"Created":1393622984,"Id":"b11e8415856766b3d31dc90e9a01257c4eb805292e09bb28d5aeaff0d234e1db","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
159
|
+
,{"Created":1393622981,"Id":"3a016dd557a79d40d70ad9b41c0629fbd13e8094aa3adee1c69fec1d2891ae4b","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
|
160
|
+
,{"Created":1393622978,"Id":"ec54e7edec81632a90f1844fb706ca5f57bc476d08ffcf51cb5feb9d37a7c39b","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":93736,"VirtualSize":175400771}
|
161
|
+
,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
|
211
162
|
,{"Created":1364068391,"Id":"27cf784147099545","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":175306958,"VirtualSize":175306958}
|
212
163
|
]
|
213
164
|
http_version:
|
214
|
-
recorded_at:
|
165
|
+
recorded_at: Fri, 28 Feb 2014 21:29:57 GMT
|
215
166
|
- request:
|
216
167
|
method: post
|
217
|
-
uri: unix:///var/run/docker.sock/v1.
|
168
|
+
uri: unix:///var/run/docker.sock/v1.9/images/nahiluhmot/base2/push
|
218
169
|
body:
|
219
170
|
encoding: US-ASCII
|
220
171
|
string: ''
|
221
172
|
headers:
|
222
173
|
User-Agent:
|
223
|
-
- Swipely/Docker-API 1.8.
|
174
|
+
- Swipely/Docker-API 1.8.4
|
224
175
|
Content-Type:
|
225
176
|
- text/plain
|
226
|
-
X-
|
227
|
-
-
|
177
|
+
X-Registry-Auth:
|
178
|
+
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKiIsInNlcnZlcmFkZHJlc3MiOiJodHRwczovL2luZGV4LmRvY2tlci5pby92MSIsImVtYWlsIjoidG9taHVsaWhhbkBzd2lwZWx5LmNvbSJ9
|
228
179
|
response:
|
229
180
|
status:
|
230
181
|
code: 200
|
@@ -233,7 +184,7 @@ http_interactions:
|
|
233
184
|
Content-Type:
|
234
185
|
- application/json
|
235
186
|
Date:
|
236
|
-
-
|
187
|
+
- Fri, 28 Feb 2014 21:29:57 GMT
|
237
188
|
Connection:
|
238
189
|
- close
|
239
190
|
Transfer-Encoding:
|
@@ -241,19 +192,9 @@ http_interactions:
|
|
241
192
|
body:
|
242
193
|
encoding: UTF-8
|
243
194
|
string: "{\"status\":\"The push refers to a repository [nahiluhmot/base2] (len:
|
244
|
-
1)\"}{\"status\":\"Sending image list\"}{\"
|
245
|
-
|
246
|
-
|
247
|
-
b750fe79269d already pushed, skipping\"}{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e01a3892e15e\"}{\"status\":\"Buffering
|
248
|
-
to disk\",\"progressDetail\":{\"current\":2048,\"start\":1392235251},\"progress\":\"2.048
|
249
|
-
kB\",\"id\":\"e01a3892e15e\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2048,\"start\":1392235251},\"progress\":\"[============\\u003e
|
250
|
-
\ ] 512 B/2.048 kB 1s\",\"id\":\"e01a3892e15e\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":2048,\"start\":1392235251},\"progress\":\"[=========================\\u003e
|
251
|
-
\ ] 1.024 kB/2.048 kB 0\",\"id\":\"e01a3892e15e\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1536,\"total\":2048,\"start\":1392235251},\"progress\":\"[=====================================\\u003e
|
252
|
-
\ ] 1.536 kB/2.048 kB 0\",\"id\":\"e01a3892e15e\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2048,\"total\":2048,\"start\":1392235251},\"progress\":\"[==================================================\\u003e]
|
253
|
-
2.048 kB/2.048 kB\",\"id\":\"e01a3892e15e\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2048,\"total\":2048,\"start\":1392235251},\"progress\":\"[==================================================\\u003e]
|
254
|
-
2.048 kB/2.048 kB\",\"id\":\"e01a3892e15e\"}{\"status\":\"Image successfully
|
255
|
-
pushed\",\"progressDetail\":{},\"id\":\"e01a3892e15e\"}{\"status\":\"Pushing
|
256
|
-
tag for rev [e01a3892e15e] on {https://registry-1.docker.io/v1/repositories/nahiluhmot/base2/tags/latest}\"}"
|
195
|
+
1)\"}\r\n{\"status\":\"Sending image list\"}\r\n{\"errorDetail\":{\"message\":\"Error:
|
196
|
+
Status 401 trying to push repository nahiluhmot/base2: \"},\"error\":\"Error:
|
197
|
+
Status 401 trying to push repository nahiluhmot/base2: \"}\r\n"
|
257
198
|
http_version:
|
258
|
-
recorded_at:
|
199
|
+
recorded_at: Fri, 28 Feb 2014 21:29:58 GMT
|
259
200
|
recorded_with: VCR 2.8.0
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
- Fri, 28 Feb 2014
|
22
|
+
- Fri, 28 Feb 2014 21:29:20 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
@@ -34,10 +34,10 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at: Fri, 28 Feb 2014
|
37
|
+
recorded_at: Fri, 28 Feb 2014 21:29:21 GMT
|
38
38
|
- request:
|
39
39
|
method: delete
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.9/images/b750fe79269d
|
41
41
|
body:
|
42
42
|
encoding: US-ASCII
|
43
43
|
string: ''
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- application/json
|
56
56
|
Date:
|
57
|
-
- Fri, 28 Feb 2014
|
57
|
+
- Fri, 28 Feb 2014 21:29:22 GMT
|
58
58
|
Content-Length:
|
59
59
|
- '246'
|
60
60
|
Connection:
|
@@ -70,10 +70,10 @@ http_interactions:
|
|
70
70
|
,{"Deleted":"27cf784147099545"}
|
71
71
|
]
|
72
72
|
http_version:
|
73
|
-
recorded_at: Fri, 28 Feb 2014
|
73
|
+
recorded_at: Fri, 28 Feb 2014 21:29:22 GMT
|
74
74
|
- request:
|
75
75
|
method: get
|
76
|
-
uri: unix:///var/run/docker.sock/v1.
|
76
|
+
uri: unix:///var/run/docker.sock/v1.9/images/json
|
77
77
|
body:
|
78
78
|
encoding: US-ASCII
|
79
79
|
string: ''
|
@@ -90,7 +90,7 @@ http_interactions:
|
|
90
90
|
Content-Type:
|
91
91
|
- application/json
|
92
92
|
Date:
|
93
|
-
- Fri, 28 Feb 2014
|
93
|
+
- Fri, 28 Feb 2014 21:29:22 GMT
|
94
94
|
Content-Length:
|
95
95
|
- '2'
|
96
96
|
Connection:
|
@@ -99,5 +99,5 @@ http_interactions:
|
|
99
99
|
encoding: UTF-8
|
100
100
|
string: "[]"
|
101
101
|
http_version:
|
102
|
-
recorded_at: Fri, 28 Feb 2014
|
102
|
+
recorded_at: Fri, 28 Feb 2014 21:29:22 GMT
|
103
103
|
recorded_with: VCR 2.8.0
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.9/images/create?fromImage=base
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.8.4
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,14 +19,14 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 28 Feb 2014 21:30:01 GMT
|
23
23
|
Connection:
|
24
24
|
- close
|
25
25
|
Transfer-Encoding:
|
26
26
|
- ''
|
27
27
|
body:
|
28
28
|
encoding: UTF-8
|
29
|
-
string: "{\"status\":\"Pulling repository base\"}{\"status\":\"Pulling image
|
29
|
+
string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
|
30
30
|
(ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
31
31
|
image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
32
32
|
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
@@ -34,16 +34,16 @@ http_interactions:
|
|
34
34
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
35
35
|
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
|
36
36
|
http_version:
|
37
|
-
recorded_at:
|
37
|
+
recorded_at: Fri, 28 Feb 2014 21:30:01 GMT
|
38
38
|
- request:
|
39
39
|
method: post
|
40
|
-
uri: unix:///var/run/docker.sock/v1.
|
40
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/create
|
41
41
|
body:
|
42
42
|
encoding: UTF-8
|
43
|
-
string: "{\"Image\":\"
|
43
|
+
string: "{\"Image\":\"b750fe79269d\",\"Cmd\":[\"ls\",\"/lib64/\"]}"
|
44
44
|
headers:
|
45
45
|
User-Agent:
|
46
|
-
- Swipely/Docker-API 1.
|
46
|
+
- Swipely/Docker-API 1.8.4
|
47
47
|
Content-Type:
|
48
48
|
- application/json
|
49
49
|
response:
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
Content-Type:
|
55
55
|
- application/json
|
56
56
|
Date:
|
57
|
-
-
|
57
|
+
- Fri, 28 Feb 2014 21:30:02 GMT
|
58
58
|
Content-Length:
|
59
59
|
- '90'
|
60
60
|
Connection:
|
@@ -62,18 +62,18 @@ http_interactions:
|
|
62
62
|
body:
|
63
63
|
encoding: UTF-8
|
64
64
|
string: |
|
65
|
-
{"Id":"
|
65
|
+
{"Id":"93cdf928ada741f11c9535aa2de4bf7c0d69169e4309e45841efc3d54ae21fb8","Warnings":null}
|
66
66
|
http_version:
|
67
|
-
recorded_at:
|
67
|
+
recorded_at: Fri, 28 Feb 2014 21:30:02 GMT
|
68
68
|
- request:
|
69
69
|
method: post
|
70
|
-
uri: unix:///var/run/docker.sock/v1.
|
70
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/93cdf928ada741f11c9535aa2de4bf7c0d69169e4309e45841efc3d54ae21fb8/start
|
71
71
|
body:
|
72
72
|
encoding: UTF-8
|
73
73
|
string: "{}"
|
74
74
|
headers:
|
75
75
|
User-Agent:
|
76
|
-
- Swipely/Docker-API 1.
|
76
|
+
- Swipely/Docker-API 1.8.4
|
77
77
|
Content-Type:
|
78
78
|
- application/json
|
79
79
|
response:
|
@@ -82,7 +82,7 @@ http_interactions:
|
|
82
82
|
message:
|
83
83
|
headers:
|
84
84
|
Date:
|
85
|
-
-
|
85
|
+
- Fri, 28 Feb 2014 21:30:03 GMT
|
86
86
|
Content-Length:
|
87
87
|
- '0'
|
88
88
|
Content-Type:
|
@@ -93,16 +93,16 @@ http_interactions:
|
|
93
93
|
encoding: UTF-8
|
94
94
|
string: ''
|
95
95
|
http_version:
|
96
|
-
recorded_at:
|
96
|
+
recorded_at: Fri, 28 Feb 2014 21:30:03 GMT
|
97
97
|
- request:
|
98
98
|
method: post
|
99
|
-
uri: unix:///var/run/docker.sock/v1.
|
99
|
+
uri: unix:///var/run/docker.sock/v1.9/containers/93cdf928ada741f11c9535aa2de4bf7c0d69169e4309e45841efc3d54ae21fb8/attach?stderr=true&stdout=true&stream=true
|
100
100
|
body:
|
101
101
|
encoding: US-ASCII
|
102
102
|
string: ''
|
103
103
|
headers:
|
104
104
|
User-Agent:
|
105
|
-
- Swipely/Docker-API 1.
|
105
|
+
- Swipely/Docker-API 1.8.4
|
106
106
|
Content-Type:
|
107
107
|
- text/plain
|
108
108
|
response:
|
@@ -117,5 +117,5 @@ http_interactions:
|
|
117
117
|
string: !binary |-
|
118
118
|
AQAAAAAAABVsZC1saW51eC14ODYtNjQuc28uMgo=
|
119
119
|
http_version:
|
120
|
-
recorded_at:
|
120
|
+
recorded_at: Fri, 28 Feb 2014 21:30:03 GMT
|
121
121
|
recorded_with: VCR 2.8.0
|