docker-api 1.11.2 → 1.12.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/docker/image.rb +10 -10
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +0 -8
- data/spec/docker/image_spec.rb +3 -3
- data/spec/docker_spec.rb +6 -4
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -6
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -7
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -7
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -7
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +77 -65
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +15 -15
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +15 -15
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +22 -24
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +17 -17
- data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +12 -12
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +41 -41
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +26 -26
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +13 -13
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +7 -7
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -17
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +453693 -17
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +13 -13
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +13 -13
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +41 -35
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml +11 -11
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +11 -11
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +42 -42
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +16 -16
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +46 -47
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +23 -23
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +45 -39
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +27 -23
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +16 -16
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +12 -12
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +16 -16
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +13 -33
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +6 -6
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +25 -27
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +6 -6
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +6 -6
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +11 -7
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +8 -196
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +24 -20
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml +46 -30
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +21 -669
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -7
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +9 -9
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +27 -25
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +12 -12
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +6 -6
- data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +27 -33
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +29 -878
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +29 -45
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +29 -51
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +29 -28
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +6 -6
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +32 -31
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +11 -11
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +67 -227
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +61 -43
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +40 -203
- data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +22 -23
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +19 -19
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +19 -19
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +10 -10
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +77 -72
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +9 -9
- metadata +3 -3
| @@ -2,13 +2,13 @@ | |
| 2 2 | 
             
            http_interactions:
         | 
| 3 3 | 
             
            - request:
         | 
| 4 4 | 
             
                method: get
         | 
| 5 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 5 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/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 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 12 12 | 
             
                  Content-Type:
         | 
| 13 13 | 
             
                  - text/plain
         | 
| 14 14 | 
             
              response:
         | 
| @@ -19,14 +19,14 @@ http_interactions: | |
| 19 19 | 
             
                  Content-Type:
         | 
| 20 20 | 
             
                  - application/json
         | 
| 21 21 | 
             
                  Date:
         | 
| 22 | 
            -
                  -  | 
| 22 | 
            +
                  - Fri, 06 Jun 2014 14:24:17 GMT
         | 
| 23 23 | 
             
                  Content-Length:
         | 
| 24 | 
            -
                  - ' | 
| 24 | 
            +
                  - '627'
         | 
| 25 25 | 
             
                  Connection:
         | 
| 26 26 | 
             
                  - close
         | 
| 27 27 | 
             
                body:
         | 
| 28 28 | 
             
                  encoding: UTF-8
         | 
| 29 | 
            -
                  string:  | 
| 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}'
         | 
| 30 30 | 
             
                http_version: 
         | 
| 31 | 
            -
              recorded_at:  | 
| 32 | 
            -
            recorded_with: VCR 2. | 
| 31 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:24:17 GMT
         | 
| 32 | 
            +
            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. | 
| 5 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/images/create?fromImage=base
         | 
| 6 6 | 
             
                body:
         | 
| 7 7 | 
             
                  encoding: US-ASCII
         | 
| 8 8 | 
             
                  string: ''
         | 
| 9 9 | 
             
                headers:
         | 
| 10 10 | 
             
                  User-Agent:
         | 
| 11 | 
            -
                  - Swipely/Docker-API 1. | 
| 11 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 12 12 | 
             
                  Content-Type:
         | 
| 13 13 | 
             
                  - text/plain
         | 
| 14 14 | 
             
              response:
         | 
| @@ -19,7 +19,7 @@ http_interactions: | |
| 19 19 | 
             
                  Content-Type:
         | 
| 20 20 | 
             
                  - application/json
         | 
| 21 21 | 
             
                  Date:
         | 
| 22 | 
            -
                  -  | 
| 22 | 
            +
                  - Fri, 06 Jun 2014 14:23:29 GMT
         | 
| 23 23 | 
             
                  Connection:
         | 
| 24 24 | 
             
                  - close
         | 
