docker-api 1.11.2 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/docker/image.rb +10 -10
  4. data/lib/docker/version.rb +2 -2
  5. data/spec/docker/container_spec.rb +0 -8
  6. data/spec/docker/image_spec.rb +3 -3
  7. data/spec/docker_spec.rb +6 -4
  8. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -6
  9. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -7
  10. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -7
  11. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -7
  12. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +77 -65
  13. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +15 -15
  14. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +15 -15
  15. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +22 -24
  16. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +17 -17
  17. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +12 -12
  18. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +41 -41
  19. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +26 -26
  20. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +13 -13
  21. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +7 -7
  22. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -17
  23. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +453693 -17
  24. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +13 -13
  25. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +13 -13
  26. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +41 -35
  27. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +11 -11
  28. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +11 -11
  29. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +42 -42
  30. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +16 -16
  31. 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 +46 -47
  32. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +23 -23
  33. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +45 -39
  34. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +27 -23
  35. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +16 -16
  36. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +12 -12
  37. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +16 -16
  38. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +13 -33
  39. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +6 -6
  40. 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
  41. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +6 -6
  42. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +6 -6
  43. 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 +11 -7
  44. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +8 -196
  45. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +24 -20
  46. 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 +46 -30
  47. 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 +21 -669
  48. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -7
  49. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +9 -9
  50. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +27 -25
  51. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +12 -12
  52. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +6 -6
  53. data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +27 -33
  54. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +29 -878
  55. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +29 -45
  56. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +29 -51
  57. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +29 -28
  58. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +6 -6
  59. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +32 -31
  60. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +11 -11
  61. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +67 -227
  62. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +61 -43
  63. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +40 -203
  64. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +22 -23
  65. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +19 -19
  66. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +19 -19
  67. 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 +10 -10
  68. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +77 -72
  69. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +9 -9
  70. metadata +3 -3
@@ -2,14 +2,14 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.10/build
5
+ uri: unix:///var/run/docker.sock/v1.11/build
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: !binary |-
9
9
  RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
10
10
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
11
11
  AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
12
- ADEyMzEzNjYyNjA0ADAxMzI3NwAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
12
+ ADAwMDAwMDAwMDAwADAxMzIzNQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
13
13
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
14
14
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
15
15
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
@@ -54,7 +54,7 @@ http_interactions:
54
54
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
55
55
  headers:
56
56
  User-Agent:
57
- - Swipely/Docker-API 1.10.3
57
+ - Swipely/Docker-API 1.11.1
58
58
  Content-Type:
59
59
  - application/json
60
60
  response:
@@ -65,7 +65,7 @@ http_interactions:
65
65
  Content-Type:
66
66
  - application/json
67
67
  Date:
68
- - Sun, 23 Mar 2014 22:51:48 GMT
68
+ - Fri, 06 Jun 2014 14:28:14 GMT
69
69
  Connection:
70
70
  - close
71
71
  Transfer-Encoding:
@@ -75,5 +75,5 @@ http_interactions:
75
75
  string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
76
76
  b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
77
77
  http_version:
78
- recorded_at: Sun, 23 Mar 2014 22:51:48 GMT
79
- recorded_with: VCR 2.8.0
78
+ recorded_at: Fri, 06 Jun 2014 14:28:14 GMT
79
+ recorded_with: VCR 2.9.2
@@ -2,14 +2,14 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.10/build
5
+ uri: unix:///var/run/docker.sock/v1.11/build
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: !binary |-
9
9
  RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
10
10
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
11
11
  AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
12
- ADEyMzEzNjYyNjA2ADAxMzMwMQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
12
+ ADAwMDAwMDAwMDAwADAxMzIzNQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
13
13
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
14
14
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
15
15
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
@@ -54,7 +54,7 @@ http_interactions:
54
54
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
55
55
  headers:
56
56
  User-Agent:
57
- - Swipely/Docker-API 1.10.3
57
+ - Swipely/Docker-API 1.11.1
58
58
  Content-Type:
59
59
  - application/json
60
60
  response:
@@ -65,7 +65,7 @@ http_interactions:
65
65
  Content-Type:
66
66
  - application/json
67
67
  Date:
68
- - Sun, 23 Mar 2014 22:51:50 GMT
68
+ - Fri, 06 Jun 2014 14:28:16 GMT
69
69
  Connection:
70
70
  - close
71
71
  Transfer-Encoding:
@@ -75,17 +75,17 @@ http_interactions:
75
75
  string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
76
76
  b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
77
77
  http_version:
78
- recorded_at: Sun, 23 Mar 2014 22:51:50 GMT
78
+ recorded_at: Fri, 06 Jun 2014 14:28:16 GMT
79
79
  - request:
80
80
  method: post
81
- uri: unix:///var/run/docker.sock/v1.10/build
81
+ uri: unix:///var/run/docker.sock/v1.11/build
82
82
  body:
83
83
  encoding: UTF-8
84
84
  string: !binary |-
85
85
  R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
86
86
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
87
87
  AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
88
- ADEyMzEzNjYyNjA2ADAxMjYxMgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
88
+ ADAwMDAwMDAwMDAwADAxMjU0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
89
89
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
90
90
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
91
91
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
@@ -107,8 +107,8 @@ http_interactions:
107
107
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFJha2VmaWxlAAAA
108
108
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
109
109
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
110
- MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMTAzNQAxMjMxMzY2MjYw
111
- NgAwMTI3NjMAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
110
+ MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMTAzNQAwMDAwMDAwMDAw
111
+ MAAwMTI3MTcAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
112
112
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
113
113
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
114
114
  AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@@ -141,8 +141,8 @@ http_interactions:
141
141
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tl
142
142
  cmZpbGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
143
143
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
144
- AAAAAAAwMDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA1NwAxMjMx
145
- MzY2MjYwNgAwMTMzMTMAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
144
+ AAAAAAAwMDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA1NwAwMDAw
145
+ MDAwMDAwMAAwMTMyNDcAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
146
146
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
147
147
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAA
148
148
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAA
@@ -187,7 +187,7 @@ http_interactions:
187
187
  AAAAAAAAAAAAAAAAAAAAAAAA
