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,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=registry&tag=latest
5
+ uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=registry&tag=latest
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:29:48 GMT
22
+ - Thu, 26 Jun 2014 19:00:14 GMT
23
23
  Connection:
24
24
  - close
25
25
  Transfer-Encoding:
@@ -27,34 +27,39 @@ http_interactions:
27
27
  body:
28
28
  encoding: UTF-8
29
29
  string: "{\"status\":\"Pulling repository registry\"}\r\n{\"status\":\"Pulling
30
- image (latest) from registry\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}{\"status\":\"Pulling
31
- image (latest) from registry, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}{\"status\":\"Pulling
32
- dependent layers\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}{\"status\":\"Download
30
+ image (latest) from registry\",\"progressDetail\":{},\"id\":\"6e526128fd5b\"}{\"status\":\"Pulling
31
+ image (latest) from registry, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"6e526128fd5b\"}{\"status\":\"Pulling
32
+ dependent layers\",\"progressDetail\":{},\"id\":\"6e526128fd5b\"}{\"status\":\"Download
33
33
  complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
34
- complete\",\"progressDetail\":{},\"id\":\"f323cf34fd77\"}{\"status\":\"Download
35
- complete\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Download
36
- complete\",\"progressDetail\":{},\"id\":\"3110c02964bb\"}{\"status\":\"Download
37
- complete\",\"progressDetail\":{},\"id\":\"585793f52716\"}{\"status\":\"Download
38
- complete\",\"progressDetail\":{},\"id\":\"269a74804068\"}{\"status\":\"Download
39
- complete\",\"progressDetail\":{},\"id\":\"938d785759c1\"}{\"status\":\"Download
40
- complete\",\"progressDetail\":{},\"id\":\"fe2cc747ebd5\"}{\"status\":\"Download
41
- complete\",\"progressDetail\":{},\"id\":\"17e14c6a562c\"}{\"status\":\"Download
42
- complete\",\"progressDetail\":{},\"id\":\"065bebc19274\"}{\"status\":\"Download
43
- complete\",\"progressDetail\":{},\"id\":\"b978d5f1bee6\"}{\"status\":\"Download
44
- complete\",\"progressDetail\":{},\"id\":\"c971801055ec\"}{\"status\":\"Download
45
- complete\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}{\"status\":\"Download
46
- complete\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}"
34
+ complete\",\"progressDetail\":{},\"id\":\"55589ce0cce0\"}{\"status\":\"Download
35
+ complete\",\"progressDetail\":{},\"id\":\"7ffd65ea5c7e\"}{\"status\":\"Download
36
+ complete\",\"progressDetail\":{},\"id\":\"2d8332c7750a\"}{\"status\":\"Download
37
+ complete\",\"progressDetail\":{},\"id\":\"f5e98cd079d1\"}{\"status\":\"Download
38
+ complete\",\"progressDetail\":{},\"id\":\"8550586362b5\"}{\"status\":\"Download
39
+ complete\",\"progressDetail\":{},\"id\":\"3d824df8820f\"}{\"status\":\"Download
40
+ complete\",\"progressDetail\":{},\"id\":\"097a63d9bb5e\"}{\"status\":\"Download
41
+ complete\",\"progressDetail\":{},\"id\":\"075ad3dc90c2\"}{\"status\":\"Download
42
+ complete\",\"progressDetail\":{},\"id\":\"8bb0ed3a4874\"}{\"status\":\"Download
43
+ complete\",\"progressDetail\":{},\"id\":\"1f1f6dc3ed45\"}{\"status\":\"Download
44
+ complete\",\"progressDetail\":{},\"id\":\"bc066c5826ea\"}{\"status\":\"Download
45
+ complete\",\"progressDetail\":{},\"id\":\"40c4afa62604\"}{\"status\":\"Download
46
+ complete\",\"progressDetail\":{},\"id\":\"b34ed9c2158c\"}{\"status\":\"Download
47
+ complete\",\"progressDetail\":{},\"id\":\"ca5d645dac85\"}{\"status\":\"Download
48
+ complete\",\"progressDetail\":{},\"id\":\"d39dfd06bae1\"}{\"status\":\"Download
49
+ complete\",\"progressDetail\":{},\"id\":\"14faab53c729\"}{\"status\":\"Download
50
+ complete\",\"progressDetail\":{},\"id\":\"6e526128fd5b\"}{\"status\":\"Download
51
+ complete\",\"progressDetail\":{},\"id\":\"6e526128fd5b\"}"
47
52
  http_version:
48
- recorded_at: Thu, 03 Apr 2014 17:29:49 GMT
53
+ recorded_at: Thu, 26 Jun 2014 19:00:16 GMT
49
54
  - request:
50
55
  method: post
51
- uri: unix:///var/run/docker.sock/v1.10/images/6f1eaf7dab5f/tag?repo=localhost%3A5000%2Fregistry&tag=test
56
+ uri: unix:///var/run/docker.sock/v1.11/images/6e526128fd5b/tag?repo=localhost%3A5000%2Fregistry&tag=test
52
57
  body:
53
58
  encoding: US-ASCII
54
59
  string: ''
55
60
  headers:
56
61
  User-Agent:
57
- - Swipely/Docker-API 1.10.4
62
+ - Swipely/Docker-API 1.11.1
58
63
  Content-Type:
59
64
  - text/plain
60
65
  response:
@@ -63,7 +68,7 @@ http_interactions:
63
68
  message:
64
69
  headers:
65
70
  Date:
66
- - Thu, 03 Apr 2014 17:29:49 GMT
71
+ - Thu, 26 Jun 2014 19:00:16 GMT
67
72
  Content-Length:
68
73
  - '0'
69
74
  Content-Type:
@@ -74,16 +79,16 @@ http_interactions:
74
79
  encoding: UTF-8
75
80
  string: ''
76
81
  http_version:
77
- recorded_at: Thu, 03 Apr 2014 17:29:49 GMT
82
+ recorded_at: Thu, 26 Jun 2014 19:00:16 GMT
78
83
  - request:
79
84
  method: post
80
- uri: unix:///var/run/docker.sock/v1.10/images/localhost:5000/registry/push?tag=test
85
+ uri: unix:///var/run/docker.sock/v1.11/images/localhost:5000/registry/push?tag=test
81
86
  body:
82
87
  encoding: US-ASCII
83
88
  string: ''
84
89
  headers:
85
90
  User-Agent:
86
- - Swipely/Docker-API 1.10.4
91
+ - Swipely/Docker-API 1.11.1
87
92
  Content-Type:
88
93
  - text/plain
89
94
  X-Registry-Auth:
@@ -98,27 +103,40 @@ http_interactions:
98
103
  Content-Type:
99
104
  - application/json
100
105
  Date:
101
- - Thu, 03 Apr 2014 17:29:51 GMT
106
+ - Thu, 26 Jun 2014 19:00:18 GMT
102
107
  Connection:
103
108
  - close
104
109
  Transfer-Encoding:
105
110
  - ''
106
111
  body:
107
112
  encoding: UTF-8