| 25 25 | 
             
                  Transfer-Encoding:
         | 
| @@ -34,16 +34,16 @@ http_interactions: | |
| 34 34 | 
             
                    complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
         | 
| 35 35 | 
             
                    complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
         | 
| 36 36 | 
             
                http_version: 
         | 
| 37 | 
            -
              recorded_at:  | 
| 37 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:23:46 GMT
         | 
| 38 38 | 
             
            - request:
         | 
| 39 39 | 
             
                method: get
         | 
| 40 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 40 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/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. | 
| 46 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 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 | 
            -
                  -  | 
| 57 | 
            +
                  - Fri, 06 Jun 2014 14:23:46 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:  | 
| 70 | 
            -
            recorded_with: VCR 2. | 
| 69 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:23:46 GMT
         | 
| 70 | 
            +
            recorded_with: VCR 2.9.2
         | 
| @@ -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 | 
            -
                  - Fri,  | 
| 26 | 
            +
                  - Fri, 06 Jun 2014 14:24:17 GMT
         | 
| 27 27 | 
             
                  Expires:
         | 
| 28 | 
            -
                  - Sun,  | 
| 28 | 
            +
                  - Sun, 06 Jul 2014 14:24:17 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,  | 
| 47 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:24:17 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 | 
            -
                  - Fri,  | 
| 67 | 
            +
                  - Fri, 06 Jun 2014 14:24:17 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=Sat,  | 
| 77 | 
            -
                  - PREF=ID= | 
| 78 | 
            -
                    expires=Sun,  | 
| 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
         | 
| 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."
         | 
| @@ -92,32 +92,34 @@ http_interactions: | |
| 92 92 | 
             
                body:
         | 
| 93 93 | 
             
                  encoding: UTF-8
         | 
| 94 94 | 
             
                  string: |-
         | 
| 95 | 
            -
                    <!doctype html><html itemscope="" itemtype="http://schema.org/WebPage"><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:" | 
| 97 | 
            -
                    new Image, | 
| 98 | 
            -
                     | 
| 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);
         | 
| 99 100 | 
             
                    try{}catch(d){}})();
         | 
| 100 101 | 
             
                    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}
         | 
| 101 102 | 
             
                    function _gjh(){!_gjuc()&&window.google&&google.x&&google.x({id:"GJH"},function(){google.nav&&google.nav.gjh&&google.nav.gjh()})};
         | 
| 102 103 | 
             
                    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;}
         | 
| 103 104 | 
             
                    if (!iesg){document.f&&document.f.q.focus();document.gbqf&&document.gbqf.q.focus();}
         | 
| 104 105 | 
             
                    }
         | 
| 105 | 
            -
                    })();</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> »</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%"> </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 | 
| 106 | 
            -
                     | 
| 107 | 
            -
                     | 
| 108 | 
            -
                     | 
| 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> »</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%"> </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>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 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>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()};})();
         | 
| 109 111 | 
             
                    </script></body></html>
         | 
| 110 112 | 
             
                http_version: 
         | 
| 111 | 
            -
              recorded_at: Fri,  | 
| 113 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:24:18 GMT
         | 
| 112 114 | 
             
            - request:
         | 
| 113 115 | 
             
                method: post
         | 
| 114 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 116 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/images/create?fromSrc=-
         | 
| 115 117 | 
             
                body:
         | 
| 116 118 | 
             
                  encoding: US-ASCII
         | 
| 117 119 | 
             
                  string: ''
         | 
| 118 120 | 
             
                headers:
         | 
| 119 121 | 
             
                  User-Agent:
         | 
| 120 | 
            -
                  - Swipely/Docker-API 1. | 
| 122 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 121 123 | 
             
                  Content-Type:
         | 
| 122 124 | 
             
                  - application/tar
         | 
| 123 125 | 
             
                  Transfer-Encoding:
         | 
| @@ -130,7 +132,7 @@ http_interactions: | |
| 130 132 | 
             
                  Content-Type:
         | 
