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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/docker/image.rb +10 -10
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +0 -8
- data/spec/docker/image_spec.rb +3 -3
- data/spec/docker_spec.rb +6 -4
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -6
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -7
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -7
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -7
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +77 -65
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +15 -15
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +15 -15
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +22 -24
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +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
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +41 -41
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +26 -26
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +13 -13
- 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
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -17
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +453693 -17
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +13 -13
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +13 -13
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +41 -35
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +11 -11
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +11 -11
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +42 -42
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +16 -16
- 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
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +23 -23
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +45 -39
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +27 -23
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +16 -16
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +12 -12
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +16 -16
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +13 -33
- 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
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +25 -27
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +6 -6
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +6 -6
- 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
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +8 -196
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +24 -20
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml +46 -30
- 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
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -7
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +9 -9
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +27 -25
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +12 -12
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +6 -6
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +27 -33
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +29 -878
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +29 -45
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +29 -51
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +29 -28
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +6 -6
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +32 -31
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +11 -11
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +67 -227
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +61 -43
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +40 -203
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +22 -23
- 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
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +19 -19
- 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
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +77 -72
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +9 -9
- 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.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.11/build
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.11.1
|
12
12
|
Content-Type:
|
13
13
|
- application/tar
|
14
14
|
Transfer-Encoding:
|
@@ -25,205 +25,17 @@ http_interactions:
|
|
25
25
|
Content-Type:
|
26
26
|
- application/json
|
27
27
|
Date:
|
28
|
-
-
|
28
|
+
- Fri, 06 Jun 2014 14:25:10 GMT
|
29
29
|
Connection:
|
30
30
|
- close
|
31
31
|
Transfer-Encoding:
|
32
32
|
- ''
|
33
33
|
body:
|
34
34
|
encoding: UTF-8
|
35
|
-
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"
|
36
|
-
base\"}\r\n{\"status\":\"Pulling image (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
37
|
-
image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
38
|
-
dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
39
|
-
metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
40
|
-
fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":94863360,\"start\":1400918528},\"progress\":\"[\\u003e
|
41
|
-
\ ] 528.4 kB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":94863360,\"start\":1400918528},\"progress\":\"[\\u003e
|
42
|
-
\ ] 1.057 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":94863360,\"start\":1400918528},\"progress\":\"[\\u003e
|
43
|
-
\ ] 1.585 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=\\u003e
|
44
|
-
\ ] 2.114 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=\\u003e
|
45
|
-
\ ] 2.642 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=\\u003e
|
46
|
-
\ ] 3.17 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=\\u003e
|
47
|
-
\ ] 3.699 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==\\u003e
|
48
|
-
\ ] 4.227 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==\\u003e
|
49
|
-
\ ] 4.755 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==\\u003e
|
50
|
-
\ ] 5.284 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===\\u003e
|
51
|
-
\ ] 5.812 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===\\u003e
|
52
|
-
\ ] 6.341 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===\\u003e
|
53
|
-
\ ] 6.869 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===\\u003e
|
54
|
-
\ ] 7.397 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====\\u003e
|
55
|
-
\ ] 7.926 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====\\u003e
|
56
|
-
\ ] 8.454 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====\\u003e
|
57
|
-
\ ] 8.983 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====\\u003e
|
58
|
-
\ ] 9.511 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====\\u003e
|
59
|
-
\ ] 10.04 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====\\u003e
|
60
|
-
\ ] 10.57 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====\\u003e
|
61
|
-
\ ] 11.1 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======\\u003e
|
62
|
-
\ ] 11.62 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======\\u003e
|
63
|
-
\ ] 12.15 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======\\u003e
|
64
|
-
\ ] 12.68 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======\\u003e
|
65
|
-
\ ] 13.21 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======\\u003e
|
66
|
-
\ ] 13.74 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======\\u003e
|
67
|
-
\ ] 14.27 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======\\u003e
|
68
|
-
\ ] 14.79 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========\\u003e
|
69
|
-
\ ] 15.32 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========\\u003e
|
70
|
-
\ ] 15.85 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========\\u003e
|
71
|
-
\ ] 16.38 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========\\u003e
|
72
|
-
\ ] 16.91 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========\\u003e
|
73
|
-
\ ] 17.44 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========\\u003e
|
74
|
-
\ ] 17.97 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========\\u003e
|
75
|
-
\ ] 18.49 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========\\u003e
|
76
|
-
\ ] 19.02 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========\\u003e
|
77
|
-
\ ] 19.55 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========\\u003e
|
78
|
-
\ ] 20.08 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========\\u003e
|
79
|
-
\ ] 20.61 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========\\u003e
|
80
|
-
\ ] 21.14 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========\\u003e
|
81
|
-
\ ] 21.66 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========\\u003e
|
82
|
-
\ ] 22.19 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========\\u003e
|
83
|
-
\ ] 22.72 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============\\u003e
|
84
|
-
\ ] 23.25 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============\\u003e
|
85
|
-
\ ] 23.78 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============\\u003e
|
86
|
-
\ ] 24.31 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============\\u003e
|
87
|
-
\ ] 24.83 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============\\u003e
|
88
|
-
\ ] 25.36 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============\\u003e
|
89
|
-
\ ] 25.89 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============\\u003e
|
90
|
-
\ ] 26.42 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============\\u003e
|
91
|
-
\ ] 26.95 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============\\u003e
|
92
|
-
\ ] 27.48 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============\\u003e
|
93
|
-
\ ] 28 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============\\u003e
|
94
|
-
\ ] 28.53 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============\\u003e
|
95
|
-
\ ] 29.06 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============\\u003e
|
96
|
-
\ ] 29.59 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============\\u003e
|
97
|
-
\ ] 30.12 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================\\u003e
|
98
|
-
\ ] 30.65 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================\\u003e
|
99
|
-
\ ] 31.17 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================\\u003e
|
100
|
-
\ ] 31.7 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================\\u003e
|
101
|
-
\ ] 32.23 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================\\u003e
|
102
|
-
\ ] 32.76 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================\\u003e
|
103
|
-
\ ] 33.29 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================\\u003e
|
104
|
-
\ ] 33.82 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================\\u003e
|
105
|
-
\ ] 34.34 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================\\u003e
|
106
|
-
\ ] 34.87 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================\\u003e
|
107
|
-
\ ] 35.4 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================\\u003e
|
108
|
-
\ ] 35.93 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================\\u003e
|
109
|
-
\ ] 36.46 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================\\u003e
|
110
|
-
\ ] 36.99 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================\\u003e
|
111
|
-
\ ] 37.52 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================\\u003e
|
112
|
-
\ ] 38.04 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================\\u003e
|
113
|
-
\ ] 38.57 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================\\u003e
|
114
|
-
\ ] 39.1 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================\\u003e
|
115
|
-
\ ] 39.63 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================\\u003e
|
116
|
-
\ ] 40.16 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================\\u003e
|
117
|
-
\ ] 40.69 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================\\u003e
|
118
|
-
\ ] 41.21 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================\\u003e
|
119
|
-
\ ] 41.74 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================\\u003e
|
120
|
-
\ ] 42.27 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================\\u003e
|
121
|
-
\ ] 42.8 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================\\u003e
|
122
|
-
\ ] 43.33 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================\\u003e
|
123
|
-
\ ] 43.86 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44383585,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================\\u003e
|
124
|
-
\ ] 44.38 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44908544,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================\\u003e
|
125
|
-
\ ] 44.91 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45436928,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================\\u003e
|
126
|
-
\ ] 45.44 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45965312,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================\\u003e
|
127
|
-
\ ] 45.97 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46493696,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================\\u003e
|
128
|
-
\ ] 46.49 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022080,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================\\u003e
|
129
|
-
\ ] 47.02 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47550464,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================\\u003e
|
130
|
-
\ ] 47.55 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48078848,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================\\u003e
|
131
|
-
\ ] 48.08 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48607232,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================\\u003e
|
132
|
-
\ ] 48.61 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49135616,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================\\u003e
|
133
|
-
\ ] 49.14 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49664000,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================\\u003e
|
134
|
-
\ ] 49.66 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50189521,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================\\u003e
|
135
|
-
\ ] 50.19 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50716672,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================\\u003e
|
136
|
-
\ ] 50.72 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51245056,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================\\u003e
|
137
|
-
\ ] 51.25 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51769791,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================\\u003e
|
138
|
-
\ ] 51.77 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52297728,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================\\u003e
|
139
|
-
\ ] 52.3 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52826112,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================\\u003e
|
140
|
-
\ ] 52.83 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53350594,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================\\u003e
|
141
|
-
\ ] 53.35 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53878346,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================\\u003e
|
142
|
-
\ ] 53.88 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54403072,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================\\u003e
|
143
|
-
\ ] 54.4 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54931701,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================\\u003e
|
144
|
-
\ ] 54.93 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55459840,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================\\u003e
|
145
|
-
\ ] 55.46 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55988224,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================\\u003e
|
146
|
-
\ ] 55.99 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56515076,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================\\u003e
|
147
|
-
\ ] 56.52 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57041490,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================\\u003e
|
148
|
-
\ ] 57.04 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57567530,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================\\u003e
|
149
|
-
\ ] 57.57 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58097101,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================\\u003e
|
150
|
-
\ ] 58.1 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58621952,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================\\u003e
|
151
|
-
\ ] 58.62 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59150825,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================\\u003e
|
152
|
-
\ ] 59.15 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59679759,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================\\u003e
|
153
|
-
\ ] 59.68 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60206135,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================\\u003e
|
154
|
-
\ ] 60.21 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60731390,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================\\u003e
|
155
|
-
\ ] 60.73 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61256241,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================\\u003e
|
156
|
-
\ ] 61.26 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61783624,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================\\u003e
|
157
|
-
\ ] 61.78 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62308352,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================\\u003e
|
158
|
-
\ ] 62.31 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62835962,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================\\u003e
|
159
|
-
\ ] 62.84 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63365985,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================\\u003e
|
160
|
-
\ ] 63.37 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63897600,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================\\u003e
|
161
|
-
\ ] 63.9 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64425984,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================\\u003e
|
162
|
-
\ ] 64.43 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64951547,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================================\\u003e
|
163
|
-
\ ] 64.95 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65477287,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================================\\u003e
|
164
|
-
\ ] 65.48 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66002838,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==================================\\u003e
|
165
|
-
\ ] 66 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66527232,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================================\\u003e
|
166
|
-
\ ] 66.53 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67058428,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================================\\u003e
|
167
|
-
\ ] 67.06 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67585551,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================================\\u003e
|
168
|
-
\ ] 67.59 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68113131,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===================================\\u003e
|
169
|
-
\ ] 68.11 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68639112,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================================\\u003e
|
170
|
-
\ ] 68.64 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69167384,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================================\\u003e
|
171
|
-
\ ] 69.17 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69692312,\"total\":94863360,\"start\":1400918528},\"progress\":\"[====================================\\u003e
|
172
|
-
\ ] 69.69 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70218071,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================================\\u003e
|
173
|
-
\ ] 70.22 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70743386,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================================\\u003e
|
174
|
-
\ ] 70.74 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71270400,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================================\\u003e
|
175
|
-
\ ] 71.27 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71798784,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=====================================\\u003e
|
176
|
-
\ ] 71.8 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72324928,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================================\\u003e
|
177
|
-
\ ] 72.32 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72851258,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================================\\u003e
|
178
|
-
\ ] 72.85 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73375744,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================================\\u003e
|
179
|
-
\ ] 73.38 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73904091,\"total\":94863360,\"start\":1400918528},\"progress\":\"[======================================\\u003e
|
180
|
-
\ ] 73.9 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74428416,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================================\\u003e
|
181
|
-
\ ] 74.43 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74952715,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================================\\u003e
|
182
|
-
\ ] 74.95 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75478532,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=======================================\\u003e
|
183
|
-
\ ] 75.48 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76006647,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================================\\u003e
|
184
|
-
\ ] 76.01 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76533760,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================================\\u003e
|
185
|
-
\ ] 76.53 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77067779,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================================\\u003e
|
186
|
-
\ ] 77.07 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77594624,\"total\":94863360,\"start\":1400918528},\"progress\":\"[========================================\\u003e
|
187
|
-
\ ] 77.59 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78124063,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================================\\u003e
|
188
|
-
\ ] 78.12 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78651392,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================================\\u003e
|
189
|
-
\ ] 78.65 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79184834,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=========================================\\u003e
|
190
|
-
\ ] 79.18 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79711231,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================================\\u003e
|
191
|
-
\ ] 79.71 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80239069,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================================\\u003e
|
192
|
-
\ ] 80.24 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80764928,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================================\\u003e
|
193
|
-
\ ] 80.76 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81290784,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==========================================\\u003e
|
194
|
-
\ ] 81.29 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81819342,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================================\\u003e
|
195
|
-
\ ] 81.82 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82344206,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================================\\u003e
|
196
|
-
\ ] 82.34 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82869115,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================================\\u003e
|
197
|
-
\ ] 82.87 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83393910,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===========================================\\u003e
|
198
|
-
\ ] 83.39 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83918848,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================================\\u003e
|
199
|
-
\ ] 83.92 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84447232,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================================\\u003e
|
200
|
-
\ ] 84.45 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84975616,\"total\":94863360,\"start\":1400918528},\"progress\":\"[============================================\\u003e
|
201
|
-
\ ] 84.98 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85506859,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================================\\u003e
|
202
|
-
\ ] 85.51 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86032106,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================================\\u003e
|
203
|
-
\ ] 86.03 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86559316,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================================\\u003e
|
204
|
-
\ ] 86.56 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87086158,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=============================================\\u003e
|
205
|
-
\ ] 87.09 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87612662,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================================\\u003e
|
206
|
-
\ ] 87.61 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88138808,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================================\\u003e
|
207
|
-
\ ] 88.14 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88666236,\"total\":94863360,\"start\":1400918528},\"progress\":\"[==============================================\\u003e
|
208
|
-
\ ] 88.67 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89191986,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================================\\u003e
|
209
|
-
\ ] 89.19 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89718784,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================================\\u003e
|
210
|
-
\ ] 89.72 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90247168,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================================\\u003e
|
211
|
-
\ ] 90.25 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90775552,\"total\":94863360,\"start\":1400918528},\"progress\":\"[===============================================\\u003e
|
212
|
-
\ ] 90.78 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91307188,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================================\\u003e
|
213
|
-
\ ] 91.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91833442,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================================\\u003e
|
214
|
-
\ ] 91.83 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92360704,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================================\\u003e
|
215
|
-
\ ] 92.36 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92889088,\"total\":94863360,\"start\":1400918528},\"progress\":\"[================================================\\u003e
|
216
|
-
\ ] 92.89 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93419433,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================================\\u003e
|
217
|
-
] 93.42 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93945856,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================================\\u003e
|
218
|
-
] 93.95 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94474240,\"total\":94863360,\"start\":1400918528},\"progress\":\"[=================================================\\u003e
|
219
|
-
] 94.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
220
|
-
metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
221
|
-
fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4106,\"total\":10240,\"start\":1400918542},\"progress\":\"[====================\\u003e
|
222
|
-
\ ] 4.106 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
223
|
-
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
224
|
-
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"stream\":\" ---\\u003e
|
35
|
+
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
225
36
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add / /\\n\"}\r\n{\"stream\":\"
|
226
|
-
---\\u003e
|
37
|
+
---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 4f9603c673e9\\n\"}\r\n{\"stream\":\"Successfully
|
38
|
+
built 4f9603c673e9\\n\"}\r\n"
|
227
39
|
http_version:
|
228
|
-
recorded_at:
|
229
|
-
recorded_with: VCR 2.9.
|
40
|
+
recorded_at: Fri, 06 Jun 2014 14:25:10 GMT
|
41
|
+
recorded_with: VCR 2.9.2
|
@@ -2,17 +2,21 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.11/build
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.11.1
|
12
12
|
Content-Type:
|
13
13
|
- application/tar
|
14
14
|
Transfer-Encoding:
|
15
15
|
- chunked
|
16
|
+
X-Registry-Auth:
|
17
|
+
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKioqKiIsImVtYWlsIjoiaHVsaWhhbi50b20xNTlAZ21haWwuY29tIn0=
|
18
|
+
X-Registry-Config:
|
19
|
+
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKioqKiIsImVtYWlsIjoiaHVsaWhhbi50b20xNTlAZ21haWwuY29tIn0=
|
16
20
|
response:
|
17
21
|
status:
|
18
22
|
code: 200
|
@@ -21,7 +25,7 @@ http_interactions:
|
|
21
25
|
Content-Type:
|
22
26
|
- application/json
|
23
27
|
Date:
|
24
|
-
-
|
28
|
+
- Fri, 06 Jun 2014 14:25:07 GMT
|
25
29
|
Connection:
|
26
30
|
- close
|
27
31
|
Transfer-Encoding:
|
@@ -30,18 +34,18 @@ http_interactions:
|
|
30
34
|
encoding: UTF-8
|
31
35
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
32
36
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add / /\\n\"}\r\n{\"stream\":\"
|
33
|
-
---\\u003e
|
37
|
+
---\\u003e 4f9603c673e9\\n\"}\r\n{\"stream\":\"Successfully built 4f9603c673e9\\n\"}\r\n"
|
34
38
|
http_version:
|
35
|
-
recorded_at:
|
39
|
+
recorded_at: Fri, 06 Jun 2014 14:25:09 GMT
|
36
40
|
- request:
|
37
41
|
method: post
|
38
|
-
uri: unix:///var/run/docker.sock/v1.
|
42
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/create
|
39
43
|
body:
|
40
44
|
encoding: UTF-8
|
41
|
-
string:
|
45
|
+
string: '{"Image":"4f9603c673e9","Cmd":["cat","/Dockerfile"]}'
|
42
46
|
headers:
|
43
47
|
User-Agent:
|
44
|
-
- Swipely/Docker-API 1.
|
48
|
+
- Swipely/Docker-API 1.11.1
|
45
49
|
Content-Type:
|
46
50
|
- application/json
|
47
51
|
response:
|
@@ -52,7 +56,7 @@ http_interactions:
|
|
52
56
|
Content-Type:
|
53
57
|
- application/json
|
54
58
|
Date:
|
55
|
-
-
|
59
|
+
- Fri, 06 Jun 2014 14:25:09 GMT
|
56
60
|
Content-Length:
|
57
61
|
- '90'
|
58
62
|
Connection:
|
@@ -60,18 +64,18 @@ http_interactions:
|
|
60
64
|
body:
|
61
65
|
encoding: UTF-8
|
62
66
|
string: |
|
63
|
-
{"Id":"
|
67
|
+
{"Id":"473eeea2ddb1e12a5ecfa29cf7c571fc987e290768d379d4c937a5994163df85","Warnings":null}
|
64
68
|
http_version:
|
65
|
-
recorded_at:
|
69
|
+
recorded_at: Fri, 06 Jun 2014 14:25:09 GMT
|
66
70
|
- request:
|
67
71
|
method: post
|
68
|
-
uri: unix:///var/run/docker.sock/v1.
|
72
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/473eeea2ddb1e12a5ecfa29cf7c571fc987e290768d379d4c937a5994163df85/start
|
69
73
|
body:
|
70
74
|
encoding: UTF-8
|
71
|
-
string:
|
75
|
+
string: '{}'
|
72
76
|
headers:
|
73
77
|
User-Agent:
|
74
|
-
- Swipely/Docker-API 1.
|
78
|
+
- Swipely/Docker-API 1.11.1
|
75
79
|
Content-Type:
|
76
80
|
- application/json
|
77
81
|
response:
|
@@ -80,7 +84,7 @@ http_interactions:
|
|
80
84
|
message:
|
81
85
|
headers:
|
82
86
|
Date:
|
83
|
-
-
|
87
|
+
- Fri, 06 Jun 2014 14:25:09 GMT
|
84
88
|
Content-Length:
|
85
89
|
- '0'
|
86
90
|
Content-Type:
|
@@ -91,16 +95,16 @@ http_interactions:
|
|
91
95
|
encoding: UTF-8
|
92
96
|
string: ''
|
93
97
|
http_version:
|
94
|
-
recorded_at:
|
98
|
+
recorded_at: Fri, 06 Jun 2014 14:25:09 GMT
|
95
99
|
- request:
|
96
100
|
method: post
|
97
|
-
uri: unix:///var/run/docker.sock/v1.
|
101
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/473eeea2ddb1e12a5ecfa29cf7c571fc987e290768d379d4c937a5994163df85/attach?stderr=true&stdout=true&stream=true
|
98
102
|
body:
|
99
103
|
encoding: US-ASCII
|
100
104
|
string: ''
|
101
105
|
headers:
|
102
106
|
User-Agent:
|
103
|
-
- Swipely/Docker-API 1.
|
107
|
+
- Swipely/Docker-API 1.11.1
|
104
108
|
Content-Type:
|
105
109
|
- text/plain
|
106
110
|
response:
|
@@ -115,5 +119,5 @@ http_interactions:
|
|
115
119
|
string: !binary |-
|
116
120
|
AQAAAAAAABJmcm9tIGJhc2UKYWRkIC8gLwo=
|
117
121
|
http_version:
|
118
|
-
recorded_at:
|
119
|
-
recorded_with: VCR 2.
|
122
|
+
recorded_at: Fri, 06 Jun 2014 14:25:09 GMT
|
123
|
+
recorded_with: VCR 2.9.2
|
@@ -2,17 +2,21 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: unix:///var/run/docker.sock/v1.
|
5
|
+
uri: unix:///var/run/docker.sock/v1.11/build?t=swipely%2Fbase2
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.11.1
|
12
12
|
Content-Type:
|
13
13
|
- application/tar
|
14
14
|
Transfer-Encoding:
|
15
15
|
- chunked
|
16
|
+
X-Registry-Auth:
|
17
|
+
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKioqKiIsImVtYWlsIjoiaHVsaWhhbi50b20xNTlAZ21haWwuY29tIn0=
|
18
|
+
X-Registry-Config:
|
19
|
+
- eyJ1c2VybmFtZSI6Im5haGlsdWhtb3QiLCJwYXNzd29yZCI6IioqKioqKioqKiIsImVtYWlsIjoiaHVsaWhhbi50b20xNTlAZ21haWwuY29tIn0=
|
16
20
|
response:
|
17
21
|
status:
|
18
22
|
code: 200
|
@@ -21,7 +25,7 @@ http_interactions:
|
|
21
25
|
Content-Type:
|
22
26
|
- application/json
|
23
27
|
Date:
|
24
|
-
-
|
28
|
+
- Fri, 06 Jun 2014 14:25:09 GMT
|
25
29
|
Connection:
|
26
30
|
- close
|
27
31
|
Transfer-Encoding:
|
@@ -30,19 +34,19 @@ http_interactions:
|
|
30
34
|
encoding: UTF-8
|
31
35
|
string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
|
32
36
|
b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add / /\\n\"}\r\n{\"stream\":\"
|
33
|
-
---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e
|
34
|
-
built
|
37
|
+
---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 4f9603c673e9\\n\"}\r\n{\"stream\":\"Successfully
|
38
|
+
built 4f9603c673e9\\n\"}\r\n"
|
35
39
|
http_version:
|
36
|
-
recorded_at:
|
40
|
+
recorded_at: Fri, 06 Jun 2014 14:25:09 GMT
|
37
41
|
- request:
|
38
42
|
method: post
|
39
|
-
uri: unix:///var/run/docker.sock/v1.
|
43
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/create
|
40
44
|
body:
|
41
45
|
encoding: UTF-8
|
42
|
-
string:
|
46
|
+
string: '{"Image":"4f9603c673e9","Cmd":["cat","/Dockerfile"]}'
|
43
47
|
headers:
|
44
48
|
User-Agent:
|
45
|
-
- Swipely/Docker-API 1.
|
49
|
+
- Swipely/Docker-API 1.11.1
|
46
50
|
Content-Type:
|
47
51
|
- application/json
|
48
52
|
response:
|
@@ -53,7 +57,7 @@ http_interactions:
|
|
53
57
|
Content-Type:
|
54
58
|
- application/json
|
55
59
|
Date:
|
56
|
-
-
|
60
|
+
- Fri, 06 Jun 2014 14:25:09 GMT
|
57
61
|
Content-Length:
|
58
62
|
- '90'
|
59
63
|
Connection:
|
@@ -61,18 +65,18 @@ http_interactions:
|
|
61
65
|
body:
|
62
66
|
encoding: UTF-8
|
63
67
|
string: |
|
64
|
-
{"Id":"
|
68
|
+
{"Id":"1282fe3fb6f31cabec0884aabe7d0cabb17f97619cd5bdeac4180309430d56a6","Warnings":null}
|
65
69
|
http_version:
|
66
|
-
recorded_at:
|
70
|
+
recorded_at: Fri, 06 Jun 2014 14:25:09 GMT
|
67
71
|
- request:
|
68
72
|
method: post
|
69
|
-
uri: unix:///var/run/docker.sock/v1.
|
73
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/1282fe3fb6f31cabec0884aabe7d0cabb17f97619cd5bdeac4180309430d56a6/start
|
70
74
|
body:
|
71
75
|
encoding: UTF-8
|
72
|
-
string:
|
76
|
+
string: '{}'
|
73
77
|
headers:
|
74
78
|
User-Agent:
|
75
|
-
- Swipely/Docker-API 1.
|
79
|
+
- Swipely/Docker-API 1.11.1
|
76
80
|
Content-Type:
|
77
81
|
- application/json
|
78
82
|
response:
|
@@ -81,7 +85,7 @@ http_interactions:
|
|
81
85
|
message:
|
82
86
|
headers:
|
83
87
|
Date:
|
84
|
-
-
|
88
|
+
- Fri, 06 Jun 2014 14:25:09 GMT
|
85
89
|
Content-Length:
|
86
90
|
- '0'
|
87
91
|
Content-Type:
|
@@ -92,16 +96,16 @@ http_interactions:
|
|
92
96
|
encoding: UTF-8
|
93
97
|
string: ''
|
94
98
|
http_version:
|
95
|
-
recorded_at:
|
99
|
+
recorded_at: Fri, 06 Jun 2014 14:25:09 GMT
|
96
100
|
- request:
|
97
101
|
method: post
|
98
|
-
uri: unix:///var/run/docker.sock/v1.
|
102
|
+
uri: unix:///var/run/docker.sock/v1.11/containers/1282fe3fb6f31cabec0884aabe7d0cabb17f97619cd5bdeac4180309430d56a6/attach?stderr=true&stdout=true&stream=true
|
99
103
|
body:
|
100
104
|
encoding: US-ASCII
|
101
105
|
string: ''
|
102
106
|
headers:
|
103
107
|
User-Agent:
|
104
|
-
- Swipely/Docker-API 1.
|
108
|
+
- Swipely/Docker-API 1.11.1
|
105
109
|
Content-Type:
|
106
110
|
- text/plain
|
107
111
|
response:
|
@@ -116,16 +120,16 @@ http_interactions:
|
|
116
120
|
string: !binary |-
|
117
121
|
AQAAAAAAABJmcm9tIGJhc2UKYWRkIC8gLwo=
|
118
122
|
http_version:
|
119
|
-
recorded_at:
|
123
|
+
recorded_at: Fri, 06 Jun 2014 14:25:10 GMT
|
120
124
|
- request:
|
121
125
|
method: get
|
122
|
-
uri: unix:///var/run/docker.sock/v1.
|
126
|
+
uri: unix:///var/run/docker.sock/v1.11/images/json
|
123
127
|
body:
|
124
128
|
encoding: US-ASCII
|
125
129
|
string: ''
|
126
130
|
headers:
|
127
131
|
User-Agent:
|
128
|
-
- Swipely/Docker-API 1.
|
132
|
+
- Swipely/Docker-API 1.11.1
|
129
133
|
Content-Type:
|
130
134
|
- text/plain
|
131
135
|
response:
|
@@ -136,18 +140,30 @@ http_interactions:
|
|
136
140
|
Content-Type:
|
137
141
|
- application/json
|
138
142
|
Date:
|
139
|
-
-
|
140
|
-
Content-Length:
|
141
|
-
- '759'
|
143
|
+
- Fri, 06 Jun 2014 14:25:10 GMT
|
142
144
|
Connection:
|
143
145
|
- close
|
146
|
+
Transfer-Encoding:
|
147
|
+
- ''
|
144
148
|
body:
|
145
149
|
encoding: UTF-8
|
146
150
|
string: |-
|
147
|
-
[{"Created":
|
148
|
-
,{"Created":
|
149
|
-
,{"Created":
|
151
|
+
[{"Created":1402064708,"Id":"4f9603c673e959bd06feaff5109987b097c9413af41cf8b145b163c1762db260","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["swipely/base2:latest"],"Size":18,"VirtualSize":175307053}
|
152
|
+
,{"Created":1402064706,"Id":"a54d5f69c625ecb10e58d8434f290febb3347232f8c2055b6e13cbcc05727be7","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["swipely/base:latest"],"Size":0,"VirtualSize":175307035}
|
153
|
+
,{"Created":1402064688,"Id":"f2d4054186f53bfff9a153f7600e15fdfb6701c81e38635e768cf1ce2bdb44a2","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":204704857,"VirtualSize":204704857}
|
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":1402064098,"Id":"0623b97810b4a0f42bc669f585304ec4bf2479c2e2a6c5a0d382256bc88caed6","ParentId":"983e8493b5049f430898150891dff158ebc71130e6be73ef49d8434f7021daef","RepoTags":["docker:master"],"Size":40861893,"VirtualSize":1380220597}
|
158
|
+
,{"Created":1402064068,"Id":"845bd9d827b413c5b8d9e546ed32aa04eaa837daaab793440c2749799d634133","ParentId":"983e8493b5049f430898150891dff158ebc71130e6be73ef49d8434f7021daef","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":40861893,"VirtualSize":1380220597}
|
159
|
+
,{"Created":1402061818,"Id":"533a0267fec78da1e15f091420d9a25c16bfee2a2d9f55ae59d52bc8634a9939","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
|
160
|
+
,{"Created":1402061816,"Id":"7364e1f83f7b954283072e0bf10b43b92c992940ae639cf71a74e31f4a93e75f","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
|
161
|
+
,{"Created":1402061797,"Id":"5964d75bfbd207cbd3c95b140859737e1dceb77c3f60b2984927fc3f4b85bc48","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":35,"VirtualSize":175307070}
|
162
|
+
,{"Created":1401992996,"Id":"cd20e353a62d370114744e8e219cce59098f419e022c7de64df47ff43ba88216","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":175307035}
|
163
|
+
,{"Created":1401970080,"Id":"da394c73c60c542a7f34bd0dac5ab71e31c81dd56df90080718b697345665ffc","ParentId":"69249d7fb38f6f9fd16842712c2d64f7984146c83d67d429c0da68f5ac942381","RepoTags":["registry:latest","localhost:5000/registry:test"],"Size":0,"VirtualSize":508212264}
|
164
|
+
,{"Created":1401930591,"Id":"ad892dd21d607a1458a722598a2e4d93015c4507abcd0ebfc16a43d4d1b41520","ParentId":"9db365ecbcbbb20e063eac70842c53e27fcad0e213f9d4ddb78152339cedd3b1","RepoTags":["ubuntu:14.04"],"Size":82679079,"VirtualSize":275352887}
|
165
|
+
,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base2:latest","base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
|
150
166
|
]
|
151
167
|
http_version:
|
152
|
-
recorded_at:
|
153
|
-
recorded_with: VCR 2.
|
168
|
+
recorded_at: Fri, 06 Jun 2014 14:25:10 GMT
|
169
|
+
recorded_with: VCR 2.9.2
|