docker-api 1.12.0 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/lib/docker/container.rb +15 -0
  3. data/lib/docker/image.rb +0 -10
  4. data/lib/docker/version.rb +2 -2
  5. data/spec/docker/container_spec.rb +26 -1
  6. data/spec/docker/image_spec.rb +0 -11
  7. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +4 -4
  8. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +6 -6
  9. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +6 -6
  10. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +4 -4
  11. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +127 -75
  12. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +12 -16
  13. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +12 -16
  14. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +17 -21
  15. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +14 -18
  16. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +9 -13
  17. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +39 -43
  18. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +22 -26
  19. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +12 -11
  20. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +5 -5
  21. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +15 -19
  22. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +15 -453687
  23. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +12 -11
  24. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +12 -11
  25. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +64 -42
  26. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +11 -11
  27. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +9 -9
  28. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +121 -0
  29. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +37 -49
  30. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +13 -17
  31. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +36 -48
  32. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +20 -24
  33. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +67 -49
  34. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +23 -26
  35. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +150 -0
  36. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +13 -17
  37. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +9 -13
  38. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +13 -17
  39. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +10 -11
  40. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +4 -4
  41. 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 -24
  42. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +4 -4
  43. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +4 -4
  44. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +8 -8
  45. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +6 -6
  46. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +21 -24
  47. 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 +39 -43
  48. 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 +68 -18
  49. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -6
  50. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +10 -10
  51. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +18 -24
  52. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +9 -9
  53. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +5 -5
  54. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +23 -27
  55. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +20 -20
  56. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +18 -18
  57. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +23 -27
  58. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +4 -4
  59. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +25 -28
  60. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +13 -12
  61. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +32 -71
  62. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +28 -28
  63. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +35 -34
  64. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +50 -21
  65. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +16 -20
  66. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +16 -20
  67. data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +10 -10
  68. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +66 -34
  69. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +8 -8
  70. metadata +8 -5
  71. data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +0 -194
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=ubuntu
5
+ uri: unix:///var/run/docker.sock/v1.12/images/create?fromImage=ubuntu
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.11.1
11
+ - Swipely/Docker-API 1.11.2
12
12
  Content-Type:
13
13
  - text/plain
14
14
  X-Registry-Auth:
@@ -23,27 +23,77 @@ http_interactions:
23
23
  Content-Type:
24
24
  - application/json
25
25
  Date:
26
- - Thu, 26 Jun 2014 19:04:52 GMT
26
+ - Thu, 26 Jun 2014 21:02:07 GMT
27
27
  Connection:
28
28
  - close
29
29
  Transfer-Encoding:
30
30
  - ''
31
31
  body:
32
32
  encoding: UTF-8