| 131 133 | 
             
                  - text/plain; charset=utf-8
         | 
| 132 134 | 
             
                  Date:
         | 
| 133 | 
            -
                  - Fri,  | 
| 135 | 
            +
                  - Fri, 06 Jun 2014 14:24:18 GMT
         | 
| 134 136 | 
             
                  Content-Length:
         | 
| 135 137 | 
             
                  - '32'
         | 
| 136 138 | 
             
                  Connection:
         | 
| @@ -140,5 +142,5 @@ http_interactions: | |
| 140 142 | 
             
                  string: |
         | 
| 141 143 | 
             
                    archive/tar: invalid tar header
         | 
| 142 144 | 
             
                http_version: 
         | 
| 143 | 
            -
              recorded_at: Fri,  | 
| 144 | 
            -
            recorded_with: VCR 2. | 
| 145 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:24:18 GMT
         | 
| 146 | 
            +
            recorded_with: VCR 2.9.2
         | 
| @@ -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:
         | 
| @@ -19,17 +19,17 @@ http_interactions: | |
| 19 19 | 
             
                  message: OK
         | 
| 20 20 | 
             
                headers:
         | 
| 21 21 | 
             
                  X-Amz-Id-2:
         | 
| 22 | 
            -
                  -  | 
| 22 | 
            +
                  - /r91P+OYlk6LjfU4SfF9uJxxq/5i6OuTB0JamNzNR7QId8zsEBPC7C/HkdpaOzOu
         | 
| 23 23 | 
             
                  X-Amz-Request-Id:
         | 
| 24 | 
            -
                  -  | 
| 24 | 
            +
                  - 42C348A47410CA3E
         | 
| 25 25 | 
             
                  Date:
         | 
| 26 | 
            -
                  - Fri,  | 
| 26 | 
            +
                  - Fri, 06 Jun 2014 14:24:19 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:
         | 
| 30 30 | 
             
                  - Fri, 21 Mar 2014 18:53:20 GMT
         | 
| 31 31 | 
             
                  Etag:
         | 
| 32 | 
            -
                  - " | 
| 32 | 
            +
                  - '"378fd3b78cc4f5afee7e47e9a948ef3f-14"'
         | 
| 33 33 | 
             
                  Accept-Ranges:
         | 
| 34 34 | 
             
                  - bytes
         | 
| 35 35 | 
             
                  Content-Type:
         | 
| @@ -46,16 +46,16 @@ http_interactions: | |
| 46 46 | 
             
                    AAAAAAAAAAAAADAwNDA3NTUAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDAw
         | 
| 47 47 | 
             
                    ADEyMzEzMTA1MTQ3ADAwNzQwMgAgNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 48 48 | 
             
                http_version: 
         | 
| 49 | 
            -
              recorded_at: Fri,  | 
| 49 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:24:48 GMT
         | 
| 50 50 | 
             
            - request:
         | 
| 51 51 | 
             
                method: post
         | 
| 52 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 52 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/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. | 
| 58 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 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,  | 
| 71 | 
            +
                  - Fri, 06 Jun 2014 14:24:54 GMT
         | 
| 72 72 | 
             
                  Connection:
         | 
| 73 73 | 
             
                  - close
         | 
| 74 74 | 
             
                  Transfer-Encoding:
         | 
| 75 75 | 
             
                  - ''
         | 
| 76 76 | 
             
                body:
         | 
| 77 77 | 
             
                  encoding: UTF-8
         | 
| 78 | 
            -
                  string: "{\"status\":\" | 
| 78 | 
            +
                  string: "{\"status\":\"f2d4054186f53bfff9a153f7600e15fdfb6701c81e38635e768cf1ce2bdb44a2\"}\r\n"
         | 
| 79 79 | 
             
                http_version: 
         | 
| 80 | 
            -
              recorded_at: Fri,  | 