188
188
  headers:
189
189
  User-Agent:
190
- - Swipely/Docker-API 1.10.3
190
+ - Swipely/Docker-API 1.11.1
191
191
  Content-Type:
192
192
  - application/json
193
193
  response:
@@ -198,7 +198,7 @@ http_interactions:
198
198
  Content-Type:
199
199
  - application/json
200
200
  Date:
201
- - Sun, 23 Mar 2014 22:51:50 GMT
201
+ - Fri, 06 Jun 2014 14:28:16 GMT
202
202
  Connection:
203
203
  - close
204
204
  Transfer-Encoding:
@@ -207,19 +207,20 @@ http_interactions:
207
207
  encoding: UTF-8
208
208
  string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
209
209
  b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add Gemfile /\\n\"}\r\n{\"stream\":\"
210
- ---\\u003e 4a666898763a\\n\"}\r\n{\"stream\":\"Step 2 : add Rakefile /\\n\"}\r\n{\"stream\":\"
211
- ---\\u003e 1fe8ba4c5308\\n\"}\r\n{\"stream\":\"Successfully built 1fe8ba4c5308\\n\"}\r\n"
210
+ ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 708490cac070\\n\"}\r\n{\"stream\":\"Step
211
+ 2 : add Rakefile /\\n\"}\r\n{\"stream\":\" ---\\u003e Using cache\\n\"}\r\n{\"stream\":\"
212
+ ---\\u003e 0c9f927adc67\\n\"}\r\n{\"stream\":\"Successfully built 0c9f927adc67\\n\"}\r\n"
212
213
  http_version:
213
- recorded_at: Sun, 23 Mar 2014 22:51:54 GMT
214
+ recorded_at: Fri, 06 Jun 2014 14:28:16 GMT
214
215
  - request:
215
216
  method: post
216
- uri: unix:///var/run/docker.sock/v1.10/containers/create
217
+ uri: unix:///var/run/docker.sock/v1.11/containers/create
217
218
  body:
218
219
  encoding: UTF-8
219
- string: "{\"Image\":\"1fe8ba4c5308\",\"Cmd\":[\"cat\",\"/Gemfile\",\"/Rakefile\"]}"
220
+ string: '{"Image":"0c9f927adc67","Cmd":["cat","/Gemfile","/Rakefile"]}'
220
221
  headers:
221
222
  User-Agent:
222
- - Swipely/Docker-API 1.10.3
223
+ - Swipely/Docker-API 1.11.1
223
224
  Content-Type:
224
225
  - application/json
225
226
  response:
@@ -230,7 +231,7 @@ http_interactions:
230
231
  Content-Type:
231
232
  - application/json
232
233
  Date:
233
- - Sun, 23 Mar 2014 22:51:54 GMT
234
+ - Fri, 06 Jun 2014 14:28:16 GMT
234
235
  Content-Length:
235
236
  - '90'
236
237
  Connection:
@@ -238,18 +239,18 @@ http_interactions:
238
239
  body:
239
240
  encoding: UTF-8
240
241
  string: |
241
- {"Id":"41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091","Warnings":null}
242
+ {"Id":"6478452068e6d54a5c4cf9334a9029a18b141920e52fdd4fa8a892eb7557908a","Warnings":null}
242
243
  http_version:
243
- recorded_at: Sun, 23 Mar 2014 22:51:54 GMT
244
+ recorded_at: Fri, 06 Jun 2014 14:28:16 GMT
244
245
  - request:
245
246
  method: post
246
- uri: unix:///var/run/docker.sock/v1.10/containers/41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091/start
247
+ uri: unix:///var/run/docker.sock/v1.11/containers/6478452068e6d54a5c4cf9334a9029a18b141920e52fdd4fa8a892eb7557908a/start
247
248
  body:
248
249
  encoding: UTF-8
249
- string: "{}"
250
+ string: '{}'
250
251
  headers:
251
252
  User-Agent:
252
- - Swipely/Docker-API 1.10.3
253
+ - Swipely/Docker-API 1.11.1
253
254
  Content-Type:
254
255
  - application/json
255
256
  response:
@@ -258,7 +259,7 @@ http_interactions:
258
259
  message:
259
260
  headers:
260
261
  Date:
261
- - Sun, 23 Mar 2014 22:51:54 GMT
262
+ - Fri, 06 Jun 2014 14:28:16 GMT
262
263
  Content-Length:
263
264
  - '0'
264
265
  Content-Type:
@@ -269,16 +270,16 @@ http_interactions:
269
270
  encoding: UTF-8
270
271
  string: ''
271
272
  http_version:
272
- recorded_at: Sun, 23 Mar 2014 22:51:54 GMT
273
+ recorded_at: Fri, 06 Jun 2014 14:28:16 GMT
273
274
  - request:
274
275
  method: post
275
- uri: unix:///var/run/docker.sock/v1.10/containers/41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091/attach?stderr=true&stdout=true&stream=true
276
+ uri: unix:///var/run/docker.sock/v1.11/containers/6478452068e6d54a5c4cf9334a9029a18b141920e52fdd4fa8a892eb7557908a/attach?stderr=true&stdout=true&stream=true
276
277
  body:
277
278
  encoding: US-ASCII
278
279
  string: ''
279
280
  headers:
280
281
  User-Agent:
281
- - Swipely/Docker-API 1.10.3
282
+ - Swipely/Docker-API 1.11.1
282
283
  Content-Type:
283
284
  - text/plain
284
285
  response:
@@ -306,5 +307,5 @@ http_interactions:
306
307
  IHB1dHMgIlB1bGxlZCB1YnVudHU6MTMuMTAsIGltYWdlIGlkOiAje2ltYWdl
307
308
  LmlkfSIKZW5kCg==
308
309
  http_version:
309
- recorded_at: Sun, 23 Mar 2014 22:51:55 GMT
310
- recorded_with: VCR 2.8.0
310
+ recorded_at: Fri, 06 Jun 2014 14:28:16 GMT
311
+ recorded_with: VCR 2.9.2
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.10/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.11/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.9.1
11
+ - Swipely/Docker-API 1.11.1
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Wed, 12 Mar 2014 13:32:08 GMT
22
+ - Fri, 06 Jun 2014 14:23:18 GMT
23
23
  Connection:
24
24
  - close
25
25
  Transfer-Encoding:
@@ -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: Wed, 12 Mar 2014 13:32:09 GMT
37
+ recorded_at: Fri, 06 Jun 2014 14:23:29 GMT
38
38
  - request:
39
39
  method: get
40
- uri: unix:///var/run/docker.sock/v1.10/images/b750fe79269d/json
40
+ uri: unix:///var/run/docker.sock/v1.11/images/b750fe79269d/json
41
41
  body:
42
42
  encoding: US-ASCII
43
43
  string: ''
44
44
  headers:
45
45
  User-Agent:
46
- - Swipely/Docker-API 1.9.1
46
+ - Swipely/Docker-API 1.11.1
47
47
  Content-Type:
48
48
  - text/plain
49
49
  response:
@@ -54,14 +54,14 @@ http_interactions:
54
54
  Content-Type:
55
55
  - application/json
56
56
  Date:
57
- - Wed, 12 Mar 2014 13:32:09 GMT
57
+ - Fri, 06 Jun 2014 14:23:29 GMT
58
58
  Content-Length:
59
- - '643'
59
+ - '627'
60
60
  Connection:
61
61
  - close
62
62
  body:
63
63
  encoding: UTF-8
64
- string: "{\"id\":\"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc\",\"parent\":\"27cf784147099545\",\"created\":\"2013-03-23T22:24:18.818426-07:00\",\"container\":\"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0\",\"container_config\":{\"Hostname\":\"\",\"Domainname\":\"\",\"User\":\"\",\"Memory\":0,\"MemorySwap\":0,\"CpuShares\":0,\"AttachStdin\":false,\"AttachStdout\":false,\"AttachStderr\":false,\"PortSpecs\":null,\"ExposedPorts\":null,\"Tty\":true,\"OpenStdin\":true,\"StdinOnce\":false,\"Env\":null,\"Cmd\":[\"/bin/bash\"],\"Dns\":null,\"Image\":\"base\",\"Volumes\":null,\"VolumesFrom\":\"\",\"WorkingDir\":\"\",\"Entrypoint\":null,\"NetworkDisabled\":false,\"OnBuild\":null},\"Size\":77}"
64
+ string: '{"id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","parent":"27cf784147099545","created":"2013-03-23T22:24:18.818426-07:00","container":"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0","container_config":{"Hostname":"","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":true,"OpenStdin":true,"StdinOnce":false,"Env":null,"Cmd":["/bin/bash"],"Image":"base","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"OnBuild":null},"Size":77}'
65
65
  http_version:
66
- recorded_at: Wed, 12 Mar 2014 13:32:09 GMT
67
- recorded_with: VCR 2.8.0
66
+ recorded_at: Fri, 06 Jun 2014 14:23:29 GMT
67
+ recorded_with: VCR 2.9.2
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.10/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.11/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.10.4
11
+ - Swipely/Docker-API 1.11.1
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Thu, 03 Apr 2014 17:30:14 GMT
22
+ - Fri, 06 Jun 2014 14:19:09 GMT
23
23
  Connection:
24
24
  - close
25
25
  Transfer-Encoding:
@@ -29,204 +29,21 @@ http_interactions:
29
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
- dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
33
- metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
34
- fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":94863360,\"start\":1396546215},\"progress\":\"[\\u003e
35
- \ ] 528.4 kB/94.86 MB 2m6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":94863360,\"start\":1396546215},\"progress\":\"[\\u003e
36
- \ ] 1.057 MB/94.86 MB 1m10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":94863360,\"start\":1396546215},\"progress\":\"[\\u003e
37
- \ ] 1.585 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=\\u003e
38
- \ ] 2.114 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=\\u003e
39
- \ ] 2.642 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=\\u003e
40
- \ ] 3.17 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=\\u003e
41
- \ ] 3.699 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==\\u003e
42
- \ ] 4.227 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==\\u003e
43
- \ ] 4.755 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==\\u003e
44
- \ ] 5.284 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===\\u003e
45
- \ ] 5.812 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===\\u003e
46
- \ ] 6.341 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===\\u003e
47
- \ ] 6.869 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===\\u003e
48
- \ ] 7.397 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====\\u003e
49
- \ ] 7.926 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====\\u003e
50
- \ ] 8.454 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====\\u003e
51
- \ ] 8.983 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====\\u003e
52
- \ ] 9.511 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====\\u003e
53
- \ ] 10.04 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====\\u003e
54
- \ ] 10.57 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====\\u003e
55
- \ ] 11.1 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======\\u003e
56
- \ ] 11.62 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======\\u003e
57
- \ ] 12.15 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======\\u003e
58
- \ ] 12.68 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======\\u003e
59
- \ ] 13.21 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======\\u003e
60
- \ ] 13.74 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======\\u003e
61
- \ ] 14.27 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======\\u003e
62
- \ ] 14.79 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========\\u003e
63
- \ ] 15.32 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========\\u003e
64
- \ ] 15.85 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========\\u003e
65
- \ ] 16.38 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========\\u003e
66
- \ ] 16.91 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========\\u003e
67
- \ ] 17.44 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========\\u003e
68
- \ ] 17.97 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========\\u003e
69
- \ ] 18.49 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========\\u003e
70
- \ ] 19.02 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========\\u003e
71
- \ ] 19.55 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========\\u003e
72
- \ ] 20.08 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========\\u003e
73
- \ ] 20.61 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========\\u003e
74
- \ ] 21.14 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========\\u003e
75
- \ ] 21.66 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========\\u003e
76
- \ ] 22.19 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========\\u003e
77
- \ ] 22.72 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============\\u003e
78
- \ ] 23.25 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============\\u003e
79
- \ ] 23.78 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============\\u003e
80
- \ ] 24.31 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============\\u003e
81
- \ ] 24.83 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============\\u003e
82
- \ ] 25.36 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============\\u003e
83
- \ ] 25.89 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============\\u003e
84
- \ ] 26.42 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============\\u003e
85
- \ ] 26.95 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============\\u003e
86
- \ ] 27.48 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============\\u003e
87
- \ ] 28 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============\\u003e
88
- \ ] 28.53 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============\\u003e
89
- \ ] 29.06 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============\\u003e
90
- \ ] 29.59 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============\\u003e
91
- \ ] 30.12 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================\\u003e
92
- \ ] 30.65 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================\\u003e
93
- \ ] 31.17 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================\\u003e
94
- \ ] 31.7 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================\\u003e
95
- \ ] 32.23 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================\\u003e
96
- \ ] 32.76 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================\\u003e
97
- \ ] 33.29 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================\\u003e
98
- \ ] 33.82 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================\\u003e
99
- \ ] 34.34 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================\\u003e
100
- \ ] 34.87 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================\\u003e
101
- \ ] 35.4 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================\\u003e
102
- \ ] 35.93 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================\\u003e
103
- \ ] 36.46 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================\\u003e
104
- \ ] 36.99 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================\\u003e
105
- \ ] 37.52 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================\\u003e
106
- \ ] 38.04 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================\\u003e
107
- \ ] 38.57 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================\\u003e
108
- \ ] 39.1 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================\\u003e
109
- \ ] 39.63 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================\\u003e
110
- \ ] 40.16 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================\\u003e
111
- \ ] 40.69 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================\\u003e
112
- \ ] 41.21 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================\\u003e
113
- \ ] 41.74 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================\\u003e
114
- \ ] 42.27 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================\\u003e
115
- \ ] 42.8 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================\\u003e
116
- \ ] 43.33 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================\\u003e
117
- \ ] 43.86 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44383585,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================\\u003e
118
- \ ] 44.38 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44908544,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================\\u003e
119
- \ ] 44.91 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45436928,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================\\u003e
120
- \ ] 45.44 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45965312,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================\\u003e
121
- \ ] 45.97 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46493696,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================\\u003e
122
- \ ] 46.49 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022080,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================\\u003e
123
- \ ] 47.02 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47550464,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================\\u003e
124
- \ ] 47.55 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48078848,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================\\u003e
125
- \ ] 48.08 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48607232,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================\\u003e
126
- \ ] 48.61 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49135616,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================\\u003e
127
- \ ] 49.14 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49664000,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================\\u003e
128
- \ ] 49.66 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50189521,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================\\u003e
129
- \ ] 50.19 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50716672,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================\\u003e
130
- \ ] 50.72 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51245056,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================\\u003e
131
- \ ] 51.25 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51769791,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================\\u003e
132
- \ ] 51.77 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52297728,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================\\u003e
133
- \ ] 52.3 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52826112,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================\\u003e
134
- \ ] 52.83 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53350594,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================\\u003e
135
- \ ] 53.35 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53878346,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================\\u003e
136
- \ ] 53.88 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54403072,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================\\u003e
137
- \ ] 54.4 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54931701,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================\\u003e
138
- \ ] 54.93 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55459840,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================\\u003e
139
- \ ] 55.46 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55988224,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================\\u003e
140
- \ ] 55.99 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56515076,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================\\u003e
141
- \ ] 56.52 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57041490,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================\\u003e
142
- \ ] 57.04 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57567530,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================\\u003e
143
- \ ] 57.57 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58097101,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================\\u003e
144
- \ ] 58.1 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58621952,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================\\u003e
145
- \ ] 58.62 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59150825,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================\\u003e
146
- \ ] 59.15 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59679759,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================\\u003e
147
- \ ] 59.68 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60206135,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================\\u003e
148
- \ ] 60.21 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60731390,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================\\u003e
149
- \ ] 60.73 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61256241,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================\\u003e
150
- \ ] 61.26 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61783624,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================\\u003e
151
- \ ] 61.78 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62308352,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================\\u003e
152
- \ ] 62.31 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62835962,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================\\u003e
153
- \ ] 62.84 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63365985,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================\\u003e
154
- \ ] 63.37 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63897600,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================\\u003e
155
- \ ] 63.9 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64425984,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================\\u003e
156
- \ ] 64.43 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64951547,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================================\\u003e
157
- \ ] 64.95 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65477287,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================================\\u003e
158
- \ ] 65.48 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66002838,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================================\\u003e
159
- \ ] 66 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66527232,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================================\\u003e
160
- \ ] 66.53 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67058428,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================================\\u003e
161
- \ ] 67.06 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67585551,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================================\\u003e
162
- \ ] 67.59 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68113131,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================================\\u003e
163
- \ ] 68.11 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68639112,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================================\\u003e
164
- \ ] 68.64 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69167384,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================================\\u003e
165
- \ ] 69.17 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69692312,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================================\\u003e
166
- \ ] 69.69 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70218071,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================================\\u003e
167
- \ ] 70.22 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70743386,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================================\\u003e
168
- \ ] 70.74 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71270400,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================================\\u003e
169
- \ ] 71.27 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71798784,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================================\\u003e
170
- \ ] 71.8 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72324928,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================================\\u003e
171
- \ ] 72.32 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72851258,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================================\\u003e
172
- \ ] 72.85 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73375744,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================================\\u003e
173
- \ ] 73.38 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73904091,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================================\\u003e
174
- \ ] 73.9 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74428416,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================================\\u003e
175
- \ ] 74.43 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74952715,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================================\\u003e
176
- \ ] 74.95 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75478532,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================================\\u003e
177
- \ ] 75.48 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76006647,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================================\\u003e
178
- \ ] 76.01 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76533760,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================================\\u003e
179
- \ ] 76.53 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77067779,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================================\\u003e
180
- \ ] 77.07 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77594624,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================================\\u003e
181
- \ ] 77.59 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78124063,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================================\\u003e
182
- \ ] 78.12 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78651392,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================================\\u003e
183
- \ ] 78.65 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79184834,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================================\\u003e
184
- \ ] 79.18 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79711231,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================================\\u003e
185
- \ ] 79.71 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80239069,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================================\\u003e
186
- \ ] 80.24 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80764928,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================================\\u003e
187
- \ ] 80.76 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81290784,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================================\\u003e
188
- \ ] 81.29 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81819342,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================================\\u003e
189
- \ ] 81.82 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82344206,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================================\\u003e
190
- \ ] 82.34 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82869115,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================================\\u003e
191
- \ ] 82.87 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83393910,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================================\\u003e
192
- \ ] 83.39 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83918848,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================================\\u003e
193
- \ ] 83.92 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84447232,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================================\\u003e
194
- \ ] 84.45 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84975616,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================================\\u003e
195
- \ ] 84.98 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85506859,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================================\\u003e
196
- \ ] 85.51 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86032106,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================================\\u003e
197
- \ ] 86.03 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86559316,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================================\\u003e
198
- \ ] 86.56 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87086158,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================================\\u003e
199
- \ ] 87.09 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87612662,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================================\\u003e
200
- \ ] 87.61 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88138808,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================================\\u003e
201
- \ ] 88.14 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88666236,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================================\\u003e
202
- \ ] 88.67 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89191986,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================================\\u003e
203
- \ ] 89.19 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89718784,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================================\\u003e
204
- \ ] 89.72 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90247168,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================================\\u003e
205
- \ ] 90.25 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90775552,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================================\\u003e
206
- \ ] 90.78 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91307188,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================================\\u003e
207
- \ ] 91.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91833442,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================================\\u003e
208
- \ ] 91.83 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92360704,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================================\\u003e
209
- \ ] 92.36 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92889088,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================================\\u003e
210
- \ ] 92.89 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93419433,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================================\\u003e
211
- ] 93.42 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93945856,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================================\\u003e
212
- ] 93.95 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94474240,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================================\\u003e
213
- ] 94.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
214
- metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
215
- fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4106,\"total\":10240,\"start\":1396546227},\"progress\":\"[====================\\u003e
216
- \ ] 4.106 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
32
+ dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
33
+ complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Download
217
34
  complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