33
- string: "{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3649,\"total\":47259,\"start\":1403809600},\"progress\":\"[===\\u003e
34
- \ ] 3.649 kB/47.26 kB 4s\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7745,\"total\":47259,\"start\":1403809600},\"progress\":\"[========\\u003e
35
- \ ] 7.745 kB/47.26 kB 1s\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11841,\"total\":47259,\"start\":1403809600},\"progress\":\"[============\\u003e
36
- \ ] 11.84 kB/47.26 kB 1s\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15937,\"total\":47259,\"start\":1403809600},\"progress\":\"[================\\u003e
37
- \ ] 15.94 kB/47.26 kB 0\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20033,\"total\":47259,\"start\":1403809600},\"progress\":\"[=====================\\u003e
38
- \ ] 20.03 kB/47.26 kB 0\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24129,\"total\":47259,\"start\":1403809600},\"progress\":\"[=========================\\u003e
39
- \ ] 24.13 kB/47.26 kB 0\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28225,\"total\":47259,\"start\":1403809600},\"progress\":\"[=============================\\u003e
40
- \ ] 28.23 kB/47.26 kB 0\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32321,\"total\":47259,\"start\":1403809600},\"progress\":\"[==================================\\u003e
41
- \ ] 32.32 kB/47.26 kB 0\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36417,\"total\":47259,\"start\":1403809600},\"progress\":\"[======================================\\u003e
42
- \ ] 36.42 kB/47.26 kB 0\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40513,\"total\":47259,\"start\":1403809600},\"progress\":\"[==========================================\\u003e
43
- \ ] 40.51 kB/47.26 kB 0\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44609,\"total\":47259,\"start\":1403809600},\"progress\":\"[===============================================\\u003e
44
- \ ] 44.61 kB/47.26 kB 0\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47259,\"total\":47259,\"start\":1403809600},\"progress\":\"[==================================================\\u003e]
45
- 47.26 kB/47.26 kB\",\"id\":\"e54ca5efa2e9\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"e54ca5efa2e9\"}{\"status\":\"Download
46
- complete\",\"progressDetail\":{},\"id\":\"e54ca5efa2e9\"}"
33
+ string: "{\"status\":\"Pulling repository ubuntu\"}\r\n{\"status\":\"Pulling
34
+ image (trusty) from ubuntu\",\"progressDetail\":{},\"id\":\"ef83896b7fb9\"}{\"status\":\"Pulling
35
+ image (trusty) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"ef83896b7fb9\"}{\"status\":\"Pulling
36
+ image (saucy) from ubuntu\",\"progressDetail\":{},\"id\":\"195eb90b5349\"}{\"status\":\"Pulling
37
+ image (saucy) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"195eb90b5349\"}{\"status\":\"Pulling
38
+ image (precise) from ubuntu\",\"progressDetail\":{},\"id\":\"ea7d6801c538\"}{\"status\":\"Pulling
39
+ image (precise) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"ea7d6801c538\"}{\"status\":\"Pulling
40
+ image (13.04) from ubuntu\",\"progressDetail\":{},\"id\":\"463ff6be4238\"}{\"status\":\"Pulling
41
+ image (13.04) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"463ff6be4238\"}{\"status\":\"Pulling
42
+ image (14.04) from ubuntu\",\"progressDetail\":{},\"id\":\"e54ca5efa2e9\"}{\"status\":\"Pulling
43
+ image (14.04) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"e54ca5efa2e9\"}{\"status\":\"Pulling
44
+ image (10.04) from ubuntu\",\"progressDetail\":{},\"id\":\"3db9c44f4520\"}{\"status\":\"Pulling
45
+ image (10.04) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"3db9c44f4520\"}{\"status\":\"Pulling
46
+ image (12.10) from ubuntu\",\"progressDetail\":{},\"id\":\"c5881f11ded9\"}{\"status\":\"Pulling
47
+ image (12.10) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"c5881f11ded9\"}{\"status\":\"Pulling
48
+ dependent layers\",\"progressDetail\":{},\"id\":\"463ff6be4238\"}{\"status\":\"Download
49
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
50
+ complete\",\"progressDetail\":{},\"id\":\"3af9d794ad07\"}{\"status\":\"Download
51
+ complete\",\"progressDetail\":{},\"id\":\"b7c6da90134e\"}{\"status\":\"Download
52
+ complete\",\"progressDetail\":{},\"id\":\"47dd6d11a49f\"}{\"status\":\"Download
53
+ complete\",\"progressDetail\":{},\"id\":\"463ff6be4238\"}{\"status\":\"Download
54
+ complete\",\"progressDetail\":{},\"id\":\"463ff6be4238\"}{\"status\":\"Pulling
55
+ dependent layers\",\"progressDetail\":{},\"id\":\"3db9c44f4520\"}{\"status\":\"Download
56
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
57
+ complete\",\"progressDetail\":{},\"id\":\"6cfa4d1f33fb\"}{\"status\":\"Download
58
+ complete\",\"progressDetail\":{},\"id\":\"3db9c44f4520\"}{\"status\":\"Download
59
+ complete\",\"progressDetail\":{},\"id\":\"3db9c44f4520\"}{\"status\":\"Pulling
60
+ dependent layers\",\"progressDetail\":{},\"id\":\"195eb90b5349\"}{\"status\":\"Download
61
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
62
+ complete\",\"progressDetail\":{},\"id\":\"f127542f0b61\"}{\"status\":\"Download
63
+ complete\",\"progressDetail\":{},\"id\":\"fae16849ebe2\"}{\"status\":\"Download
64
+ complete\",\"progressDetail\":{},\"id\":\"0f4aac48388f\"}{\"status\":\"Download
65
+ complete\",\"progressDetail\":{},\"id\":\"209ea56fda6d\"}{\"status\":\"Download
66
+ complete\",\"progressDetail\":{},\"id\":\"195eb90b5349\"}{\"status\":\"Download
67
+ complete\",\"progressDetail\":{},\"id\":\"195eb90b5349\"}{\"status\":\"Pulling
68
+ dependent layers\",\"progressDetail\":{},\"id\":\"ea7d6801c538\"}{\"status\":\"Download
69
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
70
+ complete\",\"progressDetail\":{},\"id\":\"65b7e9ccb809\"}{\"status\":\"Download
71
+ complete\",\"progressDetail\":{},\"id\":\"f8dd6bd14f58\"}{\"status\":\"Download
72
+ complete\",\"progressDetail\":{},\"id\":\"a343823119db\"}{\"status\":\"Download
73
+ complete\",\"progressDetail\":{},\"id\":\"ea7d6801c538\"}{\"status\":\"Download
74
+ complete\",\"progressDetail\":{},\"id\":\"ea7d6801c538\"}{\"status\":\"Pulling
75
+ dependent layers\",\"progressDetail\":{},\"id\":\"ef83896b7fb9\"}{\"status\":\"Download
76
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
77
+ complete\",\"progressDetail\":{},\"id\":\"8a1d8569bf87\"}{\"status\":\"Download
78
+ complete\",\"progressDetail\":{},\"id\":\"2be841034d7d\"}{\"status\":\"Download
79
+ complete\",\"progressDetail\":{},\"id\":\"99e40d806d07\"}{\"status\":\"Download
80
+ complete\",\"progressDetail\":{},\"id\":\"ef83896b7fb9\"}{\"status\":\"Download
81
+ complete\",\"progressDetail\":{},\"id\":\"ef83896b7fb9\"}{\"status\":\"Pulling
82
+ dependent layers\",\"progressDetail\":{},\"id\":\"e54ca5efa2e9\"}{\"status\":\"Download
83
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
84
+ complete\",\"progressDetail\":{},\"id\":\"d7ac5e4f1812\"}{\"status\":\"Download
85
+ complete\",\"progressDetail\":{},\"id\":\"2f4b4d6a4a06\"}{\"status\":\"Download
86
+ complete\",\"progressDetail\":{},\"id\":\"83ff768040a0\"}{\"status\":\"Download
87
+ complete\",\"progressDetail\":{},\"id\":\"6c37f792ddac\"}{\"status\":\"Download
88
+ complete\",\"progressDetail\":{},\"id\":\"e54ca5efa2e9\"}{\"status\":\"Download
89
+ complete\",\"progressDetail\":{},\"id\":\"e54ca5efa2e9\"}{\"status\":\"Pulling
90
+ dependent layers\",\"progressDetail\":{},\"id\":\"c5881f11ded9\"}{\"status\":\"Download
91
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
92
+ complete\",\"progressDetail\":{},\"id\":\"bac448df371d\"}{\"status\":\"Download
93
+ complete\",\"progressDetail\":{},\"id\":\"dfaad36d8984\"}{\"status\":\"Download
94
+ complete\",\"progressDetail\":{},\"id\":\"5796a7edb16b\"}{\"status\":\"Download
95
+ complete\",\"progressDetail\":{},\"id\":\"c5881f11ded9\"}{\"status\":\"Download
96
+ complete\",\"progressDetail\":{},\"id\":\"c5881f11ded9\"}"
47
97
  http_version:
48
- recorded_at: Thu, 26 Jun 2014 19:06:41 GMT
98
+ recorded_at: Thu, 26 Jun 2014 21:02:10 GMT
49
99
  recorded_with: VCR 2.9.2
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: unix:///var/run/docker.sock/v1.11/images/base/json
5
+ uri: unix:///var/run/docker.sock/v1.12/images/base/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.1
11
+ - Swipely/Docker-API 1.11.2
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,14 +19,15 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 06 Jun 2014 14:24:17 GMT
22
+ - Thu, 26 Jun 2014 20:27:52 GMT
23
23
  Content-Length:
24
- - '627'
24
+ - '711'
25
25
  Connection:
26
26
  - close
27
27
  body:
28
28
  encoding: UTF-8
29
- string: '{"id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","parent":"27cf784147099545","created":"2013-03-23T22:24:18.818426-07:00","container":"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0","container_config":{"Hostname":"","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"Cpuset":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":true,"OpenStdin":true,"StdinOnce":false,"Env":null,"Cmd":["/bin/bash"],"Image":"base","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"OnBuild":null},"Size":77}'
29
+ string: |
30
+ {"Architecture":"","Author":"","Comment":"","Config":null,"Container":"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":null,"ExposedPorts":null,"Hostname":"","Image":"base","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":true,"PortSpecs":null,"StdinOnce":false,"Tty":true,"User":"","Volumes":null,"WorkingDir":""},"Created":"2013-03-23T22:24:18.818426-07:00","DockerVersion":"","Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","Os":"","Parent":"27cf784147099545","Size":77}
30
31
  http_version:
31
- recorded_at: Fri, 06 Jun 2014 14:24:17 GMT
32
+ recorded_at: Thu, 26 Jun 2014 20:27:52 GMT
32
33
  recorded_with: VCR 2.9.2
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=base
5
+ uri: unix:///var/run/docker.sock/v1.12/images/create?fromImage=base
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.11.1
11
+ - Swipely/Docker-API 1.11.2
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Fri, 06 Jun 2014 14:23:29 GMT
22
+ - Thu, 26 Jun 2014 20:15:25 GMT
23
23
  Connection:
24
24
  - close
25
25
  Transfer-Encoding:
@@ -27,23 +27,23 @@ http_interactions:
27
27
  body:
28
28
  encoding: UTF-8
29
29
  string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
30
- (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
31
- image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
30
+ (latest) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
31
+ image (latest) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
32
32
  dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
33
33
  complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Download
34
34
  complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
35
35
  complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
36
36
  http_version:
37
- recorded_at: Fri, 06 Jun 2014 14:23:46 GMT
37
+ recorded_at: Thu, 26 Jun 2014 20:15:26 GMT
38
38
  - request:
39
39
  method: get
40
- uri: unix:///var/run/docker.sock/v1.11/images/b750fe79269d/history
40
+ uri: unix:///var/run/docker.sock/v1.12/images/b750fe79269d/history
41
41
  body:
42
42
  encoding: US-ASCII
43
43
  string: ''
44
44
  headers:
45
45
  User-Agent:
46
- - Swipely/Docker-API 1.11.1
46
+ - Swipely/Docker-API 1.11.2
47
47
  Content-Type:
48
48
  - text/plain
49
49
  response:
@@ -54,7 +54,7 @@ http_interactions:
54
54
  Content-Type:
55
55
  - application/json
56
56
  Date:
57
- - Fri, 06 Jun 2014 14:23:46 GMT
57
+ - Thu, 26 Jun 2014 20:15:26 GMT
58
58
  Content-Length:
59
59
  - '324'
60
60
  Connection:
@@ -66,5 +66,5 @@ http_interactions:
66
66
  ,{"Created":1364068391,"CreatedBy":"","Id":"27cf784147099545","Size":175306958,"Tags":null}
67
67
  ]
68
68
  http_version:
69
- recorded_at: Fri, 06 Jun 2014 14:23:46 GMT
69
+ recorded_at: Thu, 26 Jun 2014 20:15:26 GMT
70
70
  recorded_with: VCR 2.9.2
@@ -23,9 +23,9 @@ http_interactions:
23
23
  Content-Type:
24
24
  - text/html; charset=UTF-8
25
25
  Date:
26
- - Fri, 06 Jun 2014 14:24:17 GMT
26
+ - Thu, 26 Jun 2014 20:39:10 GMT
27
27
  Expires:
28
- - Sun, 06 Jul 2014 14:24:17 GMT
28
+ - Sat, 26 Jul 2014 20:39:10 GMT
29
29
  Cache-Control:
30
30
  - public, max-age=2592000
31
31
  Server:
@@ -44,7 +44,7 @@ http_interactions:
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: Fri, 06 Jun 2014 14:24:17 GMT
47
+ recorded_at: Thu, 26 Jun 2014 20:39:10 GMT
48
48
  - request:
49
49
  method: get
50
50
  uri: http://www.google.com/
@@ -64,7 +64,7 @@ http_interactions:
64
64
  message: OK
65
65
  headers:
66
66
  Date:
67
- - Fri, 06 Jun 2014 14:24:17 GMT
67
+ - Thu, 26 Jun 2014 20:39:10 GMT
68
68
  Expires:
69
69
  - '-1'
70
70
  Cache-Control:
@@ -72,10 +72,10 @@ http_interactions:
72
72
  Content-Type:
73
73
  - text/html; charset=ISO-8859-1
74
74
  Set-Cookie:
75
- - NID=67=Zxu9RSClLZ94pxkvze-VTnkbnQDNaYn43e0VDmb4OsnnG_MqP5lHUlEcx9BF2mR4hXa0ieJjwzB8kNTqfjvHlDhcbXw8ZIjOi69ufWG7X41rVOUBq8-wlgeLX0UNbo-q;
76
- expires=Sat, 06-Dec-2014 14:24:17 GMT; path=/; domain=.google.com; HttpOnly
77
- - PREF=ID=27f8465063ac972f:FF=0:TM=1402064657:LM=1402064657:S=3lE3rS-cP85lEwp8;
78
- expires=Sun, 05-Jun-2016 14:24:17 GMT; path=/; domain=.google.com
75
+ - NID=67=OGxv2iNSsiynaAGAqiiB676wZHBXHM6VDA2VME8MeQ37Iz7bh424MaAEJjXMrHz8hloCUt2Sn-J-0n88WxeL1idh0-aEJeSaTC7bRnSuIECbABYzYHBG6MulDYmBvZWN;
76
+ expires=Fri, 26-Dec-2014 20:39:10 GMT; path=/; domain=.google.com; HttpOnly
77
+ - PREF=ID=495a61d3fbad9d92:FF=0:TM=1403815150:LM=1403815150:S=BJ-MVMSa8oi6IoWd;
78
+ expires=Sat, 25-Jun-2016 20:39:10 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."
@@ -93,33 +93,27 @@ http_interactions:
93
93
  encoding: UTF-8
94
94
  string: |-