| 81 | 
            -
            recorded_with: VCR 2. | 
| 80 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:24:54 GMT
         | 
| 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. | 
| 5 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/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 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 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,  | 
| 24 | 
            +
                  - Fri, 06 Jun 2014 15:04:32 GMT
         | 
| 25 25 | 
             
                  Connection:
         | 
| 26 26 | 
             
                  - close
         | 
| 27 27 | 
             
                  Transfer-Encoding:
         | 
| 28 28 | 
             
                  - ''
         | 
| 29 29 | 
             
                body:
         | 
| 30 30 | 
             
                  encoding: UTF-8
         | 
| 31 | 
            -
                  string: "{\"status\":\" | 
| 31 | 
            +
                  string: "{\"status\":\"f97c0340b51437f9c26d5173f3a4740ddc7fd514149c217bb5ccd74582748532\"}\r\n"
         | 
| 32 32 | 
             
                http_version: 
         | 
| 33 | 
            -
              recorded_at: Fri,  | 
| 34 | 
            -
            recorded_with: VCR 2. | 
| 33 | 
            +
              recorded_at: Fri, 06 Jun 2014 15:04:32 GMT
         | 
| 34 | 
            +
            recorded_with: VCR 2.9.2
         | 
| @@ -2,14 +2,14 @@ | |
| 2 2 | 
             
            http_interactions:
         | 
| 3 3 | 
             
            - request:
         | 
| 4 4 | 
             
                method: post
         | 
| 5 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 5 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/build
         | 
| 6 6 | 
             
                body:
         | 
| 7 7 | 
             
                  encoding: UTF-8
         | 
| 8 8 | 
             
                  string: !binary |-
         | 
| 9 9 | 
             
                    RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 10 10 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 11 11 | 
             
                    AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
         | 
| 12 | 
            -
                     | 
| 12 | 
            +
                    ADAwMDAwMDAwMDAwADAxMzIzNQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 13 13 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 14 14 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
         | 
| 15 15 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
         | 
| @@ -54,7 +54,7 @@ http_interactions: | |
| 54 54 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
         | 
| 55 55 | 
             
                headers:
         | 
| 56 56 | 
             
                  User-Agent:
         | 
| 57 | 
            -
                  - Swipely/Docker-API 1. | 
| 57 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 58 58 | 
             
                  Content-Type:
         | 
| 59 59 | 
             
                  - application/json
         | 
| 60 60 | 
             
              response:
         | 
| @@ -65,32 +65,26 @@ http_interactions: | |
| 65 65 | 
             
                  Content-Type:
         | 
| 66 66 | 
             
                  - application/json
         | 
| 67 67 | 
             
                  Date:
         | 
| 68 | 
            -
                  -  | 
| 68 | 
            +
                  - Fri, 06 Jun 2014 15:12:24 GMT
         | 
| 69 69 | 
             
                  Connection:
         | 
| 70 70 | 
             
                  - close
         | 
| 71 71 | 
             
                  Transfer-Encoding:
         | 
| 72 72 | 
             
                  - ''
         | 
| 73 73 | 
             
                body:
         | 
| 74 74 | 
             
                  encoding: UTF-8
         | 
| 75 | 
            -
                  string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\" | 
| 76 | 
            -
                    base\"}\r\n{\"status\":\"Pulling image (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
         | 
| 77 | 
            -
                    image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
         | 
| 78 | 
            -
                    dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
         | 
| 79 | 
            -
                    complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Download
         | 
| 80 | 
            -
                    complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
         | 
| 81 | 
            -
                    complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"stream\":\" ---\\u003e
         | 
| 75 | 
            +
                  string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
         | 
| 82 76 | 
             
                    b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
         | 
| 83 77 | 
             
                http_version: 
         | 
| 84 | 
            -
              recorded_at:  | 
| 78 | 
            +
              recorded_at: Fri, 06 Jun 2014 15:12:24 GMT
         | 
