docker-api 1.15.0 → 1.16.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 +26 -1
- data/Rakefile +37 -0
- data/TESTING.md +61 -0
- data/lib/docker.rb +8 -1
- data/lib/docker/container.rb +44 -80
- data/lib/docker/exec.rb +98 -0
- data/lib/docker/image.rb +4 -3
- data/lib/docker/util.rb +79 -0
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +192 -56
- data/spec/docker/event_spec.rb +4 -4
- data/spec/docker/exec_spec.rb +197 -0
- data/spec/docker/image_spec.rb +131 -102
- data/spec/docker_spec.rb +37 -27
- data/spec/fixtures/build_from_dir/Dockerfile +2 -2
- data/spec/fixtures/export.tar +0 -0
- data/spec/fixtures/top/Dockerfile +2 -2
- data/spec/spec_helper.rb +10 -0
- data/spec/support/vcr.rb +5 -0
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -8
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +46 -139
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +62 -20
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +62 -20
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +71 -28
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +69 -23
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +134 -0
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +73 -290
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +51 -211
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +36 -17
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +30 -9
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -23
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +151 -0
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +153 -0
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +153 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +100 -0
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +152 -0
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +263 -28
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +36 -17
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +36 -17
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +55 -53
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +74 -96
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +34 -15
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +98 -45
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +88 -56
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +39 -22
- 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 +212 -60
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +45 -30
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +54 -83
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +46 -30
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +103 -40
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +81 -57
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +39 -22
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +39 -22
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +128 -0
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +155 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +152 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +152 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +151 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +151 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +151 -0
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +86 -200
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +10 -14
- 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 +147 -39
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +10 -14
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +12 -14
- 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 +118 -16
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +118 -14
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +109 -37
- 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 +214 -60
- 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 +41 -2631
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +12 -19
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +17 -198
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +26 -30
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +246 -22
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +35 -10
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +1249 -74
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +84 -94
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +70 -92
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +125 -98
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +13 -60
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +190 -135
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +15 -198
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +169 -264
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +175 -4543
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +90 -206
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +300 -0
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +77 -207
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +77 -207
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +160 -0
- 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 +16 -197
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +151 -73
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +42 -196
- metadata +67 -41
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +0 -58
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/returns_the_error_message.yml +0 -163
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +0 -58
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +0 -41
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +0 -276
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/images/debian:wheezy/json"
|
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.15.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -16,23 +16,16 @@ http_interactions:
|
|
16
16
|
code: 200
|
17
17
|
message:
|
18
18
|
headers:
|
19
|
-
|
20
|
-
-
|
21
|
-
|
22
|
-
|
23
|
-
-
|
24
|
-
|
25
|
-
!binary "Q29udGVudC1MZW5ndGg=":
|
26
|
-
- !binary |-
|
27
|
-
MTU4MQ==
|
19
|
+
Content-Type:
|
20
|
+
- application/json
|
21
|
+
Date:
|
22
|
+
- Mon, 01 Dec 2014 18:08:54 GMT
|
23
|
+
Content-Length:
|
24
|
+
- '1460'
|
28
25
|
body:
|
29
|
-
encoding:
|
30
|
-
string:
|
31
|
-
|
32
|
-
ENTRYPOINT [/bin/sh -c /bin/bash -l -c bin/hoosegow]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","/bin/bash
|
33
|
-
-l -c bin/hoosegow"],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"265bbe22abe7","Image":"697157367a35a2a0c7283894ab3035c069ae48ff6fb6d5cf10747deee5e3a723","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":"/hoosegow"},"Created":"2014-09-30T14:47:46.62397332Z","DockerVersion":"1.0.1","Id":"ba5d55a9e74b5274f06653c2717f2251d8a37a3ac837034d8d2e5a6259b9553d","Os":"linux","Parent":"697157367a35a2a0c7283894ab3035c069ae48ff6fb6d5cf10747deee5e3a723","Size":0}
|
34
|
-
|
35
|
-
'
|
26
|
+
encoding: UTF-8
|
27
|
+
string: |
|
28
|
+
{"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"064f0e1ce709","Image":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"418e851cf98f783363d17a6b469d7e9f5768298d6596b357592562c77d2b5323","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/bin/bash]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"064f0e1ce709","Image":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-11-06T20:43:58.384012961Z","DockerVersion":"1.3.0","Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","Os":"linux","Parent":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Size":0,"VirtualSize":85100505}
|
36
29
|
http_version:
|
37
|
-
recorded_at:
|
30
|
+
recorded_at: Mon, 01 Dec 2014 18:08:54 GMT
|
38
31
|
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/images/debian:wheezy/json"
|
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.15.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,15 +19,13 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Mon, 01 Dec 2014 18:08:54 GMT
|
23
23
|
Content-Length:
|
24
|
-
- '
|
25
|
-
Connection:
|
26
|
-
- close
|
24
|
+
- '1460'
|
27
25
|
body:
|
28
26
|
encoding: UTF-8
|
29
27
|
string: |
|
30
|
-
{"Architecture":"","Author":"","Comment":"","Config":null,"Container":"
|
28
|
+
{"Architecture":"amd64","Author":"","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"064f0e1ce709","Image":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"418e851cf98f783363d17a6b469d7e9f5768298d6596b357592562c77d2b5323","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop) CMD [/bin/bash]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":[],"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"064f0e1ce709","Image":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2014-11-06T20:43:58.384012961Z","DockerVersion":"1.3.0","Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","Os":"linux","Parent":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Size":0,"VirtualSize":85100505}
|
31
29
|
http_version:
|
32
|
-
recorded_at:
|
33
|
-
recorded_with: VCR 2.9.
|
30
|
+
recorded_at: Mon, 01 Dec 2014 18:08:54 GMT
|
31
|
+
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=debian%3Awheezy"
|
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.15.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,207 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
- Mon,
|
22
|
+
- Mon, 01 Dec 2014 18:08:47 GMT
|
23
23
|
body:
|
24
24
|
encoding: UTF-8
|
25
|
-
string: "{\"status\":\"
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":526977,\"total\":94863360,\"start\":1414450799},\"progress\":\"[\\u003e
|
31
|
-
\ ] 527 kB/94.86 MB 3m19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1067649,\"total\":94863360,\"start\":1414450799},\"progress\":\"[\\u003e
|
32
|
-
\ ] 1.068 MB/94.86 MB 1m46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1608321,\"total\":94863360,\"start\":1414450799},\"progress\":\"[\\u003e
|
33
|
-
\ ] 1.608 MB/94.86 MB 1m15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2148993,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=\\u003e
|
34
|
-
\ ] 2.149 MB/94.86 MB 1m0s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2689665,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=\\u003e
|
35
|
-
\ ] 2.69 MB/94.86 MB 1m7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3230337,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=\\u003e
|
36
|
-
\ ] 3.23 MB/94.86 MB 1m7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3771009,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=\\u003e
|
37
|
-
\ ] 3.771 MB/94.86 MB 1m6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4311681,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==\\u003e
|
38
|
-
\ ] 4.312 MB/94.86 MB 1m5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4852353,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==\\u003e
|
39
|
-
\ ] 4.852 MB/94.86 MB 1m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5393025,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==\\u003e
|
40
|
-
\ ] 5.393 MB/94.86 MB 1m1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5933697,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===\\u003e
|
41
|
-
\ ] 5.934 MB/94.86 MB 59s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6474369,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===\\u003e
|
42
|
-
\ ] 6.474 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7015041,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===\\u003e
|
43
|
-
\ ] 7.015 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7555713,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===\\u003e
|
44
|
-
\ ] 7.556 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8096385,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====\\u003e
|
45
|
-
\ ] 8.096 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8637057,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====\\u003e
|
46
|
-
\ ] 8.637 MB/94.86 MB 52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9177729,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====\\u003e
|
47
|
-
\ ] 9.178 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9718401,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====\\u003e
|
48
|
-
\ ] 9.718 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10259073,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====\\u003e
|
49
|
-
\ ] 10.26 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10799745,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====\\u003e
|
50
|
-
\ ] 10.8 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11340417,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====\\u003e
|
51
|
-
\ ] 11.34 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11881089,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======\\u003e
|
52
|
-
\ ] 11.88 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12421761,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======\\u003e
|
53
|
-
\ ] 12.42 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12962433,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======\\u003e
|
54
|
-
\ ] 12.96 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13503105,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======\\u003e
|
55
|
-
\ ] 13.5 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14043777,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======\\u003e
|
56
|
-
\ ] 14.04 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14584449,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======\\u003e
|
57
|
-
\ ] 14.58 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15125121,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======\\u003e
|
58
|
-
\ ] 15.13 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15665793,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========\\u003e
|
59
|
-
\ ] 15.67 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16206465,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========\\u003e
|
60
|
-
\ ] 16.21 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16747137,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========\\u003e
|
61
|
-
\ ] 16.75 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17287809,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========\\u003e
|
62
|
-
\ ] 17.29 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17828481,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========\\u003e
|
63
|
-
\ ] 17.83 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18369153,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========\\u003e
|
64
|
-
\ ] 18.37 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18909825,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========\\u003e
|
65
|
-
\ ] 18.91 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19441201,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========\\u003e
|
66
|
-
\ ] 19.44 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19981873,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========\\u003e
|
67
|
-
\ ] 19.98 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20522545,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========\\u003e
|
68
|
-
\ ] 20.52 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21063217,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========\\u003e
|
69
|
-
\ ] 21.06 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21603889,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========\\u003e
|
70
|
-
\ ] 21.6 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22144561,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========\\u003e
|
71
|
-
\ ] 22.14 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22685233,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========\\u003e
|
72
|
-
\ ] 22.69 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23214714,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============\\u003e
|
73
|
-
\ ] 23.21 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23739538,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============\\u003e
|
74
|
-
\ ] 23.74 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24280210,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============\\u003e
|
75
|
-
\ ] 24.28 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24820882,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============\\u003e
|
76
|
-
\ ] 24.82 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25361554,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============\\u003e
|
77
|
-
\ ] 25.36 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25902226,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============\\u003e
|
78
|
-
\ ] 25.9 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26442898,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============\\u003e
|
79
|
-
\ ] 26.44 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26983570,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============\\u003e
|
80
|
-
\ ] 26.98 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27524242,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============\\u003e
|
81
|
-
\ ] 27.52 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28064914,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============\\u003e
|
82
|
-
\ ] 28.06 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28605586,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============\\u003e
|
83
|
-
\ ] 28.61 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29146258,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============\\u003e
|
84
|
-
\ ] 29.15 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29686930,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============\\u003e
|
85
|
-
\ ] 29.69 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30227602,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============\\u003e
|
86
|
-
\ ] 30.23 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30768274,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================\\u003e
|
87
|
-
\ ] 30.77 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31308946,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================\\u003e
|
88
|
-
\ ] 31.31 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31849618,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================\\u003e
|
89
|
-
\ ] 31.85 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32390290,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================\\u003e
|
90
|
-
\ ] 32.39 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32930962,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================\\u003e
|
91
|
-
\ ] 32.93 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33471634,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================\\u003e
|
92
|
-
\ ] 33.47 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34002530,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================\\u003e
|
93
|
-
\ ] 34 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34543202,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==================\\u003e
|
94
|
-
\ ] 34.54 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35083874,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==================\\u003e
|
95
|
-
\ ] 35.08 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35624546,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==================\\u003e
|
96
|
-
\ ] 35.62 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36165218,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===================\\u003e
|
97
|
-
\ ] 36.17 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36705890,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===================\\u003e
|
98
|
-
\ ] 36.71 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37245970,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===================\\u003e
|
99
|
-
\ ] 37.25 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37786642,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===================\\u003e
|
100
|
-
\ ] 37.79 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38327314,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====================\\u003e
|
101
|
-
\ ] 38.33 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38867986,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====================\\u003e
|
102
|
-
\ ] 38.87 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39408658,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====================\\u003e
|
103
|
-
\ ] 39.41 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39949330,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====================\\u003e
|
104
|
-
\ ] 39.95 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40490002,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====================\\u003e
|
105
|
-
\ ] 40.49 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41030674,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====================\\u003e
|
106
|
-
\ ] 41.03 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41571346,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====================\\u003e
|
107
|
-
\ ] 41.57 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42112018,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======================\\u003e
|
108
|
-
\ ] 42.11 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42652690,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======================\\u003e
|
109
|
-
\ ] 42.65 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43193362,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======================\\u003e
|
110
|
-
\ ] 43.19 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43734034,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======================\\u003e
|
111
|
-
\ ] 43.73 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44274706,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======================\\u003e
|
112
|
-
\ ] 44.27 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44815378,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======================\\u003e
|
113
|
-
\ ] 44.82 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45356050,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======================\\u003e
|
114
|
-
\ ] 45.36 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45896722,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========================\\u003e
|
115
|
-
\ ] 45.9 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46437394,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========================\\u003e
|
116
|
-
\ ] 46.44 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46978066,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========================\\u003e
|
117
|
-
\ ] 46.98 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47518738,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========================\\u003e
|
118
|
-
\ ] 47.52 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48059410,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========================\\u003e
|
119
|
-
\ ] 48.06 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48600082,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========================\\u003e
|
120
|
-
\ ] 48.6 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49140754,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========================\\u003e
|
121
|
-
\ ] 49.14 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49681426,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========================\\u003e
|
122
|
-
\ ] 49.68 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50222098,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========================\\u003e
|
123
|
-
\ ] 50.22 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50762770,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========================\\u003e
|
124
|
-
\ ] 50.76 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51303442,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========================\\u003e
|
125
|
-
\ ] 51.3 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51844114,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========================\\u003e
|
126
|
-
\ ] 51.84 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52384786,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========================\\u003e
|
127
|
-
\ ] 52.38 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52925458,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========================\\u003e
|
128
|
-
\ ] 52.93 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53466130,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============================\\u003e
|
129
|
-
\ ] 53.47 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54006802,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============================\\u003e
|
130
|
-
\ ] 54.01 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54547474,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============================\\u003e
|
131
|
-
\ ] 54.55 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55088146,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============================\\u003e
|
132
|
-
\ ] 55.09 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55628818,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============================\\u003e
|
133
|
-
\ ] 55.63 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56169490,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============================\\u003e
|
134
|
-
\ ] 56.17 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56710162,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============================\\u003e
|
135
|
-
\ ] 56.71 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57234754,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============================\\u003e
|
136
|
-
\ ] 57.23 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57775426,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============================\\u003e
|
137
|
-
\ ] 57.78 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58316098,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============================\\u003e
|
138
|
-
\ ] 58.32 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58856770,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============================\\u003e
|
139
|
-
\ ] 58.86 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59397442,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============================\\u003e
|
140
|
-
\ ] 59.4 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59938114,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============================\\u003e
|
141
|
-
\ ] 59.94 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60468778,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============================\\u003e
|
142
|
-
\ ] 60.47 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61009450,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================================\\u003e
|
143
|
-
\ ] 61.01 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61550122,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================================\\u003e
|
144
|
-
\ ] 61.55 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62090794,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================================\\u003e
|
145
|
-
\ ] 62.09 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62631466,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================================\\u003e
|
146
|
-
\ ] 62.63 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63172138,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================================\\u003e
|
147
|
-
\ ] 63.17 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63712810,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================================\\u003e
|
148
|
-
\ ] 63.71 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64253482,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================================\\u003e
|
149
|
-
\ ] 64.25 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64794154,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==================================\\u003e
|
150
|
-
\ ] 64.79 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65334826,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==================================\\u003e
|
151
|
-
\ ] 65.33 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65875498,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==================================\\u003e
|
152
|
-
\ ] 65.88 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66416170,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===================================\\u003e
|
153
|
-
\ ] 66.42 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66956842,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===================================\\u003e
|
154
|
-
\ ] 66.96 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67497514,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===================================\\u003e
|
155
|
-
\ ] 67.5 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68038186,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===================================\\u003e
|
156
|
-
\ ] 68.04 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68578858,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====================================\\u003e
|
157
|
-
\ ] 68.58 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69119530,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====================================\\u003e
|
158
|
-
\ ] 69.12 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69660202,\"total\":94863360,\"start\":1414450799},\"progress\":\"[====================================\\u003e
|
159
|
-
\ ] 69.66 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70200874,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====================================\\u003e
|
160
|
-
\ ] 70.2 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70741546,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====================================\\u003e
|
161
|
-
\ ] 70.74 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71282218,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====================================\\u003e
|
162
|
-
\ ] 71.28 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71822890,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=====================================\\u003e
|
163
|
-
\ ] 71.82 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72363562,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======================================\\u003e
|
164
|
-
\ ] 72.36 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72904234,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======================================\\u003e
|
165
|
-
\ ] 72.9 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73444906,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======================================\\u003e
|
166
|
-
\ ] 73.44 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73985578,\"total\":94863360,\"start\":1414450799},\"progress\":\"[======================================\\u003e
|
167
|
-
\ ] 73.99 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74526250,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======================================\\u003e
|
168
|
-
\ ] 74.53 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75066922,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======================================\\u003e
|
169
|
-
\ ] 75.07 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75607594,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=======================================\\u003e
|
170
|
-
\ ] 75.61 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76148266,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========================================\\u003e
|
171
|
-
\ ] 76.15 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76678601,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========================================\\u003e
|
172
|
-
\ ] 76.68 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77219271,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========================================\\u003e
|
173
|
-
\ ] 77.22 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77759943,\"total\":94863360,\"start\":1414450799},\"progress\":\"[========================================\\u003e
|
174
|
-
\ ] 77.76 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78300615,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========================================\\u003e
|
175
|
-
\ ] 78.3 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78841287,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========================================\\u003e
|
176
|
-
\ ] 78.84 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79381959,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=========================================\\u003e
|
177
|
-
\ ] 79.38 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79922631,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========================================\\u003e
|
178
|
-
\ ] 79.92 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80463303,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========================================\\u003e
|
179
|
-
\ ] 80.46 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81003975,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========================================\\u003e
|
180
|
-
\ ] 81 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81544647,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==========================================\\u003e
|
181
|
-
\ ] 81.54 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82085319,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========================================\\u003e
|
182
|
-
\ ] 82.09 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82625991,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========================================\\u003e
|
183
|
-
\ ] 82.63 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83166663,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===========================================\\u003e
|
184
|
-
\ ] 83.17 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83707335,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============================================\\u003e
|
185
|
-
\ ] 83.71 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84248007,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============================================\\u003e
|
186
|
-
\ ] 84.25 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84788679,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============================================\\u003e
|
187
|
-
\ ] 84.79 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85329351,\"total\":94863360,\"start\":1414450799},\"progress\":\"[============================================\\u003e
|
188
|
-
\ ] 85.33 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85870023,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============================================\\u003e
|
189
|
-
\ ] 85.87 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86410695,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============================================\\u003e
|
190
|
-
\ ] 86.41 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86951367,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=============================================\\u003e
|
191
|
-
\ ] 86.95 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87492039,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============================================\\u003e
|
192
|
-
\ ] 87.49 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88032711,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============================================\\u003e
|
193
|
-
\ ] 88.03 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88573383,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============================================\\u003e
|
194
|
-
\ ] 88.57 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89114055,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==============================================\\u003e
|
195
|
-
\ ] 89.11 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89654727,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============================================\\u003e
|
196
|
-
\ ] 89.65 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90195399,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============================================\\u003e
|
197
|
-
\ ] 90.2 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90736071,\"total\":94863360,\"start\":1414450799},\"progress\":\"[===============================================\\u003e
|
198
|
-
\ ] 90.74 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91276743,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================================================\\u003e
|
199
|
-
\ ] 91.28 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91801514,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================================================\\u003e
|
200
|
-
\ ] 91.8 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92337922,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================================================\\u003e
|
201
|
-
\ ] 92.34 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92878594,\"total\":94863360,\"start\":1414450799},\"progress\":\"[================================================\\u003e
|
202
|
-
\ ] 92.88 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93419266,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================================================\\u003e
|
203
|
-
] 93.42 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93959938,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================================================\\u003e
|
204
|
-
] 93.96 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94500610,\"total\":94863360,\"start\":1414450799},\"progress\":\"[=================================================\\u003e
|
205
|
-
] 94.5 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414450799},\"progress\":\"[==================================================\\u003e]
|
206
|
-
94.86 MB/94.86 MB\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
|
207
|
-
metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
|
208
|
-
fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10240,\"total\":10240,\"start\":1414450824},\"progress\":\"[==================================================\\u003e]
|
209
|
-
10.24 kB/10.24 kB\",\"id\":\"b750fe79269d\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
|
210
|
-
complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Status:
|
211
|
-
Downloaded newer image for base\"}\r\n"
|
25
|
+
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
26
|
+
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"f10807909bc5\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"f6fab3b798be\"}{\"status\":\"Status:
|
29
|
+
Image is up to date for debian:wheezy\"}\r\n"
|
212
30
|
http_version:
|
213
|
-
recorded_at: Mon,
|
31
|
+
recorded_at: Mon, 01 Dec 2014 18:08:47 GMT
|
214
32
|
- request:
|
215
33
|
method: get
|
216
|
-
uri:
|
34
|
+
uri: "<DOCKER_HOST>/v1.15/images/f6fab3b798be/history"
|
217
35
|
body:
|
218
36
|
encoding: US-ASCII
|
219
37
|
string: ''
|
220
38
|
headers:
|
221
39
|
User-Agent:
|
222
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.15.0
|
223
41
|
Content-Type:
|
224
42
|
- text/plain
|
225
43
|
response:
|
@@ -230,15 +48,16 @@ http_interactions:
|
|
230
48
|
Content-Type:
|
231
49
|
- application/json
|
232
50
|
Date:
|
233
|
-
- Mon,
|
51
|
+
- Mon, 01 Dec 2014 18:08:47 GMT
|
234
52
|
Content-Length:
|
235
|
-
- '
|
53
|
+
- '560'
|
236
54
|
body:
|
237
55
|
encoding: UTF-8
|
238
56
|
string: |-
|
239
|
-
[{"Created":
|
240
|
-
,{"Created":
|
57
|
+
[{"Created":1415306638,"CreatedBy":"/bin/sh -c #(nop) CMD [/bin/bash]","Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","Size":0,"Tags":["debian:wheezy"]}
|
58
|
+
,{"Created":1415306636,"CreatedBy":"/bin/sh -c #(nop) ADD file:01b419e635eb6bec686cabe0e261c4f3fb4dc206f4584ac01b21059a5d2f8b3b in /","Id":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","Size":85100505,"Tags":null}
|
59
|
+
,{"Created":1371157430,"CreatedBy":"","Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Size":0,"Tags":["scratch:latest"]}
|
241
60
|
]
|
242
61
|
http_version:
|
243
|
-
recorded_at: Mon,
|
62
|
+
recorded_at: Mon, 01 Dec 2014 18:08:47 GMT
|
244
63
|
recorded_with: VCR 2.9.3
|
@@ -10,7 +10,7 @@ http_interactions:
|
|
10
10
|
Accept-Encoding:
|
11
11
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
12
|
Accept:
|
13
|
-
-
|
13
|
+
- "*/*"
|
14
14
|
User-Agent:
|
15
15
|
- Ruby
|
16
16
|
response:
|
@@ -23,9 +23,9 @@ http_interactions:
|
|
23
23
|
Content-Type:
|
24
24
|
- text/html; charset=UTF-8
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Mon, 01 Dec 2014 18:08:54 GMT
|
27
27
|
Expires:
|
28
|
-
-
|
28
|
+
- Wed, 31 Dec 2014 18:08:54 GMT
|
29
29
|
Cache-Control:
|
30
30
|
- public, max-age=2592000
|
31
31
|
Server:
|
@@ -37,14 +37,14 @@ http_interactions:
|
|
37
37
|
X-Frame-Options:
|
38
38
|
- SAMEORIGIN
|
39
39
|
Alternate-Protocol:
|
40
|
-
- 80:quic
|
40
|
+
- 80:quic,p=0.02
|
41
41
|
body:
|
42
42
|
encoding: UTF-8
|
43
43
|
string: "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n<TITLE>301
|
44
44
|
Moved</TITLE></HEAD><BODY>\n<H1>301 Moved</H1>\nThe document has moved\n<A
|
45
45
|
HREF=\"http://www.google.com/\">here</A>.\r\n</BODY></HTML>\r\n"
|
46
46
|
http_version:
|
47
|
-
recorded_at:
|
47
|
+
recorded_at: Mon, 01 Dec 2014 18:08:54 GMT
|
48
48
|
- request:
|
49
49
|
method: get
|
50
50
|
uri: http://www.google.com/
|
@@ -55,7 +55,7 @@ http_interactions:
|
|
55
55
|
Accept-Encoding:
|
56
56
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
57
57
|
Accept:
|
58
|
-
-
|
58
|
+
- "*/*"
|
59
59
|
User-Agent:
|
60
60
|
- Ruby
|
61
61
|
response:
|
@@ -64,18 +64,18 @@ http_interactions:
|
|
64
64
|
message: OK
|
65
65
|
headers:
|
66
66
|
Date:
|
67
|
-
-
|
67
|
+
- Mon, 01 Dec 2014 18:08:55 GMT
|
68
68
|
Expires:
|
69
|
-
-
|
69
|
+
- "-1"
|
70
70
|
Cache-Control:
|
71
71
|
- private, max-age=0
|
72
72
|
Content-Type:
|
73
73
|
- text/html; charset=ISO-8859-1
|
74
74
|
Set-Cookie:
|
75
|
-
- NID=67=
|
76
|
-
expires=
|
77
|
-
- PREF=ID=
|
78
|
-
expires=
|
75
|
+
- NID=67=es6W5PiKvpEKEhrNDM1OmtJ9MmwO3zt9BOx4Be7otLPTCGr7jdI_IGTGIwlSgy5AWgUxtQu_T6PRJNgh2z8j_oC32fv1j5p2Jaqf3lkaYYXF_oy3qyKkXHDqtNkTPMz0;
|
76
|
+
expires=Tue, 02-Jun-2015 18:08:55 GMT; path=/; domain=.google.com; HttpOnly
|
77
|
+
- PREF=ID=9ce33111850699cc:FF=0:TM=1417457334:LM=1417457335:S=Q9-Ds7NLFBSVGY6z;
|
78
|
+
expires=Wed, 30-Nov-2016 18:08:55 GMT; path=/; domain=.google.com
|
79
79
|
P3p:
|
80
80
|
- CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657
|
81
81
|
for more info."
|
@@ -86,34 +86,32 @@ http_interactions:
|
|
86
86
|
X-Frame-Options:
|
87
87
|
- SAMEORIGIN
|
88
88
|
Alternate-Protocol:
|
89
|
-
- 80:quic
|
89
|
+
- 80:quic,p=0.02
|
90
90
|
Transfer-Encoding:
|
91
91
|
- chunked
|
92
92
|
body:
|
93
93
|
encoding: UTF-8
|
94
94
|
string: |-
|
95
|
-
<!doctype html><html itemscope="" itemtype="http://schema.org/WebPage" lang="en"><head><meta content="Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for." name="description"><meta content="noodp" name="robots"><meta content="/images/google_favicon_128.png" itemprop="image"><title>Google</title><script>(function(){
|
96
|
-
window.google
|
97
|
-
log:function(a,c,b,e,d){var f=new Image,h=google.lc,g=google.li,k="",l="";f.onerror=f.onload=f.onabort=function(){delete h[g]};h[g]=f;b||-1!=c.search("&ei=")||(k="&ei="+google.getEI(e));b=b||"/"+(d||"gen_204")+"?atyp=i&ct="+a+"&cad="+c+k+l+"&zx="+google.time();a=/^http:/i;a.test(b)&&google.https()?(google.ml(Error("GLMM"),!1,{src:b}),delete h[g]):(f.src=b,google.li=g+1)},lc:[],
|
98
|
-
li:0,y:{},x:function(a,c){google.y[a.id]=[a,c];return!1},load:function(a,c,b){google.x({id:a+m++},function(){google.load(a,c,b)})}};var m=0;})();
|
99
|
-
var _gjwl=location;function _gjuc(){var a=_gjwl.href.indexOf("#");if(0<=a&&(a=_gjwl.href.substring(a),0<a.indexOf("&q=")||0<=a.indexOf("#q="))&&(a=a.substring(1),-1==a.indexOf("#"))){for(var d=0;d<a.length;){var b=d;"&"==a.charAt(b)&&++b;var c=a.indexOf("&",b);-1==c&&(c=a.length);b=a.substring(b,c);if(0==b.indexOf("fp="))a=a.substring(0,d)+a.substring(c,a.length),c=d;else if("cad=h"==b)return 0;d=c}_gjwl.href="/search?"+a+"&cad=h";return 1}return 0}
|
100
|
-
function _gjh(){!_gjuc()&&window.google&&google.x&&google.x({id:"GJH"},function(){google.nav&&google.nav.gjh&&google.nav.gjh()})};
|
101
|
-
window._gjh&&_gjh();</script><style>#gbar,#guser{font-size:13px;padding-top:1px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}</style><style>body,td,a,p,.h{font-family:arial,sans-serif}body{margin:0;overflow-y:scroll}#gog{padding:3px 8px 0}td{line-height:.8em}.gac_m td{line-height:17px}form{margin-bottom:20px}.h{color:#36c}.q{color:#00c}.ts td{padding:0}.ts{border-collapse:collapse}em{font-weight:bold;font-style:normal}.lst{height:25px;width:496px}.gsfi,.lst{font:18px arial,sans-serif}.gsfs{font:17px arial,sans-serif}.ds{display:inline-box;display:inline-block;margin:3px 0 4px;margin-left:4px}input{font-family:inherit}a.gb1,a.gb2,a.gb3,a.gb4{color:#11c !important}body{background:#fff;color:black}a{color:#11c;text-decoration:none}a:hover,a:active{text-decoration:underline}.fl a{color:#36c}a:visited{color:#551a8b}a.gb1,a.gb4{text-decoration:underline}a.gb3:hover{text-decoration:none}#ghead a.gb2:hover{color:#fff !important}.sblc{padding-top:5px}.sblc a{display:block;margin:2px 0;margin-left:13px;font-size:11px}.lsbb{background:#eee;border:solid 1px;border-color:#ccc #999 #999 #ccc;height:30px}.lsbb{display:block}.ftl,#fll a{display:inline-block;margin:0 12px}.lsb{background:url(/images/srpr/nav_logo80.png) 0 -258px repeat-x;border:none;color:#000;cursor:pointer;height:30px;margin:0;outline:0;font:15px arial,sans-serif;vertical-align:top}.lsb:active{background:#ccc}.lst:focus{outline:none}#addlang a{padding:0 3px}</style><script></script></head><body bgcolor="#fff"><script>(function(){var src='/images/nav_logo176.png';var iesg=false;document.body.onload = function(){window.n && window.n();if (document.images){new Image().src=src;}
|
95
|
+
<!doctype html><html itemscope="" itemtype="http://schema.org/WebPage" lang="en"><head><meta content="Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for." name="description"><meta content="noodp" name="robots"><meta content="/images/google_favicon_128.png" itemprop="image"><title>Google</title><script>(function(){window.google={kEI:'tq58VKmaMajlsASbmYCQAw',kEXPI:'4011559,4016824,4017578,4020346,4020562,4021598,4022495,4023367,4023567,4024006,4024681,4024932,4025285,8500394,8500756,8500820,10200084,10200716,10200743,10200791,10200852',authuser:0,kSID:'tq58VKmaMajlsASbmYCQAw'};google.kHL='en';})();(function(){google.lc=[];google.li=0;google.getEI=function(a){for(var b;a&&(!a.getAttribute||!(b=a.getAttribute("eid")));)a=a.parentNode;return b||google.kEI};google.https=function(){return"https:"==window.location.protocol};google.ml=function(){};google.time=function(){return(new Date).getTime()};google.log=function(a,b,d,e,k){var c=new Image,h=google.lc,f=google.li,g="",l=google.ls||"";c.onerror=c.onload=c.onabort=function(){delete h[f]};h[f]=c;d||-1!=b.search("&ei=")||(e=google.getEI(e),g="&ei="+e,e!=google.kEI&&(g+="&lei="+google.kEI));a=d||"/"+(k||"gen_204")+"?atyp=i&ct="+a+"&cad="+b+g+l+"&zx="+google.time();/^http:/i.test(a)&&google.https()?(google.ml(Error("a"),!1,{src:a,glmm:1}),delete h[f]):(c.src=a,google.li=f+1)};google.y={};google.x=function(a,b){google.y[a.id]=[a,b];return!1};google.load=function(a,b,d){google.x({id:a+m++},function(){google.load(a,b,d)})};var m=0;})();google.kCSI={};var _gjwl=location;function _gjuc(){var a=_gjwl.href.indexOf("#");if(0<=a&&(a=_gjwl.href.substring(a),0<a.indexOf("&q=")||0<=a.indexOf("#q="))&&(a=a.substring(1),-1==a.indexOf("#"))){for(var d=0;d<a.length;){var b=d;"&"==a.charAt(b)&&++b;var c=a.indexOf("&",b);-1==c&&(c=a.length);b=a.substring(b,c);if(0==b.indexOf("fp="))a=a.substring(0,d)+a.substring(c,a.length),c=d;else if("cad=h"==b)return 0;d=c}_gjwl.href="/search?"+a+"&cad=h";return 1}return 0}
|
96
|
+
function _gjh(){!_gjuc()&&window.google&&google.x&&google.x({id:"GJH"},function(){google.nav&&google.nav.gjh&&google.nav.gjh()})};window._gjh&&_gjh();</script><style>#gbar,#guser{font-size:13px;padding-top:1px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}</style><style>body,td,a,p,.h{font-family:arial,sans-serif}body{margin:0;overflow-y:scroll}#gog{padding:3px 8px 0}td{line-height:.8em}.gac_m td{line-height:17px}form{margin-bottom:20px}.h{color:#36c}.q{color:#00c}.ts td{padding:0}.ts{border-collapse:collapse}em{font-weight:bold;font-style:normal}.lst{height:25px;width:496px}.gsfi,.lst{font:18px arial,sans-serif}.gsfs{font:17px arial,sans-serif}.ds{display:inline-box;display:inline-block;margin:3px 0 4px;margin-left:4px}input{font-family:inherit}a.gb1,a.gb2,a.gb3,a.gb4{color:#11c !important}body{background:#fff;color:black}a{color:#11c;text-decoration:none}a:hover,a:active{text-decoration:underline}.fl a{color:#36c}a:visited{color:#551a8b}a.gb1,a.gb4{text-decoration:underline}a.gb3:hover{text-decoration:none}#ghead a.gb2:hover{color:#fff !important}.sblc{padding-top:5px}.sblc a{display:block;margin:2px 0;margin-left:13px;font-size:11px}.lsbb{background:#eee;border:solid 1px;border-color:#ccc #999 #999 #ccc;height:30px}.lsbb{display:block}.ftl,#fll a{display:inline-block;margin:0 12px}.lsb{background:url(/images/srpr/nav_logo80.png) 0 -258px repeat-x;border:none;color:#000;cursor:pointer;height:30px;margin:0;outline:0;font:15px arial,sans-serif;vertical-align:top}.lsb:active{background:#ccc}.lst:focus{outline:none}</style><script></script></head><body bgcolor="#fff"><script>(function(){var src='/images/nav_logo176.png';var iesg=false;document.body.onload = function(){window.n && window.n();if (document.images){new Image().src=src;}
|
102
97
|
if (!iesg){document.f&&document.f.q.focus();document.gbqf&&document.gbqf.q.focus();}
|
103
98
|
}
|
104
|
-
})();</script><div id="mngb"> <div id=gbar><nobr><b class=gb1>Search</b> <a class=gb1 href="http://www.google.com/imghp?hl=en&tab=wi">Images</a> <a class=gb1 href="http://maps.google.com/maps?hl=en&tab=wl">Maps</a> <a class=gb1 href="https://play.google.com/?hl=en&tab=w8">Play</a> <a class=gb1 href="http://www.youtube.com/?tab=w1">YouTube</a> <a class=gb1 href="http://news.google.com/nwshp?hl=en&tab=wn">News</a> <a class=gb1 href="https://mail.google.com/mail/?tab=wm">Gmail</a> <a class=gb1 href="https://drive.google.com/?tab=wo">Drive</a> <a class=gb1 style="text-decoration:none" href="http://www.google.com/intl/en/options/"><u>More</u> »</a></nobr></div><div id=guser width=100%><nobr><span id=gbn class=gbi></span><span id=gbf class=gbf></span><span id=gbe></span><a href="http://www.google.com/history/optout?hl=en" class=gb4>Web History</a> | <a href="/preferences?hl=en" class=gb4>Settings</a> | <a target=_top id=gb_70 href="https://accounts.google.com/ServiceLogin?hl=en&continue=http://www.google.com/" class=gb4>Sign in</a></nobr></div><div class=gbh style=left:0></div><div class=gbh style=right:0></div> </div><center><
|
105
|
-
|
99
|
+
})();</script><div id="mngb"> <div id=gbar><nobr><b class=gb1>Search</b> <a class=gb1 href="http://www.google.com/imghp?hl=en&tab=wi">Images</a> <a class=gb1 href="http://maps.google.com/maps?hl=en&tab=wl">Maps</a> <a class=gb1 href="https://play.google.com/?hl=en&tab=w8">Play</a> <a class=gb1 href="http://www.youtube.com/?tab=w1">YouTube</a> <a class=gb1 href="http://news.google.com/nwshp?hl=en&tab=wn">News</a> <a class=gb1 href="https://mail.google.com/mail/?tab=wm">Gmail</a> <a class=gb1 href="https://drive.google.com/?tab=wo">Drive</a> <a class=gb1 style="text-decoration:none" href="http://www.google.com/intl/en/options/"><u>More</u> »</a></nobr></div><div id=guser width=100%><nobr><span id=gbn class=gbi></span><span id=gbf class=gbf></span><span id=gbe></span><a href="http://www.google.com/history/optout?hl=en" class=gb4>Web History</a> | <a href="/preferences?hl=en" class=gb4>Settings</a> | <a target=_top id=gb_70 href="https://accounts.google.com/ServiceLogin?hl=en&continue=http://www.google.com/" class=gb4>Sign in</a></nobr></div><div class=gbh style=left:0></div><div class=gbh style=right:0></div> </div><center><span id="prt" style="display:block"> <div><style>.pmoabs{background-color:#fff;border:1px solid #E5E5E5;color:#666;font-size:13px;padding-bottom:20px;position:absolute;right:2px;top:3px;z-index:986}#pmolnk{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px}.kd-button-submit{border:1px solid #3079ed;background-color:#4d90fe;background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:-moz-linear-gradient(top,#4d90fe,#4787ed);background-image:-ms-linear-gradient(top,#4d90fe,#4787ed);background-image:-o-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',EndColorStr='#4787ed')}.kd-button-submit:hover{border:1px solid #2f5bb7;background-color:#357ae8;background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:-moz-linear-gradient(top,#4d90fe,#357ae8);background-image:-ms-linear-gradient(top,#4d90fe,#357ae8);background-image:-o-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',EndColorStr='#357ae8')}.kd-button-submit:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 2px rgba(0,0,0,0.3)}#pmolnk a{color:#fff;display:inline-block;font-weight:bold;padding:5px 20px;text-decoration:none;white-space:nowrap}.xbtn{color:#999;cursor:pointer;font-size:23px;line-height:5px;padding-top:5px}.padi{padding:0 8px 0 10px}.padt{padding:5px 20px 0 0;color:#444}.pads{text-align:left;max-width:200px}</style> <div class="pmoabs" id="pmocntr2" style="behavior:url(#default#userdata);display:none"> <table border="0"> <tr> <td colspan="2"> <div class="xbtn" onclick="google.promos&&google.promos.toast&& google.promos.toast.cpc()" style="float:right">×</div> </td> </tr> <tr> <td class="padi" rowspan="2"> <img src="/images/icons/product/chrome-48.png"> </td> <td class="pads">A faster way to browse the web</td> </tr> <tr> <td class="padt"> <div class="kd-button-submit" id="pmolnk"> <a href="/chrome/index.html?hl=en&brand=CHNG&utm_source=en-hpp&utm_medium=hpp&utm_campaign=en" onclick="google.promos&&google.promos.toast&& google.promos.toast.cl()">Install Google Chrome</a> </div> </td> </tr> </table> </div> <script type="text/javascript">(function(){var a={o:{}};a.o.Pa=50;a.o.Oa=10;a.o.ca="body";a.o.La=!0;a.o.Ea=function(b,c){var d=a.o.Ja();a.o.Ka(d,b,c);a.o.Na(d);a.o.La&&a.o.Ma(d)};a.o.Na=function(b){(b=a.o.ba(b))&&0<b.forms.length&&b.forms[0].submit()};a.o.Ja=function(){var b=document.createElement("iframe");b.height=0;b.width=0;b.style.overflow="hidden";b.style.top=b.style.left="-100px";b.style.position="absolute";document.body.appendChild(b);return b};a.o.ba=function(b){return b.contentDocument||b.contentWindow.document};a.o.Ka=function(b,c,d){b=a.o.ba(b);b.open();d=["<",a.o.ca,'><form method=POST action="',d,'">'];for(var e in c)c.hasOwnProperty(e)&&d.push('<textarea name="',e,'">',c[e],"</textarea>");d.push("</form></",a.o.ca,">");b.write(d.join(""));b.close()};a.o.aa=function(b,c){c>a.o.Oa?google&&google.ml&&google.ml(Error("ogcdr"),!1,{cause:"timeout"}):b.contentWindow?a.o.Qa(b):window.setTimeout(function(){a.o.aa(b,c+1)},a.o.Pa)};a.o.Qa=function(b){document.body.removeChild(b)};a.o.Ma=function(b){a.o.Ra(b,"load",function(){a.o.aa(b,0)})};a.o.Ra=function(b,c,d){b.addEventListener?b.addEventListener(c,d,!1):b.attachEvent&&b.attachEvent("on"+c,d)};var m={Va:0,D:1,F:2,S:5};a.k={};a.k.T={Ha:"i",X:"d",Ia:"l"};a.k.A={R:"0",H:"1"};a.k.U={O:1,X:2,P:3};a.k.w={ta:"a",wa:"g",C:"c",za:"u",ya:"t",R:"p",xa:"pid",va:"eid",Aa:"at"};a.k.Ca=window.location.protocol+"//www.google.com/_/og/promos/";a.k.Ba="g";a.k.Da="z";a.k.Q=function(b,c,d,e){var f=null;switch(c){case m.D:f=window.gbar.up.gpd(b,d,!0);break;case m.S:f=window.gbar.up.gcc(e)}return null==f?0:parseInt(f,10)};a.k.ia=function(b,c,d){return c==m.D?null!=window.gbar.up.gpd(b,d,!0):!1};a.k.V=function(b,c,d,e,f,h,k,l){var g={};g[a.k.w.R]=b;g[a.k.w.wa]=c;g[a.k.w.ta]=d;g[a.k.w.Aa]=e;g[a.k.w.va]=f;g[a.k.w.xa]=1;k&&(g[a.k.w.C]=k);l&&(g[a.k.w.za]=l);if(h)g[a.k.w.ya]=h;else return google.ml(Error("knu"),!1,{cause:"Token is not found"}),null;return g};a.k.W=function(b,c,d){if(b){var e=c?a.k.Ba:a.k.Da;c&&d&&(e+="?authuser="+d);a.o.Ea(b,a.k.Ca+e)}};a.k.Ga=function(b,c,d,e,f,h,k){b=a.k.V(c,b,a.k.T.X,a.k.U.X,d,f,null,e);a.k.W(b,h,k)};a.k.Fa=function(b,c,d,e,f,h,k){b=a.k.V(c,b,a.k.T.Ha,a.k.U.O,d,f,e,null);a.k.W(b,h,k)};a.k.la=function(b,c,d,e,f,h,k,l,g,n){switch(c){case m.S:window.gbar.up.dpc(e,f);break;case m.D:window.gbar.up.spd(b,d,1,!0);break;case m.F:g=g||!1,l=l||"",h=h||0,k=k||a.k.A.H,n=n||0,a.k.Ga(e,h,k,f,l,g,n)}};a.k.ja=function(b,c,d,e,f){return c==m.D?0<d&&a.k.Q(b,c,e,f)>=d:!1};a.k.ga=function(b,c,d,e,f,h,k,l,g,n){switch(c){case m.S:window.gbar.up.iic(e,f);break;case m.D:c=a.k.Q(b,c,d,e)+1;window.gbar.up.spd(b,d,c.toString(),!0);break;case m.F:g=g||!1,l=l||"",h=h||0,k=k||a.k.A.R,n=n||0,a.k.Fa(e,h,k,1,l,g,n)}};a.k.na=function(b,c,d,e,f,h){b=a.k.V(c,b,a.k.T.Ia,a.k.U.P,d,e,null,null);a.k.W(b,f,h)};var p={Ta:"a",Wa:"l",Ua:"c",ka:"d",P:"h",O:"i",gb:"n",H:"x",cb:"ma",eb:"mc",fb:"mi",Xa:"pa",Ya:"pc",$a:"pi",bb:"pn",ab:"px",Za:"pd",hb:"gpa",jb:"gpi",kb:"gpn",lb:"gpx",ib:"gpd"};a.i={};a.i.v={oa:"hplogo",Sa:"pmocntr2"};a.i.A={ea:"0",H:"1",ma:"2"};a.i.p=document.getElementById(a.i.v.Sa);a.i.pa=16;a.i.qa=2;a.i.ra=20;google.promos=google.promos||{};google.promos.toast=google.promos.toast||{};a.i.G=function(b){a.i.p&&(a.i.p.style.display=b?"":"none",a.i.p.parentNode&&(a.i.p.parentNode.style.position=b?"relative":""))};a.i.$=function(b){try{if(a.i.p&&b&&b.es&&b.es.m){var c=window.gbar.rtl(document.body)?"left":"right";a.i.p.style[c]=b.es.m-a.i.pa+a.i.qa+"px";a.i.p.style.top=a.i.ra+"px"}}catch(d){google.ml(d,!1,{cause:a.i.s+"_PT"})}};google.promos.toast.cl=function(){try{a.i.I==m.F&&a.k.na(a.i.J,a.i.B,a.i.A.ma,a.i.N,a.i.L,a.i.M),window.gbar.up.sl(a.i.B,a.i.s,p.P,a.i.K(),1)}catch(b){google.ml(b,!1,{cause:a.i.s+"_CL"})}};google.promos.toast.cpc=function(){try{a.i.p&&(a.i.G(!1),a.k.la(a.i.p,a.i.I,a.i.v.Y,a.i.J,a.i.da,a.i.B,a.i.A.H,a.i.N,a.i.L,a.i.M),window.gbar.up.sl(a.i.B,a.i.s,p.ka,a.i.K(),1))}catch(b){google.ml(b,!1,{cause:a.i.s+"_CPC"})}};a.i.Z=function(){try{if(a.i.p){var b=276,c=document.getElementById(a.i.v.oa);c&&(b=Math.max(b,c.offsetWidth));var d=parseInt(a.i.p.style.right,10)||0;a.i.p.style.visibility=2*(a.i.p.offsetWidth+d)+b>document.body.clientWidth?"hidden":""}}catch(e){google.ml(e,!1,{cause:a.i.s+"_HOSW"})}};a.i.fa=function(){var b=["gpd","spd","aeh","sl"];if(!window.gbar||!window.gbar.up)return!1;for(var c=0,d;d=b[c];c++)if(!(d in window.gbar.up))return!1;return!0};a.i.ha=function(){return a.i.p.currentStyle&&"absolute"!=a.i.p.currentStyle.position};google.promos.toast.init=function(b,c,d,e,f,h,k,l,g,n,q,r){try{a.i.fa()?a.i.p&&(e==m.F&&!l==!g?(google.ml(Error("tku"),!1,{cause:"zwieback: "+g+", gaia: "+l}),a.i.G(!1)):(a.i.v.C="toast_count_"+c+(q?"_"+q:""),a.i.v.Y="toast_dp_"+c+(r?"_"+r:""),a.i.s=d,a.i.B=b,a.i.I=e,a.i.J=c,a.i.da=f,a.i.N=l?l:g,a.i.L=!!l,a.i.M=k,a.k.ia(a.i.p,e,a.i.v.Y,c)||a.k.ja(a.i.p,e,h,a.i.v.C,c)||a.i.ha()?a.i.G(!1):(a.k.ga(a.i.p,e,a.i.v.C,c,f,a.i.B,a.i.A.ea,a.i.N,a.i.L,a.i.M),n||(window.gbar.up.aeh(window,"resize",a.i.Z),window.lol=
|
100
|
+
a.i.Z,window.gbar.elr&&a.i.$(window.gbar.elr()),window.gbar.elc&&window.gbar.elc(a.i.$),a.i.G(!0)),window.gbar.up.sl(a.i.B,a.i.s,p.O,a.i.K())))):google.ml(Error("apa"),!1,{cause:a.i.s+"_INIT"})}catch(s){google.ml(s,!1,{cause:a.i.s+"_INIT"})}};a.i.K=function(){var b=a.k.Q(a.i.p,a.i.I,a.i.v.C,a.i.J);return"ic="+b};})();</script> <script type="text/javascript">(function(){var sourceWebappPromoID=144002;var sourceWebappGroupID=5;var payloadType=5;var cookieMaxAgeSec=2592000;var dismissalType=5;var impressionCap=25;var gaiaXsrfToken='';var zwbkXsrfToken='';var kansasDismissalEnabled=false;var sessionIndex=0;var invisible=false;window.gbar&&gbar.up&&gbar.up.r&&gbar.up.r(payloadType,function(show){if (show){google.promos.toast.init(sourceWebappPromoID,sourceWebappGroupID,payloadType,dismissalType,cookieMaxAgeSec,impressionCap,sessionIndex,gaiaXsrfToken,zwbkXsrfToken,invisible,'0612');}
|
101
|
+
});})();</script> </div> </span><br clear="all" id="lgpd"><div id="lga"><img alt="Google" height="95" src="/images/srpr/logo9w.png" style="padding:28px 0 14px" width="269" id="hplogo" onload="window.lol&&lol()"><br><br></div><form action="/search" name="f"><table cellpadding="0" cellspacing="0"><tr valign="top"><td width="25%"> </td><td align="center" nowrap=""><input name="ie" value="ISO-8859-1" type="hidden"><input value="en" name="hl" type="hidden"><input name="source" type="hidden" value="hp"><div class="ds" style="height:32px;margin:4px 0"><input style="color:#000;margin:0;padding:5px 8px 0 6px;vertical-align:top" autocomplete="off" class="lst" value="" title="Google Search" maxlength="2048" name="q" size="57"></div><br style="line-height:0"><span class="ds"><span class="lsbb"><input class="lsb" value="Google Search" name="btnG" type="submit"></span></span><span class="ds"><span class="lsbb"><input class="lsb" value="I'm Feeling Lucky" name="btnI" onclick="if(this.form.q.value)this.checked=1; else top.location='/doodles/'" type="submit"></span></span></td><td class="fl sblc" align="left" nowrap="" width="25%"><a href="/advanced_search?hl=en&authuser=0">Advanced search</a><a href="/language_tools?hl=en&authuser=0">Language tools</a></td></tr></table><input id="gbv" name="gbv" type="hidden" value="1"></form><div id="gac_scont"></div><div style="font-size:83%;min-height:3.5em"><br><div id="prm"><font id="hpplink" size="-1" style="behavior:url(#default#userdata);display:none"><span style="color:red"></span>Put some cyber in your Monday <a href="http://www.google.com/intl/en_us/chrome/devices/chromecast/index.html?utm_source=google&utm_medium=HPP&utm_campaign=UScybermonday" onclick="google.promos&&google.promos.link&& google.promos.link.cl()">with Chromecast</a></font><br><br><br><script type="text/javascript">(function(){var e={ACCEPT:"a",LIMITED_ACCEPT:"l",CANCEL:"c",DISMISS:"d",CLICK:"h",IMPRESSION:"i",NO_THANKS:"n",X_BUTTON:"x",MGMHP_ACCEPT:"ma",MGMHP_CANCEL:"mc",MGMHP_IMPRESSION:"mi",MGMHPPD_ACCEPT:"pa",MGMHPPD_CANCEL:"pc",MGMHPPD_IMPRESSION:"pi",MGMHPPD_NO_THANKS:"pn",MGMHPPD_NO_BUTTON:"px",MGMHPPD_DISMISS:"pd",PUSHDOWN_ACCEPT:"gpa",PUSHDOWN_IMPRESSION:"gpi",PUSHDOWN_NO_THANKS:"gpn",PUSHDOWN_X_BUTTON:"gpx",PUSHDOWN_DISMISS:"gpd"};var f,g,h=0,k;google.promos=google.promos||{};google.promos.link=google.promos.link||{};google.promos.link.getExtraLogData_=function(b){var a=document.getElementById(k);if(a){var c=g+"_upccb",d=parseInt(window.gbar.up.gpd(a,c)||0,10);d++;h++;window.gbar.up.spd(a,c,d);a=[["upcc",h].join("="),["upccb",d].join("=")];b&&a.push(b);return a.join("&")}return""};google.promos.link.cl=function(b){try{window.gbar.up.sl(g,f,e.CLICK,google.promos.link.getExtraLogData_(b),1)}catch(a){google.ml(a,!1,{cause:f+"_CL"})}};function l(){var b=["gpd","spd","sl"];if(!window.gbar||!window.gbar.up)return!1;for(var a=0,c;c=b[a];a++)if(!(c in window.gbar.up))return!1;return!0}google.promos.link.init=function(b,a,c){try{if(l()){g=b;f=a;k=c;var d=document.getElementById(k);d&&(d.style.display="",window.gbar.up.sl(g,f,e.IMPRESSION))}else google.ml(Error("apa"),!1,{cause:a+"_INIT"})}catch(m){google.ml(m,!1,{cause:f+"_INIT"})}};})();</script><script>(function(){var sourceWebappPromoID=5078213;var payloadType=3;window.gbar&&gbar.up&&gbar.up.r&&gbar.up.r(payloadType,function(show){if (show){google.promos.link.init(sourceWebappPromoID,payloadType,'hpplink');}
|
102
|
+
});})();</script></div></div><span id="footer"><div style="font-size:10pt"><div style="margin:19px auto;text-align:center" id="fll"><a href="/intl/en/ads/">Advertising Programs</a><a href="/services/">Business Solutions</a><a href="https://plus.google.com/116899029375914044550" rel="publisher">+Google</a><a href="/intl/en/about.html">About Google</a></div></div><p style="color:#767676;font-size:8pt">© 2013 - <a href="/intl/en/policies/">Privacy & Terms</a></p></span></center><div id="xjsd"></div><div id="xjsi" data-jiis="bp"><script>(function(){function c(b){window.setTimeout(function(){var a=document.createElement("script");a.src=b;document.getElementById("xjsd").appendChild(a)},0)}google.dljp=function(b,a){google.xjsu=b;c(a)};google.dlj=c;})();(function(){window.google.xjsrm=[];})();if(google.y)google.y.first=[];if(!google.xjs){window._=window._||{};window._._DumpException=function(e){throw e};if(google.timers&&google.timers.load.t){google.timers.load.t.xjsls=new Date().getTime();}google.dljp('/xjs/_/js/k\x3dxjs.hp.en_US.ZMYx9JMchDk.O/m\x3dsb_he,pcc/rt\x3dj/d\x3d1/t\x3dzcms/rs\x3dACT90oEq8v5S93utK9yPFj9oJw-Vird4zA','/xjs/_/js/k\x3dxjs.hp.en_US.ZMYx9JMchDk.O/m\x3dsb_he,pcc/rt\x3dj/d\x3d1/t\x3dzcms/rs\x3dACT90oEq8v5S93utK9yPFj9oJw-Vird4zA');google.xjs=1;}google.pmc={"sb_he":{"agen":true,"cgen":true,"client":"heirloom-hp","dh":true,"ds":"","eqch":true,"fl":true,"host":"google.com","jam":0,"jsonp":true,"msgs":{"cibl":"Clear Search","dym":"Did you mean:","lcky":"I\u0026#39;m Feeling Lucky","lml":"Learn more","oskt":"Input tools","psrc":"This search was removed from your \u003Ca href=\"/history\"\u003EWeb History\u003C/a\u003E","psrl":"Remove","sbit":"Search by image","srch":"Google Search"},"ovr":{},"pq":"","qcpw":false,"refoq":true,"scd":10,"sce":5,"stok":"vDYIgESYbWKJyPjAHJ7chwonuVM"},"pcc":{}};google.y.first.push(function(){if(google.med){google.med('init');google.initHistory();google.med('history');}});if(google.j&&google.j.en&&google.j.xi){window.setTimeout(google.j.xi,0);}
|
103
|
+
</script></div></body></html>
|
106
104
|
http_version:
|
107
|
-
recorded_at:
|
105
|
+
recorded_at: Mon, 01 Dec 2014 18:08:55 GMT
|
108
106
|
- request:
|
109
107
|
method: post
|
110
|
-
uri:
|
108
|
+
uri: "<DOCKER_HOST>/v1.15/images/create?fromSrc=-"
|
111
109
|
body:
|
112
110
|
encoding: US-ASCII
|
113
111
|
string: ''
|
114
112
|
headers:
|
115
113
|
User-Agent:
|
116
|
-
- Swipely/Docker-API 1.
|
114
|
+
- Swipely/Docker-API 1.15.0
|
117
115
|
Content-Type:
|
118
116
|
- application/tar
|
119
117
|
Transfer-Encoding:
|
@@ -126,15 +124,13 @@ http_interactions:
|
|
126
124
|
Content-Type:
|
127
125
|
- text/plain; charset=utf-8
|
128
126
|
Date:
|
129
|
-
-
|
127
|
+
- Mon, 01 Dec 2014 18:08:55 GMT
|
130
128
|
Content-Length:
|
131
129
|
- '32'
|
132
|
-
Connection:
|
133
|
-
- close
|
134
130
|
body:
|
135
131
|
encoding: UTF-8
|
136
132
|
string: |
|
137
133
|
archive/tar: invalid tar header
|
138
134
|
http_version:
|
139
|
-
recorded_at:
|
140
|
-
recorded_with: VCR 2.9.
|
135
|
+
recorded_at: Mon, 01 Dec 2014 18:08:55 GMT
|
136
|
+
recorded_with: VCR 2.9.3
|