108
- string: "{\"status\":\"The push refers to a repository [localhost:5000/registry]
109
- (len: 1)\"}\r\n{\"status\":\"Sending image list\"}\r\n{\"status\":\"Pushing
110
- repository localhost:5000/registry (1 tags)\"}\r\n{\"status\":\"Image 511136ea3c5a
111
- already pushed, skipping\"}\r\n{\"status\":\"Image f323cf34fd77 already pushed,
112
- skipping\"}\r\n{\"status\":\"Image eb601b8965b8 already pushed, skipping\"}\r\n{\"status\":\"Image
113
- 3110c02964bb already pushed, skipping\"}\r\n{\"status\":\"Image 585793f52716
114
- already pushed, skipping\"}\r\n{\"status\":\"Image 269a74804068 already pushed,
115
- skipping\"}\r\n{\"status\":\"Image 938d785759c1 already pushed, skipping\"}\r\n{\"status\":\"Image
116
- fe2cc747ebd5 already pushed, skipping\"}\r\n{\"status\":\"Image 17e14c6a562c
117
- already pushed, skipping\"}\r\n{\"status\":\"Image 065bebc19274 already pushed,
118
- skipping\"}\r\n{\"status\":\"Image b978d5f1bee6 already pushed, skipping\"}\r\n{\"status\":\"Image
119
- c971801055ec already pushed, skipping\"}\r\n{\"status\":\"Image 6f1eaf7dab5f
120
- already pushed, skipping\"}\r\n{\"status\":\"Pushing tag for rev [6f1eaf7dab5f]
121
- on {http://localhost:5000/v1/repositories/registry/tags/test}\"}\r\n"
113
+ string: "{\"status\":\"Image successfully
114
+ pushed\",\"progressDetail\":{},\"id\":\"b34ed9c2158c\"}{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"ca5d645dac85\"}{\"status\":\"Buffering
115
+ to disk\",\"progressDetail\":{\"current\":1024,\"start\":1403809302},\"progress\":\"1.024
116
+ kB\",\"id\":\"ca5d645dac85\"}{\"status\":\"Buffering to disk\",\"progressDetail\":{\"start\":1403809302},\"id\":\"ca5d645dac85\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1024,\"start\":1403809302},\"progress\":\"[=========================\\u003e
117
+ \ ] 512 B/1.024 kB 0\",\"id\":\"ca5d645dac85\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1403809302},\"progress\":\"[==================================================\\u003e]
118
+ 1.024 kB/1.024 kB\",\"id\":\"ca5d645dac85\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1403809302},\"progress\":\"[==================================================\\u003e]
119
+ 1.024 kB/1.024 kB\",\"id\":\"ca5d645dac85\"}{\"status\":\"Image successfully
120
+ pushed\",\"progressDetail\":{},\"id\":\"ca5d645dac85\"}{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"d39dfd06bae1\"}{\"status\":\"Buffering
121
+ to disk\",\"progressDetail\":{\"current\":1024,\"start\":1403809303},\"progress\":\"1.024
122
+ kB\",\"id\":\"d39dfd06bae1\"}{\"status\":\"Buffering to disk\",\"progressDetail\":{\"start\":1403809303},\"id\":\"d39dfd06bae1\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1024,\"start\":1403809303},\"progress\":\"[=========================\\u003e
123
+ \ ] 512 B/1.024 kB 0\",\"id\":\"d39dfd06bae1\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1403809303},\"progress\":\"[==================================================\\u003e]
124
+ 1.024 kB/1.024 kB\",\"id\":\"d39dfd06bae1\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1403809303},\"progress\":\"[==================================================\\u003e]
125
+ 1.024 kB/1.024 kB\",\"id\":\"d39dfd06bae1\"}{\"status\":\"Image successfully
126
+ pushed\",\"progressDetail\":{},\"id\":\"d39dfd06bae1\"}{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"14faab53c729\"}{\"status\":\"Buffering
127
+ to disk\",\"progressDetail\":{\"current\":1024,\"start\":1403809305},\"progress\":\"1.024
128
+ kB\",\"id\":\"14faab53c729\"}{\"status\":\"Buffering to disk\",\"progressDetail\":{\"start\":1403809305},\"id\":\"14faab53c729\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1024,\"start\":1403809305},\"progress\":\"[=========================\\u003e
129
+ \ ] 512 B/1.024 kB 0\",\"id\":\"14faab53c729\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1403809305},\"progress\":\"[==================================================\\u003e]
130
+ 1.024 kB/1.024 kB\",\"id\":\"14faab53c729\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1403809305},\"progress\":\"[==================================================\\u003e]
131
+ 1.024 kB/1.024 kB\",\"id\":\"14faab53c729\"}{\"status\":\"Image successfully
132
+ pushed\",\"progressDetail\":{},\"id\":\"14faab53c729\"}{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"6e526128fd5b\"}{\"status\":\"Buffering
133
+ to disk\",\"progressDetail\":{\"current\":1024,\"start\":1403809306},\"progress\":\"1.024
134
+ kB\",\"id\":\"6e526128fd5b\"}{\"status\":\"Buffering to disk\",\"progressDetail\":{\"start\":1403809306},\"id\":\"6e526128fd5b\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1024,\"start\":1403809306},\"progress\":\"[=========================\\u003e
135
+ \ ] 512 B/1.024 kB 0\",\"id\":\"6e526128fd5b\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1403809306},\"progress\":\"[==================================================\\u003e]
136
+ 1.024 kB/1.024 kB\",\"id\":\"6e526128fd5b\"}{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1403809306},\"progress\":\"[==================================================\\u003e]
137
+ 1.024 kB/1.024 kB\",\"id\":\"6e526128fd5b\"}{\"status\":\"Image successfully
138
+ pushed\",\"progressDetail\":{},\"id\":\"6e526128fd5b\"}{\"status\":\"Pushing
139
+ tag for rev [6e526128fd5b] on {http://localhost:5000/v1/repositories/registry/tags/test}\"}\r\n"
122
140
  http_version:
123
- recorded_at: Thu, 03 Apr 2014 17:29:51 GMT
124
- recorded_with: VCR 2.8.0
141
+ recorded_at: Thu, 26 Jun 2014 19:01:46 GMT
142
+ 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.0
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 20:07:33 GMT
22
+ - Fri, 06 Jun 2014 15:21:27 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\":1394654855},\"progress\":\"[\\u003e
35
- \ ] 528.4 kB/94.86 MB 1m56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":94863360,\"start\":1394654855},\"progress\":\"[\\u003e
36
- \ ] 1.057 MB/94.86 MB 1m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":94863360,\"start\":1394654855},\"progress\":\"[\\u003e
37
- \ ] 1.585 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=\\u003e
38
- \ ] 2.114 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=\\u003e
39
- \ ] 2.642 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=\\u003e
40
- \ ] 3.17 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=\\u003e
41
- \ ] 3.699 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==\\u003e
42
- \ ] 4.227 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==\\u003e
43
- \ ] 4.755 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==\\u003e
44
- \ ] 5.284 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===\\u003e
45
- \ ] 5.812 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===\\u003e
46
- \ ] 6.341 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===\\u003e
47
- \ ] 6.869 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===\\u003e
48
- \ ] 7.397 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====\\u003e
49
- \ ] 7.926 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====\\u003e
50
- \ ] 8.454 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====\\u003e
51
- \ ] 8.983 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====\\u003e
52
- \ ] 9.511 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====\\u003e
53
- \ ] 10.04 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====\\u003e
54
- \ ] 10.57 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====\\u003e
55
- \ ] 11.1 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======\\u003e
56
- \ ] 11.62 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======\\u003e
57
- \ ] 12.15 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======\\u003e
58
- \ ] 12.68 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======\\u003e
59
- \ ] 13.21 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======\\u003e
60
- \ ] 13.74 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======\\u003e
61
- \ ] 14.27 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======\\u003e
62
- \ ] 14.79 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========\\u003e
63
- \ ] 15.32 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========\\u003e
64
- \ ] 15.85 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========\\u003e
65
- \ ] 16.38 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========\\u003e
66
- \ ] 16.91 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========\\u003e
67
- \ ] 17.44 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========\\u003e
68
- \ ] 17.97 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========\\u003e
69
- \ ] 18.49 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========\\u003e
70
- \ ] 19.02 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========\\u003e
71
- \ ] 19.55 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========\\u003e
72
- \ ] 20.08 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========\\u003e
73
- \ ] 20.61 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========\\u003e
74
- \ ] 21.14 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========\\u003e
75
- \ ] 21.66 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========\\u003e
76
- \ ] 22.19 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========\\u003e
77
- \ ] 22.72 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============\\u003e
78
- \ ] 23.25 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============\\u003e
79
- \ ] 23.78 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============\\u003e
80
- \ ] 24.31 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============\\u003e
81
- \ ] 24.83 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============\\u003e
82
- \ ] 25.36 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============\\u003e
83
- \ ] 25.89 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============\\u003e
84
- \ ] 26.42 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============\\u003e
85
- \ ] 26.95 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============\\u003e
86
- \ ] 27.48 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============\\u003e
87
- \ ] 28 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============\\u003e
88
- \ ] 28.53 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============\\u003e
89
- \ ] 29.06 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============\\u003e
90
- \ ] 29.59 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============\\u003e
91
- \ ] 30.12 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================\\u003e
92
- \ ] 30.65 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================\\u003e
93
- \ ] 31.17 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================\\u003e
94
- \ ] 31.7 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================\\u003e
95
- \ ] 32.23 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================\\u003e
96
- \ ] 32.76 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================\\u003e
97
- \ ] 33.29 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================\\u003e
98
- \ ] 33.82 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==================\\u003e
99
- \ ] 34.34 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==================\\u003e
100
- \ ] 34.87 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==================\\u003e
101
- \ ] 35.4 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==================\\u003e
102
- \ ] 35.93 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===================\\u003e
103
- \ ] 36.46 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===================\\u003e
104
- \ ] 36.99 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===================\\u003e
105
- \ ] 37.52 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====================\\u003e
106
- \ ] 38.04 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====================\\u003e
107
- \ ] 38.57 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====================\\u003e
108
- \ ] 39.1 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====================\\u003e
109
- \ ] 39.63 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====================\\u003e
110
- \ ] 40.16 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====================\\u003e
111
- \ ] 40.69 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====================\\u003e
112
- \ ] 41.21 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======================\\u003e
113
- \ ] 41.74 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======================\\u003e
114
- \ ] 42.27 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======================\\u003e
115
- \ ] 42.8 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======================\\u003e
116
- \ ] 43.33 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======================\\u003e
117
- \ ] 43.86 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44383585,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======================\\u003e
118
- \ ] 44.38 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44908544,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======================\\u003e
119
- \ ] 44.91 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45436928,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======================\\u003e
120
- \ ] 45.44 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45965312,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========================\\u003e
121
- \ ] 45.97 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46493696,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========================\\u003e
122
- \ ] 46.49 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022080,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========================\\u003e
123
- \ ] 47.02 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47550464,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========================\\u003e
124
- \ ] 47.55 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48078848,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========================\\u003e
125
- \ ] 48.08 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48607232,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========================\\u003e
126
- \ ] 48.61 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49135616,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========================\\u003e
127
- \ ] 49.14 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49664000,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========================\\u003e
128
- \ ] 49.66 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50189521,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========================\\u003e
129
- \ ] 50.19 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50716672,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========================\\u003e
130
- \ ] 50.72 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51245056,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========================\\u003e
131
- \ ] 51.25 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51769791,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========================\\u003e
132
- \ ] 51.77 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52297728,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========================\\u003e
133
- \ ] 52.3 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52826112,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========================\\u003e
134
- \ ] 52.83 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53350594,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============================\\u003e
135
- \ ] 53.35 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53878346,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============================\\u003e
136
- \ ] 53.88 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54403072,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============================\\u003e
137
- \ ] 54.4 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54931701,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============================\\u003e
138
- \ ] 54.93 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55459840,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============================\\u003e
139
- \ ] 55.46 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55988224,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============================\\u003e
140
- \ ] 55.99 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56515076,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============================\\u003e
141
- \ ] 56.52 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57041490,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============================\\u003e
142
- \ ] 57.04 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57567530,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============================\\u003e
143
- \ ] 57.57 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58097101,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============================\\u003e
144
- \ ] 58.1 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58621952,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============================\\u003e
145
- \ ] 58.62 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59150825,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============================\\u003e
146
- \ ] 59.15 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59679759,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============================\\u003e
147
- \ ] 59.68 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60206135,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============================\\u003e
148
- \ ] 60.21 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60731390,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================================\\u003e
149
- \ ] 60.73 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61256241,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================================\\u003e
150
- \ ] 61.26 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61783624,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================================\\u003e
151
- \ ] 61.78 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62308352,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================================\\u003e
152
- \ ] 62.31 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62835962,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================================\\u003e
153
- \ ] 62.84 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63365985,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================================\\u003e
154
- \ ] 63.37 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63897600,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================================\\u003e
155
- \ ] 63.9 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64425984,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================================\\u003e
156
- \ ] 64.43 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64951547,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==================================\\u003e
157
- \ ] 64.95 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65477287,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==================================\\u003e
158
- \ ] 65.48 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66002838,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==================================\\u003e
159
- \ ] 66 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66527232,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===================================\\u003e
160
- \ ] 66.53 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67058428,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===================================\\u003e
161
- \ ] 67.06 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67585551,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===================================\\u003e
162
- \ ] 67.59 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68113131,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===================================\\u003e
163
- \ ] 68.11 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68639112,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====================================\\u003e
164
- \ ] 68.64 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69167384,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====================================\\u003e
165
- \ ] 69.17 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69692312,\"total\":94863360,\"start\":1394654855},\"progress\":\"[====================================\\u003e
166
- \ ] 69.69 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70218071,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====================================\\u003e
167
- \ ] 70.22 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70743386,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====================================\\u003e
168
- \ ] 70.74 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71270400,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====================================\\u003e
169
- \ ] 71.27 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71798784,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=====================================\\u003e
170
- \ ] 71.8 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72324928,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======================================\\u003e
171
- \ ] 72.32 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72851258,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======================================\\u003e
172
- \ ] 72.85 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73375744,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======================================\\u003e
173
- \ ] 73.38 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73904091,\"total\":94863360,\"start\":1394654855},\"progress\":\"[======================================\\u003e
174
- \ ] 73.9 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74428416,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======================================\\u003e
175
- \ ] 74.43 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74952715,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======================================\\u003e
176
- \ ] 74.95 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75478532,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=======================================\\u003e
177
- \ ] 75.48 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76006647,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========================================\\u003e
178
- \ ] 76.01 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76533760,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========================================\\u003e
179
- \ ] 76.53 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77067779,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========================================\\u003e
180
- \ ] 77.07 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77594624,\"total\":94863360,\"start\":1394654855},\"progress\":\"[========================================\\u003e
181
- \ ] 77.59 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78124063,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========================================\\u003e
182
- \ ] 78.12 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78651392,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========================================\\u003e
183
- \ ] 78.65 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79184834,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=========================================\\u003e
184
- \ ] 79.18 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79711231,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========================================\\u003e
185
- \ ] 79.71 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80239069,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========================================\\u003e
186
- \ ] 80.24 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80764928,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========================================\\u003e
187
- \ ] 80.76 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81290784,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==========================================\\u003e
188
- \ ] 81.29 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81819342,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========================================\\u003e
189
- \ ] 81.82 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82344206,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========================================\\u003e
190
- \ ] 82.34 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82869115,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========================================\\u003e
191
- \ ] 82.87 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83393910,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===========================================\\u003e
192
- \ ] 83.39 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83918848,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============================================\\u003e
193
- \ ] 83.92 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84447232,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============================================\\u003e
194
- \ ] 84.45 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84975616,\"total\":94863360,\"start\":1394654855},\"progress\":\"[============================================\\u003e
195
- \ ] 84.98 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85506859,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============================================\\u003e
196
- \ ] 85.51 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86032106,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============================================\\u003e
197
- \ ] 86.03 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86559316,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============================================\\u003e
198
- \ ] 86.56 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87086158,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=============================================\\u003e
199
- \ ] 87.09 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87612662,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============================================\\u003e
200
- \ ] 87.61 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88138808,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============================================\\u003e
201
- \ ] 88.14 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88666236,\"total\":94863360,\"start\":1394654855},\"progress\":\"[==============================================\\u003e
202
- \ ] 88.67 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89191986,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============================================\\u003e
203
- \ ] 89.19 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89718784,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============================================\\u003e
204
- \ ] 89.72 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90247168,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============================================\\u003e
205
- \ ] 90.25 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90775552,\"total\":94863360,\"start\":1394654855},\"progress\":\"[===============================================\\u003e
206
- \ ] 90.78 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91307188,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================================================\\u003e
207
- \ ] 91.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91833442,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================================================\\u003e
208
- \ ] 91.83 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92360704,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================================================\\u003e
209
- \ ] 92.36 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92889088,\"total\":94863360,\"start\":1394654855},\"progress\":\"[================================================\\u003e
210
- \ ] 92.89 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93419433,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================================================\\u003e
211
- ] 93.42 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93945856,\"total\":94863360,\"start\":1394654855},\"progress\":\"[=================================================\\u003e
212
- ] 93.95 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94474240,\"total\":94863360,\"start\":1394654855},\"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\":1394654864},\"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: Wed, 12 Mar 2014 20:07:44 GMT
37
+ recorded_at: Fri, 06 Jun 2014 15:21:28 GMT
221
38
  - request:
222
39
  method: get
223
- uri: unix:///var/run/docker.sock/v1.10/images/json?all=true
40
+ uri: unix:///var/run/docker.sock/v1.11/images/json?all=true
224
41
  body:
225
42
  encoding: US-ASCII
226
43
  string: ''
227
44
  headers:
228
45
  User-Agent:
229
- - Swipely/Docker-API 1.10.0
46
+ - Swipely/Docker-API 1.11.1
230
47
  Content-Type:
231
48
  - text/plain
232
49
  response:
@@ -237,28 +54,48 @@ http_interactions:
237
54
  Content-Type:
238
55
  - application/json
239
56
  Date:
240
- - Wed, 12 Mar 2014 20:07:44 GMT
241
- Content-Length:
242
- - '403'
57
+ - Fri, 06 Jun 2014 15:21:28 GMT
243
58
  Connection:
244
59
  - close
60
+ Transfer-Encoding:
61
+ - ''
245
62
  body:
246
63
  encoding: UTF-8
247
64
  string: |-
248
- [{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
65
+ [{"Created":1402067547,"Id":"8487c71145e1b4d0f1b30c87c198138fd9a62a1c5c72125c0d1dda51c57d923a","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":88195,"VirtualSize":175395230}
66
+ ,{"Created":1402067050,"Id":"f97c0340b51437f9c26d5173f3a4740ddc7fd514149c217bb5ccd74582748532","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":175854140,"VirtualSize":175854140}
67
+ ,{"Created":1402066420,"Id":"3746c6801d76c35763c3bde3bbbcfeb412e574ac8ccf6f5dcabf5b5ae8d388e8","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":88195,"VirtualSize":175395230}
68
+ ,{"Created":1401970080,"Id":"da394c73c60c542a7f34bd0dac5ab71e31c81dd56df90080718b697345665ffc","ParentId":"69249d7fb38f6f9fd16842712c2d64f7984146c83d67d429c0da68f5ac942381","RepoTags":["registry:latest"],"Size":0,"VirtualSize":508212264}
69
+ ,{"Created":1401970079,"Id":"887fdc776a7d3de2627177a85f396f9d22ad92b8b2dbff194ff58e0857a3ce33","ParentId":"112f480acea15a04308b0abad5ee745d8cdfaf8ef73b753fd194d4be2903be76","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":508212264}
70
+ ,{"Created":1401970079,"Id":"112f480acea15a04308b0abad5ee745d8cdfaf8ef73b753fd194d4be2903be76","ParentId":"b48042dcc960b4b77940e8719b5190622a32e3f20047be9043e61c806bd394d6","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":508212264}
71
+ ,{"Created":1401970079,"Id":"69249d7fb38f6f9fd16842712c2d64f7984146c83d67d429c0da68f5ac942381","ParentId":"887fdc776a7d3de2627177a85f396f9d22ad92b8b2dbff194ff58e0857a3ce33","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":508212264}
72
+ ,{"Created":1401970076,"Id":"b48042dcc960b4b77940e8719b5190622a32e3f20047be9043e61c806bd394d6","ParentId":"c51266c6a24759f0c14c1693107d16fddf2c8b6bdb5c8aa40dd16de2e010e6bc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20117936,"VirtualSize":508212264}
73
+ ,{"Created":1401969934,"Id":"c51266c6a24759f0c14c1693107d16fddf2c8b6bdb5c8aa40dd16de2e010e6bc","ParentId":"0d13b0be2dc84b3db06c3738dee73fe754626553da7336551b7a834f811a9a9a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8438003,"VirtualSize":488094328}
74
+ ,{"Created":1401969929,"Id":"73f46c56bcbd933bec0c91a5a49ab69fa8a067bd50ccdb91093b21f9d16cde66","ParentId":"7a64b3c4456e03848795faf5612a569c75b7921e11c46aa8590d17327dc741b0","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1331039,"VirtualSize":479656252}
75
+ ,{"Created":1401969929,"Id":"0d13b0be2dc84b3db06c3738dee73fe754626553da7336551b7a834f811a9a9a","ParentId":"73f46c56bcbd933bec0c91a5a49ab69fa8a067bd50ccdb91093b21f9d16cde66","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":479656325}
76
+ ,{"Created":1401927058,"Id":"7a64b3c4456e03848795faf5612a569c75b7921e11c46aa8590d17327dc741b0","ParentId":"a857da6ec2d5f4fa89b2638347c4f080beb8305c94df77b3553747ad19100e93","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":40765785,"VirtualSize":478325213}
77
+ ,{"Created":1401927040,"Id":"a857da6ec2d5f4fa89b2638347c4f080beb8305c94df77b3553747ad19100e93","ParentId":"d0750650eb468ac23b8c410f185684ae398f686f653c326785635c631e8c8f06","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":134946185,"VirtualSize":437559428}
78
+ ,{"Created":1401926997,"Id":"d0750650eb468ac23b8c410f185684ae398f686f653c326785635c631e8c8f06","ParentId":"ea40f710e26c93b7f51b73ba2185f6eade802e5d3b66f3f7295ca09e91bc4fbc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":26083857,"VirtualSize":302613243}
79
+ ,{"Created":1401926977,"Id":"ea40f710e26c93b7f51b73ba2185f6eade802e5d3b66f3f7295ca09e91bc4fbc","ParentId":"5cf8fd909c6ccc61199df6dbeb165767b83c23842ef49ca3ef3b81ece1bdce4f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2314277,"VirtualSize":276529386}
80
+ ,{"Created":1401405206,"Id":"5cf8fd909c6ccc61199df6dbeb165767b83c23842ef49ca3ef3b81ece1bdce4f","ParentId":"e497c7c1bfbb69ab9fe556cc0bcb35c642c45eeed600ad812fdff0ce719f0610","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":81541301,"VirtualSize":274215109}
81
+ ,{"Created":1401405176,"Id":"e497c7c1bfbb69ab9fe556cc0bcb35c642c45eeed600ad812fdff0ce719f0610","ParentId":"7baf0ef6f14afdc7428cb658911ab196ac245a533c679be5e53e75dbe60c5b0a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1903,"VirtualSize":192673808}
82
+ ,{"Created":1401405175,"Id":"7baf0ef6f14afdc7428cb658911ab196ac245a533c679be5e53e75dbe60c5b0a","ParentId":"35f6dd4dd141c32f2259c730e05111beb6bf8c5994c4e3ae3c76c29e2e35d195","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194463,"VirtualSize":192671905}
83
+ ,{"Created":1401405168,"Id":"35f6dd4dd141c32f2259c730e05111beb6bf8c5994c4e3ae3c76c29e2e35d195","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192477442,"VirtualSize":192477442}
84
+ ,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
85
+ ,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
249
86
  ,{"Created":1364068391,"Id":"27cf784147099545","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":175306958,"VirtualSize":175306958}
250
87
  ]
251
88
  http_version:
252
- recorded_at: Wed, 12 Mar 2014 20:07:44 GMT
89
+ recorded_at: Fri, 06 Jun 2014 15:21:28 GMT
253
90
  - request:
254
91
  method: get
255
- uri: unix:///var/run/docker.sock/v1.10/images/b750fe79269d/json
92
+ uri: unix:///var/run/docker.sock/v1.11/images/b750fe79269d/json
256
93
  body:
257
94
  encoding: US-ASCII
258
95
  string: ''
259
96
  headers:
260
97
  User-Agent:
261
- - Swipely/Docker-API 1.10.0
98
+ - Swipely/Docker-API 1.11.1
262
99
  Content-Type:
263
100
  - text/plain
264
101
  response:
@@ -269,14 +106,14 @@ http_interactions:
269
106
  Content-Type:
270
107
  - application/json
271
108
  Date:
272
- - Wed, 12 Mar 2014 20:07:44 GMT
109
+ - Fri, 06 Jun 2014 15:21:28 GMT
273
110
  Content-Length:
274
- - '643'
111
+ - '615'
275
112
  Connection:
276
113
  - close
277
114
  body:
278
115
  encoding: UTF-8
279
- 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}"
116
+ 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"],"Image":"base","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"OnBuild":null},"Size":77}'
280
117
  http_version:
281
- recorded_at: Wed, 12 Mar 2014 20:07:44 GMT
282
- recorded_with: VCR 2.8.0
118
+ recorded_at: Fri, 06 Jun 2014 15:21:28 GMT
119
+ recorded_with: VCR 2.9.2