| 85 79 | 
             
            - request:
         | 
| 86 80 | 
             
                method: post
         | 
| 87 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 81 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/images/b750fe79269d/insert?path=%2Fstallman&url=http%3A%2F%2Fstallman.org
         | 
| 88 82 | 
             
                body:
         | 
| 89 83 | 
             
                  encoding: US-ASCII
         | 
| 90 84 | 
             
                  string: ''
         | 
| 91 85 | 
             
                headers:
         | 
| 92 86 | 
             
                  User-Agent:
         | 
| 93 | 
            -
                  - Swipely/Docker-API 1. | 
| 87 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 94 88 | 
             
                  Content-Type:
         | 
| 95 89 | 
             
                  - text/plain
         | 
| 96 90 | 
             
              response:
         | 
| @@ -101,26 +95,26 @@ http_interactions: | |
| 101 95 | 
             
                  Content-Type:
         | 
| 102 96 | 
             
                  - application/json
         | 
| 103 97 | 
             
                  Date:
         | 
| 104 | 
            -
                  -  | 
| 98 | 
            +
                  - Fri, 06 Jun 2014 15:12:28 GMT
         | 
| 105 99 | 
             
                  Content-Length:
         | 
| 106 100 | 
             
                  - '210'
         | 
| 107 101 | 
             
                  Connection:
         | 
| 108 102 | 
             
                  - close
         | 
| 109 103 | 
             
                body:
         | 
| 110 104 | 
             
                  encoding: UTF-8
         | 
| 111 | 
            -
                  string: "{\"status\":\"Downloading\",\"progressDetail\":{\"current\": | 
| 112 | 
            -
                    kB\",\"id\":\"b750fe79269d\"}{\"status\":\" | 
| 105 | 
            +
                  string: "{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88195,\"total\":-1,\"start\":1402067547},\"progress\":\"88.19
         | 
| 106 | 
            +
                    kB\",\"id\":\"b750fe79269d\"}{\"status\":\"8487c71145e1b4d0f1b30c87c198138fd9a62a1c5c72125c0d1dda51c57d923a\"}\r\n"
         | 
| 113 107 | 
             
                http_version: 
         | 
| 114 | 
            -
              recorded_at:  | 
| 108 | 
            +
              recorded_at: Fri, 06 Jun 2014 15:12:28 GMT
         | 
| 115 109 | 
             
            - request:
         | 
| 116 110 | 
             
                method: post
         | 
| 117 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 111 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/containers/create
         | 
| 118 112 | 
             
                body:
         | 
| 119 113 | 
             
                  encoding: UTF-8
         | 
| 120 | 
            -
                  string:  | 
| 114 | 
            +
                  string: '{"Image":"8487c71145e1b4d0f1b30c87c198138fd9a62a1c5c72125c0d1dda51c57d923a","Cmd":["ls","/"]}'
         | 
| 121 115 | 
             
                headers:
         | 
| 122 116 | 
             
                  User-Agent:
         | 
| 123 | 
            -
                  - Swipely/Docker-API 1. | 
| 117 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 124 118 | 
             
                  Content-Type:
         | 
| 125 119 | 
             
                  - application/json
         | 
| 126 120 | 
             
              response:
         | 
| @@ -131,7 +125,7 @@ http_interactions: | |
| 131 125 | 
             
                  Content-Type:
         | 
| 132 126 | 
             
                  - application/json
         | 
| 133 127 | 
             
                  Date:
         | 
| 134 | 
            -
                  -  | 
| 128 | 
            +
                  - Fri, 06 Jun 2014 15:12:30 GMT
         | 
| 135 129 | 
             
                  Content-Length:
         | 
| 136 130 | 
             
                  - '90'
         | 
| 137 131 | 
             
                  Connection:
         | 
| @@ -139,18 +133,18 @@ http_interactions: | |
| 139 133 | 
             
                body:
         | 