95
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={kEI:"Ec-RU_2oN-vZ8AGOooCYDg",getEI:function(a){for(var c;a&&(!a.getAttribute||!(c=a.getAttribute("eid")));)a=a.parentNode;return c||google.kEI},https:function(){return"https:"==window.location.protocol},kEXPI:"4791,25657,4000116,4007661,4007830,4008142,4009033,4009641,4010806,4010858,4010899,4011228,4011258,4011679,4012373,4012504,4013414,4013591,4013723,4013758,4013787,4013823,4013967,4013979,4014016,4014093,4014431,4014515,4014636,4014671,4014789,4014810,4014813,4014991,4015234,4015260,4015266,4015550,4015587,4015633,4015772,4015988,4016097,4016127,4016309,4016367,4016373,4016487,4016824,4016855,4016882,4016933,4016976,4017063,4017148,4017224,4017278,4017280,4017285,4017298,4017544,4017595,4017596,4017612,4017639,4017658,4017681,4017694,4017710,4017742,4017818,4017821,4017824,4017857,4017913,4017922,4017963,4017981,4017982,4018009,4018019,4018030,4018089,4018126,4018159,4018176,4018283,4018363,4018424,4018480,4018513,4018519,4018566,4018569,4018621,4018758,8300012,8300027,8500223,8500252,8500272,8500306,8500331,8500357,8500365,8500379,8500394,8500400,8500415,8500421,8500433,8500444,10200012,10200014,10200029,10200048,10200053,10200083,10200120,10200134,10200136,10200155,10200160,10200164,10200184,10200211,10200221,10200228,10200246,10200248,10200261,10200271,10200273,10200293,10200299,10200330,10200333,10200334,10200337,10200345",kCSI:{e:"4791,25657,4000116,4007661,4007830,4008142,4009033,4009641,4010806,4010858,4010899,4011228,4011258,4011679,4012373,4012504,4013414,4013591,4013723,4013758,4013787,4013823,4013967,4013979,4014016,4014093,4014431,4014515,4014636,4014671,4014789,4014810,4014813,4014991,4015234,4015260,4015266,4015550,4015587,4015633,4015772,4015988,4016097,4016127,4016309,4016367,4016373,4016487,4016824,4016855,4016882,4016933,4016976,4017063,4017148,4017224,4017278,4017280,4017285,4017298,4017544,4017595,4017596,4017612,4017639,4017658,4017681,4017694,4017710,4017742,4017818,4017821,4017824,4017857,4017913,4017922,4017963,4017981,4017982,4018009,4018019,4018030,4018089,4018126,4018159,4018176,4018283,4018363,4018424,4018480,4018513,4018519,4018566,4018569,4018621,4018758,8300012,8300027,8500223,8500252,8500272,8500306,8500331,8500357,8500365,8500379,8500394,8500400,8500415,8500421,8500433,8500444,10200012,10200014,10200029,10200048,10200053,10200083,10200120,10200134,10200136,10200155,10200160,10200164,10200184,10200211,10200221,10200228,10200246,10200248,10200261,10200271,10200273,10200293,10200299,10200330,10200333,10200334,10200337,10200345",ei:"Ec-RU_2oN-vZ8AGOooCYDg"},authuser:0,ml:function(){},kHL:"en",time:function(){return(new Date).getTime()},log:function(a,c,b,e,d){var f=
97
- 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:[],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;
98
- })();
99
- (function(){google.sn="webhp";google.timers={};google.startTick=function(a,b){google.timers[a]={t:{start:google.time()},bfr:!!b};};google.tick=function(a,b,g){google.timers[a]||google.startTick(a);google.timers[a].t[b]=g||google.time()};google.startTick("load",!0);
100
- try{}catch(d){}})();
96
+ window.google={kEI:"7oSsU4WsLY7IsAS0toC4BA",getEI:function(a){for(var c;a&&(!a.getAttribute||!(c=a.getAttribute("eid")));)a=a.parentNode;return c||google.kEI},https:function(){return"https:"==window.location.protocol},kEXPI:"4791,25657,4000116,4007661,4007830,4008142,4009033,4009641,4010806,4010858,4010899,4011228,4011258,4011679,4011960,4012373,4012504,4013395,4013414,4013591,4013723,4013787,4013823,4013967,4013979,4014016,4014093,4014431,4014515,4014636,4014671,4014804,4014991,4015234,4015260,4015266,4015550,4015587,4015633,4015772,4015989,4016127,4016309,4016367,4016373,4016452,4016487,4016824,4016855,4016882,4016976,4017280,4017284,4017544,4017554,4017580,4017595,4017612,4017639,4017681,4017694,4017710,4017742,4017818,4017881,4017894,4017902,4017913,4017981,4017982,4018009,4018019,4018030,4018126,4018154,4018159,4018179,4018283,4018363,4018480,4018511,4018519,4018532,4018542,4018554,4018569,4018619,4018621,4018629,4018638,4018758,4018815,4018834,4018914,4018923,4018933,4019005,4019037,4019084,4019127,4019142,4019184,4019191,4019200,4019205,4019268,4019281,4019288,4019415,4019427,4019429,8300012,8300027,8500223,8500272,8500306,8500331,8500357,8500365,8500394,8500421,8500433,8500444,8500450,8500470,10200013,10200083,10200134,10200136,10200160,10200164,10200184,10200248,10200261,10200293,10200297,10200318,10200330,10200333,10200334,10200345,10200347,10200353,10200355,10200371,10200387,10200394,10200398,10200404,10200407",kCSI:{ei:"7oSsU4WsLY7IsAS0toC4BA",e:"4791,25657,4000116,4007661,4007830,4008142,4009033,4009641,4010806,4010858,4010899,4011228,4011258,4011679,4011960,4012373,4012504,4013395,4013414,4013591,4013723,4013787,4013823,4013967,4013979,4014016,4014093,4014431,4014515,4014636,4014671,4014804,4014991,4015234,4015260,4015266,4015550,4015587,4015633,4015772,4015989,4016127,4016309,4016367,4016373,4016452,4016487,4016824,4016855,4016882,4016976,4017280,4017284,4017544,4017554,4017580,4017595,4017612,4017639,4017681,4017694,4017710,4017742,4017818,4017881,4017894,4017902,4017913,4017981,4017982,4018009,4018019,4018030,4018126,4018154,4018159,4018179,4018283,4018363,4018480,4018511,4018519,4018532,4018542,4018554,4018569,4018619,4018621,4018629,4018638,4018758,4018815,4018834,4018914,4018923,4018933,4019005,4019037,4019084,4019127,4019142,4019184,4019191,4019200,4019205,4019268,4019281,4019288,4019415,4019427,4019429,8300012,8300027,8500223,8500272,8500306,8500331,8500357,8500365,8500394,8500421,8500433,8500444,8500450,8500470,10200013,10200083,10200134,10200136,10200160,10200164,10200184,10200248,10200261,10200293,10200297,10200318,10200330,10200333,10200334,10200345,10200347,10200353,10200355,10200371,10200387,10200394,10200398,10200404,10200407"},authuser:0,ml:function(){},kHL:"en",time:function(){return(new Date).getTime()},
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;})();
101
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}
102
100
  function _gjh(){!_gjuc()&&window.google&&google.x&&google.x({id:"GJH"},function(){google.nav&&google.nav.gjh&&google.nav.gjh()})};
103
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;}
104
102
  if (!iesg){document.f&&document.f.q.focus();document.gbqf&&document.gbqf.q.focus();}
105
103
  }