218
35
  complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
219
36
  http_version:
220
- recorded_at: Thu, 03 Apr 2014 17:30:27 GMT
37
+ recorded_at: Fri, 06 Jun 2014 14:19:11 GMT
221
38
  - request:
222
39
  method: post
223
- uri: unix:///var/run/docker.sock/v1.10/containers/create
40
+ uri: unix:///var/run/docker.sock/v1.11/containers/create
224
41
  body:
225
42
  encoding: UTF-8
226
- string: "{\"Image\":\"b750fe79269d\",\"Cmd\":[\"true\"]}"
43
+ string: '{"Image":"b750fe79269d","Cmd":["true"]}'
227
44
  headers:
228
45
  User-Agent:
229
- - Swipely/Docker-API 1.10.4
46
+ - Swipely/Docker-API 1.11.1
230
47
  Content-Type:
231
48
  - application/json
232
49
  response:
@@ -237,7 +54,7 @@ http_interactions:
237
54
  Content-Type:
238
55
  - application/json
239
56
  Date:
240
- - Thu, 03 Apr 2014 17:30:28 GMT
57
+ - Fri, 06 Jun 2014 14:19:11 GMT
241
58
  Content-Length:
242
59
  - '90'
243
60
  Connection:
@@ -245,18 +62,18 @@ http_interactions:
245
62
  body:
246
63
  encoding: UTF-8
247
64
  string: |
248
- {"Id":"0feaadf0610553fc2e3a8722d7e1bd6eb94819891626694768a700a15a3302b5","Warnings":null}
65
+ {"Id":"bc66a418370f1af5e34c2ee51420df09e7101dc6d6427be84e1cbf440ddf65ba","Warnings":null}
249
66
  http_version:
250
- recorded_at: Thu, 03 Apr 2014 17:30:28 GMT
67
+ recorded_at: Fri, 06 Jun 2014 14:19:11 GMT
251
68
  - request:
252
69
  method: post
253
- uri: unix:///var/run/docker.sock/v1.10/containers/0feaadf0610553fc2e3a8722d7e1bd6eb94819891626694768a700a15a3302b5/start
70
+ uri: unix:///var/run/docker.sock/v1.11/containers/bc66a418370f1af5e34c2ee51420df09e7101dc6d6427be84e1cbf440ddf65ba/start
254
71
  body:
255
72
  encoding: UTF-8
256
- string: "{}"
73
+ string: '{}'
257
74
  headers:
258
75
  User-Agent:
259
- - Swipely/Docker-API 1.10.4
76
+ - Swipely/Docker-API 1.11.1
260
77
  Content-Type:
261
78
  - application/json
262
79
  response:
@@ -265,7 +82,7 @@ http_interactions:
265
82
  message:
266
83
  headers:
267
84
  Date:
268
- - Thu, 03 Apr 2014 17:30:28 GMT
85
+ - Fri, 06 Jun 2014 14:19:11 GMT
269
86
  Content-Length:
270
87
  - '0'
271
88
  Content-Type:
@@ -276,16 +93,16 @@ http_interactions:
276
93
  encoding: UTF-8
277
94
  string: ''
278
95
  http_version:
279
- recorded_at: Thu, 03 Apr 2014 17:30:28 GMT
96
+ recorded_at: Fri, 06 Jun 2014 14:19:11 GMT
280
97
  - request:
281
98
  method: post
282
- uri: unix:///var/run/docker.sock/v1.10/commit?container=0feaadf0&repo=nahiluhmot%2Fbase2
99
+ uri: unix:///var/run/docker.sock/v1.11/commit?container=bc66a418&repo=nahiluhmot%2Fbase2
283
100
  body:
284
101
  encoding: UTF-8
285
102
  string: 'null'
286
103
  headers:
287
104
  User-Agent:
288
- - Swipely/Docker-API 1.10.4
105
+ - Swipely/Docker-API 1.11.1
289
106
  Content-Type:
290
107
  - application/json
291
108
  response:
@@ -296,7 +113,7 @@ http_interactions:
296
113
  Content-Type:
297
114
  - application/json
298
115
  Date:
299
- - Thu, 03 Apr 2014 17:30:29 GMT
116
+ - Fri, 06 Jun 2014 14:19:12 GMT
300
117
  Content-Length:
301
118
  - '74'
302
119
  Connection:
@@ -304,18 +121,18 @@ http_interactions:
304
121
  body:
305
122
  encoding: UTF-8
306
123
  string: |
307
- {"Id":"e17239b6812f944eac6c39602add2c34c86dce8310ae4cb5d00c42ad95b2c97c"}
124
+ {"Id":"290862faa17c00bf915019465c9dfda1b457bb1bc46bf73b2bf68700c0f0e6b6"}
308
125
  http_version:
309
- recorded_at: Thu, 03 Apr 2014 17:30:29 GMT
126
+ recorded_at: Fri, 06 Jun 2014 14:19:12 GMT
310
127
  - request:
311
128
  method: get
312
- uri: unix:///var/run/docker.sock/v1.10/images/json?all=true
129
+ uri: unix:///var/run/docker.sock/v1.11/images/json?all=true
313
130
  body:
314
131
  encoding: US-ASCII
315
132
  string: ''
316
133
  headers:
317
134
  User-Agent:
318
- - Swipely/Docker-API 1.10.4
135
+ - Swipely/Docker-API 1.11.1
319
136
  Content-Type:
320
137
  - text/plain
321
138
  response:
@@ -326,7 +143,7 @@ http_interactions:
326
143
  Content-Type:
327
144
  - application/json
328
145
  Date:
329
- - Thu, 03 Apr 2014 17:30:29 GMT
146
+ - Fri, 06 Jun 2014 14:19:12 GMT
330
147
  Connection:
331
148
  - close
332
149
  Transfer-Encoding:
@@ -334,34 +151,57 @@ http_interactions:
334
151
  body:
335
152
  encoding: UTF-8
336
153
  string: |-