| 140 134 | 
             
                  encoding: UTF-8
         | 
| 141 135 | 
             
                  string: |
         | 
| 142 | 
            -
                    {"Id":" | 
| 136 | 
            +
                    {"Id":"d9226b3154b6ee9e87e2d1daaa2b1d39999dafa523aa2700719689bafd2907ea","Warnings":null}
         | 
| 143 137 | 
             
                http_version: 
         | 
| 144 | 
            -
              recorded_at:  | 
| 138 | 
            +
              recorded_at: Fri, 06 Jun 2014 15:12:30 GMT
         | 
| 145 139 | 
             
            - request:
         | 
| 146 140 | 
             
                method: post
         | 
| 147 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 141 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/containers/d9226b3154b6ee9e87e2d1daaa2b1d39999dafa523aa2700719689bafd2907ea/start
         | 
| 148 142 | 
             
                body:
         | 
| 149 143 | 
             
                  encoding: UTF-8
         | 
| 150 | 
            -
                  string:  | 
| 144 | 
            +
                  string: '{}'
         | 
| 151 145 | 
             
                headers:
         | 
| 152 146 | 
             
                  User-Agent:
         | 
| 153 | 
            -
                  - Swipely/Docker-API 1. | 
| 147 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 154 148 | 
             
                  Content-Type:
         | 
| 155 149 | 
             
                  - application/json
         | 
| 156 150 | 
             
              response:
         | 
| @@ -159,7 +153,7 @@ http_interactions: | |
| 159 153 | 
             
                  message: 
         | 
| 160 154 | 
             
                headers:
         | 
| 161 155 | 
             
                  Date:
         | 
| 162 | 
            -
                  -  | 
| 156 | 
            +
                  - Fri, 06 Jun 2014 15:12:30 GMT
         | 
| 163 157 | 
             
                  Content-Length:
         | 
| 164 158 | 
             
                  - '0'
         | 
| 165 159 | 
             
                  Content-Type:
         | 
| @@ -170,16 +164,16 @@ http_interactions: | |
| 170 164 | 
             
                  encoding: UTF-8
         | 
| 171 165 | 
             
                  string: ''
         | 
| 172 166 | 
             
                http_version: 
         | 
| 173 | 
            -
              recorded_at:  | 
| 167 | 
            +
              recorded_at: Fri, 06 Jun 2014 15:12:30 GMT
         | 
| 174 168 | 
             
            - request:
         | 
| 175 169 | 
             
                method: post
         | 
| 176 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 170 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/containers/d9226b3154b6ee9e87e2d1daaa2b1d39999dafa523aa2700719689bafd2907ea/attach?stderr=true&stdout=true&stream=true
         | 
| 177 171 | 
             
                body:
         | 
| 178 172 | 
             
                  encoding: US-ASCII
         | 
| 179 173 | 
             
                  string: ''
         | 
| 180 174 | 
             
                headers:
         | 
| 181 175 | 
             
                  User-Agent:
         | 
| 182 | 
            -
                  - Swipely/Docker-API 1. | 
| 176 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 183 177 | 
             
                  Content-Type:
         | 
| 184 178 | 
             
                  - text/plain
         | 
| 185 179 | 
             
              response:
         | 
| @@ -196,5 +190,5 @@ http_interactions: | |
| 196 190 | 
             
                    Cm1udApvcHQKcHJvYwpyb290CnJ1bgpzYmluCnNlbGludXgKc3J2CnN0YWxs
         | 
| 197 191 | 
             
                    bWFuCnN5cwp0bXAKdXNyCnZhcgo=
         | 
| 198 192 | 
             
                http_version: 
         | 
| 199 | 
            -
              recorded_at:  | 
| 200 | 
            -
            recorded_with: VCR 2. | 
| 193 | 
            +
              recorded_at: Fri, 06 Jun 2014 15:12:30 GMT
         | 
| 194 | 
            +
            recorded_with: VCR 2.9.2
         |