106
- })();</script><textarea id="csi" style="display:none"></textarea><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> &raquo;</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><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%">&nbsp;</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&amp;authuser=0">Advanced search</a><a href="/language_tools?hl=en&amp;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>Remembering D-Day: <a href="https://www.google.com/culturalinstitute/entity/%2Fm%2F01lhv6?hl=en" onclick="google.promos&&google.promos.link&& google.promos.link.cl()">explore letters, photos, and maps of the Normandy landings</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("&")}};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=5077237;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');}
107
- });})();</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&nbsp;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">&copy; 2013 - <a href="/intl/en/policies/">Privacy & Terms</a></p></span></center><div id=xjsd></div><div id=xjsi data-jiis="bp"><script>if(google.y)google.y.first=[];(function(){function b(a){window.setTimeout(function(){var c=document.createElement("script");c.src=a;document.getElementById("xjsd").appendChild(c)},0)}google.dljp=function(a){google.xjsu=a;b(a)};google.dlj=b;})();
108
- 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.h3S1ECYhOTA.O/m\x3dsb_he,pcc/rt\x3dj/d\x3d1/sv\x3d1/t\x3dzcms/rs\x3dAItRSTPyzSg4bicK3_tEJbiNtRslncHO6g');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,"scd":10,"sce":5,"stok":"VZkpOmzjhFdbdOl_HpR2VVD-hcE"},"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);}</script></div><script>(function(){if(google.timers&&google.timers.load.t){var b,e,f,g;var k=function(a,c){a.removeEventListener?(a.removeEventListener("load",c,!1),a.removeEventListener("error",c,!1)):(a.detachEvent("onload",c),a.detachEvent("onerror",c))},l=function(a){g=(new Date).getTime();++e;a=a||window.event;a=a.target||a.srcElement;k(a,l);},
109
- m=document.getElementsByTagName("img");b=m.length;e=0;for(var p=0,q;p<b;++p){q=m[p];q.complete||"string"!=typeof q.src||!q.src?++e:q.addEventListener?(q.addEventListener("load",l,!1),q.addEventListener("error",l,!1)):(q.attachEvent("onload",l),q.attachEvent("onerror",l))}f=b-e;var r=
110
- function(){if(google.timers.load.t){google.timers.load.t.ol=(new Date).getTime();google.timers.load.t.iml=g;google.kCSI.imc=e;google.kCSI.imn=b;google.kCSI.imp=f;void 0!==google.stt&&(google.kCSI.stt=google.stt);google.csiReport&&google.csiReport()}};window.addEventListener?window.addEventListener("load",r,!1):window.attachEvent&&window.attachEvent("onload",r);google.timers.load.t.prt=g=(new Date).getTime()};})();
111
- </script></body></html>
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> &raquo;</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><br clear="all" id="lgpd"><div id="lga"><a href="/search?site=&amp;ie=UTF-8&amp;q=World+Cup+2014&amp;oi=ddle&amp;ct=world-cup-2014-36-6325030715654144&amp;hl=en"><img alt="World Cup 2014" border="0" height="199" src="/logos/doodles/2014/world-cup-2014-36-6325030715654144.2-hp.gif" title="World Cup 2014" width="644" id="hplogo" onload="window.lol&&lol()"><br></a><br></div><form action="/search" name="f"><table cellpadding="0" cellspacing="0"><tr valign="top"><td width="25%">&nbsp;</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&amp;authuser=0">Advanced search</a><a href="/language_tools?hl=en&amp;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><span id="footer"><div style="font-size:10pt"><div style="margin:19px auto;text-align:center" id="fll"><a href="/intl/en/ads/">Advertising&nbsp;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">&copy; 2013 - <a href="/intl/en/policies/">Privacy & Terms</a></p></span></center><div id=xjsd></div><div id=xjsi data-jiis="bp"><script>if(google.y)google.y.first=[];(function(){function b(a){window.setTimeout(function(){var c=document.createElement("script");c.src=a;document.getElementById("xjsd").appendChild(c)},0)}google.dljp=function(a){google.xjsu=a;b(a)};google.dlj=b;})();
105
+ 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.Q3IGP-S0ao4.O/m\x3dsb_he,pcc/rt\x3dj/d\x3d1/t\x3dzcms/rs\x3dAItRSTMuyB324R4pDCTvlk_TibOuORRj1Q');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,"scd":10,"sce":5,"stok":"A6LBefQLlniMwdf30jD1_BxS2Nw"},"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);}</script></div></body></html>
112
106
  http_version:
113
- recorded_at: Fri, 06 Jun 2014 14:24:18 GMT
107
+ recorded_at: Thu, 26 Jun 2014 20:39:10 GMT
114
108
  - request:
115
109
  method: post
116
- uri: unix:///var/run/docker.sock/v1.11/images/create?fromSrc=-
110
+ uri: unix:///var/run/docker.sock/v1.12/images/create?fromSrc=-
117
111
  body:
118
112
  encoding: US-ASCII
119
113
  string: ''
120
114
  headers:
121
115
  User-Agent:
122
- - Swipely/Docker-API 1.11.1
116
+ - Swipely/Docker-API 1.11.2
123
117
  Content-Type:
124
118
  - application/tar
125
119
  Transfer-Encoding:
@@ -132,7 +126,7 @@ http_interactions:
132
126
  Content-Type:
133
127
  - text/plain; charset=utf-8
134
128
  Date:
135
- - Fri, 06 Jun 2014 14:24:18 GMT
129
+ - Thu, 26 Jun 2014 20:39:11 GMT
136
130
  Content-Length:
137
131
  - '32'
138
132
  Connection:
@@ -142,5 +136,5 @@ http_interactions:
142
136
  string: |
143
137
  archive/tar: invalid tar header
144
138
  http_version:
145
- recorded_at: Fri, 06 Jun 2014 14:24:18 GMT
139
+ recorded_at: Thu, 26 Jun 2014 20:39:11 GMT
146
140
  recorded_with: VCR 2.9.2
@@ -19,11 +19,11 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  X-Amz-Id-2:
22
- - /r91P+OYlk6LjfU4SfF9uJxxq/5i6OuTB0JamNzNR7QId8zsEBPC7C/HkdpaOzOu
22
+ - Fd3MInT2AFWXZBkDZmVlvHbxsbWstD73djv9mVszhYs2mLk13x5PB76fXsnxsz3N
23
23
  X-Amz-Request-Id:
24
- - 42C348A47410CA3E
24
+ - ECE430A03F3A45C2
25
25
  Date:
26
- - Fri, 06 Jun 2014 14:24:19 GMT
26
+ - Thu, 26 Jun 2014 20:31:22 GMT
27
27
  X-Amz-Meta-S3cmd-Attrs:
28
28
  - uid:1000/gname:thulihan/uname:thulihan/gid:1000/mode:33188/mtime:1395427962/atime:1395427960/md5:dd5c4a8854498b18f70022b98231f10e/ctime:1395427962
29
29
  Last-Modified:
@@ -46,16 +46,16 @@ http_interactions:
46
46
  AAAAAAAAAAAAADAwNDA3NTUAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDAw
47
47
  ADEyMzEzMTA1MTQ3ADAwNzQwMgAgNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
48
48
  http_version:
49
- recorded_at: Fri, 06 Jun 2014 14:24:48 GMT
49
+ recorded_at: Thu, 26 Jun 2014 20:31:51 GMT
50
50
  - request:
51
51
  method: post
52
- uri: unix:///var/run/docker.sock/v1.11/images/create?fromSrc=-
52
+ uri: unix:///var/run/docker.sock/v1.12/images/create?fromSrc=-
53
53
  body:
54
54
  encoding: US-ASCII
55
55
  string: ''
56
56
  headers:
57
57
  User-Agent:
58
- - Swipely/Docker-API 1.11.1
58
+ - Swipely/Docker-API 1.11.2
59
59
  Content-Type:
60
60
  - application/tar
61
61
  Transfer-Encoding:
@@ -68,14 +68,14 @@ http_interactions:
68
68
  Content-Type:
69
69
  - application/json
70
70
  Date:
71
- - Fri, 06 Jun 2014 14:24:54 GMT
71
+ - Thu, 26 Jun 2014 20:31:55 GMT
72
72
  Connection:
73
73
  - close
74
74
  Transfer-Encoding:
75
75
  - ''
76
76
  body:
77
77
  encoding: UTF-8
78
- string: "{\"status\":\"f2d4054186f53bfff9a153f7600e15fdfb6701c81e38635e768cf1ce2bdb44a2\"}\r\n"
78
+ string: "{\"status\":\"a2de737cbf735ff9b4b17747b6d94dbb357d7b59e1999ca0fd5d13a645afea5c\"}\r\n"
79
79
  http_version:
80
- recorded_at: Fri, 06 Jun 2014 14:24:54 GMT
80
+ recorded_at: Thu, 26 Jun 2014 20:31:55 GMT
81
81
  recorded_with: VCR 2.9.2
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.11/images/create?fromSrc=-
5
+ uri: unix:///var/run/docker.sock/v1.12/images/create?fromSrc=-
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.11.1
11
+ - Swipely/Docker-API 1.11.2
12
12
  Content-Type:
13
13
  - application/tar
14
14
  Transfer-Encoding:
@@ -21,14 +21,14 @@ http_interactions:
21
21
  Content-Type:
22
22
  - application/json
23
23
  Date:
24
- - Fri, 06 Jun 2014 15:04:32 GMT
24
+ - Thu, 26 Jun 2014 20:30:43 GMT
25
25
  Connection:
26
26
  - close
27
27
  Transfer-Encoding:
28
28
  - ''
29
29
  body:
30
30
  encoding: UTF-8
31
- string: "{\"status\":\"f97c0340b51437f9c26d5173f3a4740ddc7fd514149c217bb5ccd74582748532\"}\r\n"
31
+ string: "{\"status\":\"8e6af99faf6639486edb869399f9b4c602972f3b5e1be48cd47a03d40b198203\"}\r\n"
32
32
  http_version:
33
- recorded_at: Fri, 06 Jun 2014 15:04:32 GMT
33
+ recorded_at: Thu, 26 Jun 2014 20:30:43 GMT
34
34
  recorded_with: VCR 2.9.2
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.11/build
5
+ uri: unix:///var/run/docker.sock/v1.12/build
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: !binary |-
@@ -54,7 +54,7 @@ http_interactions:
54
54
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
55
55
  headers:
56
56
  User-Agent:
57
- - Swipely/Docker-API 1.11.1
57
+ - Swipely/Docker-API 1.11.2
58
58
  Content-Type:
59
59
  - application/json
60
60
  response:
@@ -65,7 +65,7 @@ http_interactions:
65
65
  Content-Type:
66
66
  - application/json
67
67
  Date:
68
- - Fri, 06 Jun 2014 14:28:15 GMT
68
+ - Thu, 26 Jun 2014 19:56:19 GMT
69
69
  Connection:
70
70
  - close
71
71
  Transfer-Encoding:
@@ -75,10 +75,10 @@ http_interactions:
75
75
  string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
76
76
  b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
77
77
  http_version:
78
- recorded_at: Fri, 06 Jun 2014 14:28:15 GMT
78
+ recorded_at: Thu, 26 Jun 2014 19:56:19 GMT
79
79
  - request:
80
80
  method: post
81
- uri: unix:///var/run/docker.sock/v1.11/build
81
+ uri: unix:///var/run/docker.sock/v1.12/build
82
82
  body:
83
83
  encoding: UTF-8
84
84
  string: !binary |-
@@ -99,7 +99,7 @@ http_interactions:
99
99
  MDE3NTAAMDAwMDAwMDAwMDAAMTIzNDQxNTQzMTUAMDA2MTIyACA1AAAAAAAA
100
100
  headers:
101
101
  User-Agent:
102
- - Swipely/Docker-API 1.11.1
102
+ - Swipely/Docker-API 1.11.2
103
103
  Content-Type:
104
104
  - application/json
105
105
  response:
@@ -110,7 +110,7 @@ http_interactions:
110
110
  Content-Type:
111
111
  - application/json
112
112
  Date:
113
- - Fri, 06 Jun 2014 14:28:15 GMT
113
+ - Thu, 26 Jun 2014 19:56:19 GMT
114
114
  Connection:
115
115
  - close
116
116
  Transfer-Encoding:
@@ -119,19 +119,19 @@ http_interactions:
119
119
  encoding: UTF-8
120
120
  string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
121
121
  b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add lib /lib\\n\"}\r\n{\"stream\":\"
122
- ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 0d502ddcccd3\\n\"}\r\n{\"stream\":\"Successfully
123
- built 0d502ddcccd3\\n\"}\r\n"
122
+ ---\\u003e 11cd140684b9\\n\"}\r\n{\"stream\":\"Removing intermediate container
123
+ 70f6eb735d0f\\n\"}\r\n{\"stream\":\"Successfully built 11cd140684b9\\n\"}\r\n"
124
124
  http_version:
125
- recorded_at: Fri, 06 Jun 2014 14:28:15 GMT
125
+ recorded_at: Thu, 26 Jun 2014 19:56:22 GMT
126
126
  - request:
127
127
  method: post
128
- uri: unix:///var/run/docker.sock/v1.11/containers/create
128
+ uri: unix:///var/run/docker.sock/v1.12/containers/create
129
129
  body:
130
130
  encoding: UTF-8
131
- string: '{"Image":"0d502ddcccd3","Cmd":["ls","-a","/lib/docker"]}'
131
+ string: '{"Image":"11cd140684b9","Cmd":["ls","-a","/lib/docker"]}'
132
132
  headers:
133
133
  User-Agent:
134
- - Swipely/Docker-API 1.11.1
134
+ - Swipely/Docker-API 1.11.2
135
135
  Content-Type:
136
136
  - application/json
137
137
  response:
@@ -142,7 +142,7 @@ http_interactions:
142
142
  Content-Type:
143
143
  - application/json
144
144
  Date:
145
- - Fri, 06 Jun 2014 14:28:15 GMT
145
+ - Thu, 26 Jun 2014 19:56:23 GMT
146
146
  Content-Length:
147
147
  - '90'
148
148
  Connection:
@@ -150,18 +150,18 @@ http_interactions:
150
150
  body:
151
151
  encoding: UTF-8
152
152
  string: |
153
- {"Id":"9e0687f963577cf0e48f3ba317d9d5036c6d2cf4cff562d29702dbd889c02dd6","Warnings":null}
153
+ {"Id":"8c6d8bbfef9699941b99aa2dbb72bc74a200b0c8527a520bbe219840d87baf7d","Warnings":null}
154
154
  http_version:
155
- recorded_at: Fri, 06 Jun 2014 14:28:15 GMT
155
+ recorded_at: Thu, 26 Jun 2014 19:56:23 GMT
156
156
  - request:
157
157
  method: post
158
- uri: unix:///var/run/docker.sock/v1.11/containers/9e0687f963577cf0e48f3ba317d9d5036c6d2cf4cff562d29702dbd889c02dd6/start
158
+ uri: unix:///var/run/docker.sock/v1.12/containers/8c6d8bbfef9699941b99aa2dbb72bc74a200b0c8527a520bbe219840d87baf7d/start
159
159
  body:
160
160
  encoding: UTF-8
161
161
  string: '{}'
162
162
  headers:
163
163
  User-Agent:
164
- - Swipely/Docker-API 1.11.1
164
+ - Swipely/Docker-API 1.11.2
165
165
  Content-Type:
166
166
  - application/json
167
167
  response:
@@ -170,27 +170,23 @@ http_interactions:
170
170
  message:
171
171
  headers:
172
172
  Date:
173
- - Fri, 06 Jun 2014 14:28:15 GMT
174
- Content-Length:
175
- - '0'
176
- Content-Type:
177
- - text/plain; charset=utf-8
173
+ - Thu, 26 Jun 2014 19:56:23 GMT
178
174
  Connection:
179
175
  - close
180
176
  body:
181
177
  encoding: UTF-8
182
178
  string: ''
183
179
  http_version:
184
- recorded_at: Fri, 06 Jun 2014 14:28:15 GMT
180
+ recorded_at: Thu, 26 Jun 2014 19:56:23 GMT
185
181
  - request:
186
182
  method: post
187
- uri: unix:///var/run/docker.sock/v1.11/containers/9e0687f963577cf0e48f3ba317d9d5036c6d2cf4cff562d29702dbd889c02dd6/attach?stderr=true&stdout=true&stream=true
183
+ uri: unix:///var/run/docker.sock/v1.12/containers/8c6d8bbfef9699941b99aa2dbb72bc74a200b0c8527a520bbe219840d87baf7d/attach?stderr=true&stdout=true&stream=true
188
184
  body:
189
185
  encoding: US-ASCII
190
186
  string: ''
191
187
  headers:
192
188
  User-Agent:
193
- - Swipely/Docker-API 1.11.1
189
+ - Swipely/Docker-API 1.11.2
194
190
  Content-Type:
195
191
  - text/plain
196
192
  response:
@@ -207,5 +203,5 @@ http_interactions:
207
203
  cmIKZXJyb3IucmIKZXZlbnQucmIKaW1hZ2UucmIKbWVzc2FnZXMucmIKcmFr
208
204
  ZV90YXNrLnJiCnV0aWwucmIKdmVyc2lvbi5yYgo=
209
205
  http_version:
210
- recorded_at: Fri, 06 Jun 2014 14:28:16 GMT
206
+ recorded_at: Thu, 26 Jun 2014 19:56:23 GMT
211
207
  recorded_with: VCR 2.9.2