337
- [{"Created":1396546228,"Id":"e17239b6812f944eac6c39602add2c34c86dce8310ae4cb5d00c42ad95b2c97c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["nahiluhmot/base2:latest"],"Size":8,"VirtualSize":175307043}
338
- ,{"Created":1396386930,"Id":"6f1eaf7dab5f69cf7e1d5df9d7006b68e936236b9d108411693e0a1ad65a7cec","ParentId":"c971801055ecdb68e13f7339ffc805cbdfa5003be8ff718d78cf252b9f959f17","RepoTags":["localhost:5000/registry:test","registry:latest"],"Size":0,"VirtualSize":431911044}
339
- ,{"Created":1396386930,"Id":"c971801055ecdb68e13f7339ffc805cbdfa5003be8ff718d78cf252b9f959f17","ParentId":"b978d5f1bee6a1d0b6ae42de799a69e383bc7478760bc189339bb0b307220815","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":431911044}
340
- ,{"Created":1396386929,"Id":"b978d5f1bee6a1d0b6ae42de799a69e383bc7478760bc189339bb0b307220815","ParentId":"065bebc19274389b954355c82e27cd7367da25488aa5410fc9baa7a668d40afd","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":3481,"VirtualSize":431911044}
341
- ,{"Created":1396386929,"Id":"065bebc19274389b954355c82e27cd7367da25488aa5410fc9baa7a668d40afd","ParentId":"17e14c6a562c42b52042aa44c0bea455c709ae85eb1668528c3f4b4fd864cb3a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":431907563}
342
- ,{"Created":1396386928,"Id":"17e14c6a562c42b52042aa44c0bea455c709ae85eb1668528c3f4b4fd864cb3a","ParentId":"fe2cc747ebd5fe188d4e8cf354f8d1f6b961037596f72c972838ce4c886333d5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1031345,"VirtualSize":431907490}
343
- ,{"Created":1396386926,"Id":"fe2cc747ebd5fe188d4e8cf354f8d1f6b961037596f72c972838ce4c886333d5","ParentId":"938d785759c11eb68d0cd4980a8b3a698352999a4cc0d4658032ca05d8fe8dc6","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":22183546,"VirtualSize":430876145}
344
- ,{"Created":1396386882,"Id":"938d785759c11eb68d0cd4980a8b3a698352999a4cc0d4658032ca05d8fe8dc6","ParentId":"269a748040681d556db09b3f223a1c3ec249c7e84d1335afbad59b113af96473","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":278,"VirtualSize":408692599}
345
- ,{"Created":1396386881,"Id":"269a748040681d556db09b3f223a1c3ec249c7e84d1335afbad59b113af96473","ParentId":"585793f5271697c3d299be3957a1b635a3ae2eb0d216bf7ee3d7a5f306a3047b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7725479,"VirtualSize":408692321}
346
- ,{"Created":1396386875,"Id":"585793f5271697c3d299be3957a1b635a3ae2eb0d216bf7ee3d7a5f306a3047b","ParentId":"3110c02964bbd7db22c60153e7fcfb6c7df4777be5d02dbbcf4169efe36c8b94","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":10401,"VirtualSize":400966842}
347
- ,{"Created":1396386866,"Id":"3110c02964bbd7db22c60153e7fcfb6c7df4777be5d02dbbcf4169efe36c8b94","ParentId":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":230763602,"VirtualSize":400956441}
348
- ,{"Created":1391448539,"Id":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","ParentId":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":170192839,"VirtualSize":170192839}
349
- ,{"Created":1391448529,"Id":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
154
+ [{"Created":1402064352,"Id":"290862faa17c00bf915019465c9dfda1b457bb1bc46bf73b2bf68700c0f0e6b6","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["nahiluhmot/base2:latest"],"Size":0,"VirtualSize":175307035}
155
+ ,{"Created":1402064348,"Id":"0c9f927adc679f6fbd0110964794ef738aa08cb4db0f075fad2acd653122388b","ParentId":"708490cac0704e379441ae10de3b8d2aab57b17bcde0efac7bd96edac7a0ca73","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
156
+ ,{"Created":1402064345,"Id":"0d502ddcccd3c4a20c7af437aff635b175ca49ff1e08e913108d558b8b9d4043","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":29475,"VirtualSize":175336510}
157
+ ,{"Created":1402064342,"Id":"708490cac0704e379441ae10de3b8d2aab57b17bcde0efac7bd96edac7a0ca73","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
158
+ ,{"Created":1402064098,"Id":"0623b97810b4a0f42bc669f585304ec4bf2479c2e2a6c5a0d382256bc88caed6","ParentId":"983e8493b5049f430898150891dff158ebc71130e6be73ef49d8434f7021daef","RepoTags":["docker:master"],"Size":40861893,"VirtualSize":1380220597}
159
+ ,{"Created":1402064068,"Id":"845bd9d827b413c5b8d9e546ed32aa04eaa837daaab793440c2749799d634133","ParentId":"983e8493b5049f430898150891dff158ebc71130e6be73ef49d8434f7021daef","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":40861893,"VirtualSize":1380220597}
160
+ ,{"Created":1402064057,"Id":"983e8493b5049f430898150891dff158ebc71130e6be73ef49d8434f7021daef","ParentId":"84dcdd107c42db76cf9c19ec17657415bbf412cd634732cc034f1a87a4cbc49b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":1339358704}
161
+ ,{"Created":1402064047,"Id":"84dcdd107c42db76cf9c19ec17657415bbf412cd634732cc034f1a87a4cbc49b","ParentId":"250c02f817e5230e604b105c2c015af591777636e35193ab3702b8ec2c458dbe","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":1339358704}
162
+ ,{"Created":1402064036,"Id":"250c02f817e5230e604b105c2c015af591777636e35193ab3702b8ec2c458dbe","ParentId":"d41290b173c8c94578cf36e71764575cf9d04c1fb78b35ba7bd004f95d9c1946","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":1339358704}
163
+ ,{"Created":1402064026,"Id":"d41290b173c8c94578cf36e71764575cf9d04c1fb78b35ba7bd004f95d9c1946","ParentId":"5563ce4a3c8109241555d52ae8a9f0330e481a38f56bfb8ed64759af09e378ca","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":1339358704}
164
+ ,{"Created":1402064017,"Id":"5563ce4a3c8109241555d52ae8a9f0330e481a38f56bfb8ed64759af09e378ca","ParentId":"2f269c3d4f89de66b30f237c4d63ad915f628e46db2d367c3d38cfc1496c744a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":331747,"VirtualSize":1339358704}
165
+ ,{"Created":1402064006,"Id":"2f269c3d4f89de66b30f237c4d63ad915f628e46db2d367c3d38cfc1496c744a","ParentId":"3a393c0e0e4666785163526e33c8008055de700d63411d3c2929a8b33757c162","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1967,"VirtualSize":1339026957}
166
+ ,{"Created":1402063996,"Id":"3a393c0e0e4666785163526e33c8008055de700d63411d3c2929a8b33757c162","ParentId":"0fbd72b27ad808329eedef131ec5f0da75094ecb43f00ad26a319695d5cd0815","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":41,"VirtualSize":1339024990}
167
+ ,{"Created":1402063985,"Id":"0fbd72b27ad808329eedef131ec5f0da75094ecb43f00ad26a319695d5cd0815","ParentId":"3279d82c70af04c80e76a562624d7e5f31bbcc4876c1493e24abc50c6025dba7","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":64,"VirtualSize":1339024949}
168
+ ,{"Created":1402063973,"Id":"3279d82c70af04c80e76a562624d7e5f31bbcc4876c1493e24abc50c6025dba7","ParentId":"2bca8812b4e4efde6ea94072f3d1118e4e29d951ff8070fff7809858e6477296","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20212469,"VirtualSize":1339024885}
169
+ ,{"Created":1402063957,"Id":"2bca8812b4e4efde6ea94072f3d1118e4e29d951ff8070fff7809858e6477296","ParentId":"685c28d0a144858b01b785551ae83d9b8481ae8fdede0c7589e375abb56443bf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":21636011,"VirtualSize":1318812416}
170
+ ,{"Created":1402063911,"Id":"685c28d0a144858b01b785551ae83d9b8481ae8fdede0c7589e375abb56443bf","ParentId":"e5200c54b5513114547fd090b8584a437548e17dcefa7efe3c9422fba58ee3bf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":15570763,"VirtualSize":1297176405}
171
+ ,{"Created":1402063882,"Id":"e5200c54b5513114547fd090b8584a437548e17dcefa7efe3c9422fba58ee3bf","ParentId":"8f8b13e84ea16982b608d6bac3ace308ea67f0afcaf593be6f1f14b60369f2d2","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":598231944,"VirtualSize":1281605642}
172
+ ,{"Created":1402063701,"Id":"8f8b13e84ea16982b608d6bac3ace308ea67f0afcaf593be6f1f14b60369f2d2","ParentId":"898cec92295539afc540b9b443871db6c15427332bcf45095a5a4480d86d334e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":683373698}
173
+ ,{"Created":1402063692,"Id":"898cec92295539afc540b9b443871db6c15427332bcf45095a5a4480d86d334e","ParentId":"3b4da21dcfdabf5b8807d0f9536ab7fd569da57c7d407ac9984edbc5c07e27b4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":683373698}
174
+ ,{"Created":1402063681,"Id":"3b4da21dcfdabf5b8807d0f9536ab7fd569da57c7d407ac9984edbc5c07e27b4","ParentId":"b7935708574a702181eea8b0dd79a450f1df2e4b993c47917af7c14d44c4249b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":84281667,"VirtualSize":683373698}
175
+ ,{"Created":1402063643,"Id":"b7935708574a702181eea8b0dd79a450f1df2e4b993c47917af7c14d44c4249b","ParentId":"0cb833ca922efa51f52060ad4e440c18177cd071e69afad4b738896d638e67e2","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":599092031}
176
+ ,{"Created":1402063635,"Id":"0cb833ca922efa51f52060ad4e440c18177cd071e69afad4b738896d638e67e2","ParentId":"74ee3f0f2475b3559ee550f16166df3965b48ce52413e358dd00ac0e3fea7a20","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":599092031}
177
+ ,{"Created":1402063626,"Id":"74ee3f0f2475b3559ee550f16166df3965b48ce52413e358dd00ac0e3fea7a20","ParentId":"27228f9c01b5aa281020a6db863559e36720215d57f99b1f7b831868c165aa17","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":35321472,"VirtualSize":599092031}
178
+ ,{"Created":1402063610,"Id":"27228f9c01b5aa281020a6db863559e36720215d57f99b1f7b831868c165aa17","ParentId":"f2d4c43b5e61601a4e78d839e8798ef084494febb4340512705da04fa3c36add","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":5001031,"VirtualSize":563770559}
179
+ ,{"Created":1402063578,"Id":"f2d4c43b5e61601a4e78d839e8798ef084494febb4340512705da04fa3c36add","ParentId":"5a57ff6e691a0ca69a3a5085ce119120d46619afcca181c81af70614d4a0f575","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":18615918,"VirtualSize":558769528}
180
+ ,{"Created":1402063545,"Id":"5a57ff6e691a0ca69a3a5085ce119120d46619afcca181c81af70614d4a0f575","ParentId":"8b90b06f92a50404b9ac1ae3b3a9ddfa6d72d9497d72648ad41537d574ac6128","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":264800723,"VirtualSize":540153610}
181
+ ,{"Created":1402063380,"Id":"8b90b06f92a50404b9ac1ae3b3a9ddfa6d72d9497d72648ad41537d574ac6128","ParentId":"ad892dd21d607a1458a722598a2e4d93015c4507abcd0ebfc16a43d4d1b41520","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":275352887}
182
+ ,{"Created":1402061818,"Id":"533a0267fec78da1e15f091420d9a25c16bfee2a2d9f55ae59d52bc8634a9939","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
183
+ ,{"Created":1402061816,"Id":"7364e1f83f7b954283072e0bf10b43b92c992940ae639cf71a74e31f4a93e75f","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
184
+ ,{"Created":1402061797,"Id":"5964d75bfbd207cbd3c95b140859737e1dceb77c3f60b2984927fc3f4b85bc48","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":35,"VirtualSize":175307070}
185
+ ,{"Created":141992996,"Id":"cd20e353a62d370114744e8e219cce59098f419e022c7de64df47ff43ba88216","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
186
+ ,{"Created":1401930591,"Id":"ad892dd21d607a1458a722598a2e4d93015c4507abcd0ebfc16a43d4d1b41520","ParentId":"9db365ecbcbbb20e063eac70842c53e27fcad0e213f9d4ddb78152339cedd3b1","RepoTags":["ubuntu:14.04"],"Size":82679079,"VirtualSize":275352887}
187
+ ,{"Created":1401930565,"Id":"9db365ecbcbbb20e063eac70842c53e27fcad0e213f9d4ddb78152339cedd3b1","ParentId":"23f361102fae912c44247cd8bcc1a1640292a20d4a4953358b86f74228430711","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1903,"VirtualSize":192673808}
188
+ ,{"Created":1401930564,"Id":"23f361102fae912c44247cd8bcc1a1640292a20d4a4953358b86f74228430711","ParentId":"e465fff03bce5ff2bf82513e5e489adbd3899b9f56bd2c7addd3d3cc3e64f63b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194463,"VirtualSize":192671905}
189
+ ,{"Created":1401930557,"Id":"e465fff03bce5ff2bf82513e5e489adbd3899b9f56bd2c7addd3d3cc3e64f63b","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192477442,"VirtualSize":192477442}
350
190
  ,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
351
191
  ,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
352
192
  ,{"Created":1364068391,"Id":"27cf784147099545","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":175306958,"VirtualSize":175306958}
353
193
  ]
354
194
  http_version:
355
- recorded_at: Thu, 03 Apr 2014 17:30:29 GMT
195
+ recorded_at: Fri, 06 Jun 2014 14:19:12 GMT
356
196
  - request:
357
197
  method: post
358
- uri: unix:///var/run/docker.sock/v1.10/images/nahiluhmot/base2/push?tag=latest
198
+ uri: unix:///var/run/docker.sock/v1.11/images/nahiluhmot/base2/push?tag=latest
359
199
  body:
360
200
  encoding: US-ASCII
361
201
  string: ''
362
202
  headers:
363
203
  User-Agent:
364
- - Swipely/Docker-API 1.10.4
204
+ - Swipely/Docker-API 1.11.1
365
205
  Content-Type:
366
206
  - text/plain
367
207
  X-Registry-Auth:
@@ -376,7 +216,7 @@ http_interactions:
376
216
  Content-Type:
377
217
  - application/json
378
218
  Date:
379
- - Thu, 03 Apr 2014 17:30:29 GMT
219
+ - Fri, 06 Jun 2014 14:19:12 GMT
380
220
  Connection:
381
221
  - close
382
222
  Transfer-Encoding:
@@ -388,5 +228,5 @@ http_interactions:
388
228
  Status 401 trying to push repository nahiluhmot/base2: \"},\"error\":\"Error:
389
229
  Status 401 trying to push repository nahiluhmot/base2: \"}\r\n"
390
230
  http_version:
391
- recorded_at: Thu, 03 Apr 2014 17:30:29 GMT
392
- recorded_with: VCR 2.8.0
231
+ recorded_at: Fri, 06 Jun 2014 14:19:13 GMT
232
+ recorded_with: VCR 2.9.2