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/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,36 +19,28 @@ http_interactions: | |
| 19 19 | 
             
                  Content-Type:
         | 
| 20 20 | 
             
                  - application/json
         | 
| 21 21 | 
             
                  Date:
         | 
| 22 | 
            -
                  -  | 
| 22 | 
            +
                  - Fri, 06 Jun 2014 14:34:52 GMT
         | 
| 23 | 
            +
                  Content-Length:
         | 
| 24 | 
            +
                  - '251'
         | 
| 23 25 | 
             
                  Connection:
         | 
| 24 26 | 
             
                  - close
         | 
| 25 | 
            -
                  Transfer-Encoding:
         | 
| 26 | 
            -
                  - ''
         | 
| 27 27 | 
             
                body:
         | 
| 28 28 | 
             
                  encoding: UTF-8
         | 
| 29 29 | 
             
                  string: |-
         | 
| 30 | 
            -
                    [{"Created": | 
| 31 | 
            -
                    ,{"Created":1395615113,"Id":"1fe8ba4c530870ce50481694d43d7cd3544bc9bfc88e503620ffc829782aec2c","ParentId":"4a666898763a9a2bb66779eb0d62ff5238fe6bd20983ee1e88c442e0bfc02b9a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
         | 
| 32 | 
            -
                    ,{"Created":1395615109,"Id":"f436c033a91efcec906b01e34cb6d74a5611c81eceab7c9e8db79de64e3e9c95","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 33 | 
            -
                    ,{"Created":1395615098,"Id":"b494f28120b37e6630203a034b1b851a53ce9779ab34537d817bf254901f0229","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 34 | 
            -
                    ,{"Created":1395615095,"Id":"ddefb40d1386d8d96328b5e8d71ead884c969e9fee9a3179c855da209c4f9c4d","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 35 | 
            -
                    ,{"Created":1395615092,"Id":"49312967b21033fb6081cbe01a4198cd07319a9dc3a71b02142a13c1cac7bed9","ParentId":"6ff1bc8b4a76a2482d8d889503f99cbe883b8bf2990457761fc6da5329de5fab","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
         | 
| 36 | 
            -
                    ,{"Created":1395615088,"Id":"cccbcd861d935edde9160be826cf38ba9aa7b8ddc0421e77801c458156567a27","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 37 | 
            -
                    ,{"Created":1391448676,"Id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","ParentId":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","RepoTags":["ubuntu:13.10"],"Size":182125825,"VirtualSize":182125825}
         | 
| 38 | 
            -
                    ,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
         | 
| 30 | 
            +
                    [{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
         | 
| 39 31 | 
             
                    ]
         | 
| 40 32 | 
             
                http_version: 
         | 
| 41 | 
            -
              recorded_at:  | 
| 33 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:34:52 GMT
         | 
| 42 34 | 
             
            - request:
         | 
| 43 35 | 
             
                method: post
         | 
| 44 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 36 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/build
         | 
| 45 37 | 
             
                body:
         | 
| 46 38 | 
             
                  encoding: UTF-8
         | 
| 47 39 | 
             
                  string: !binary |-
         | 
| 48 40 | 
             
                    RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 49 41 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 50 42 | 
             
                    AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
         | 
| 51 | 
            -
                     | 
| 43 | 
            +
                    ADAwMDAwMDAwMDAwADAxMzIzNQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 52 44 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 53 45 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
         | 
| 54 46 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
         | 
| @@ -93,7 +85,7 @@ http_interactions: | |
| 93 85 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
         | 
| 94 86 | 
             
                headers:
         | 
| 95 87 | 
             
                  User-Agent:
         | 
| 96 | 
            -
                  - Swipely/Docker-API 1. | 
| 88 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 97 89 | 
             
                  Content-Type:
         | 
| 98 90 | 
             
                  - application/json
         | 
| 99 91 | 
             
              response:
         | 
| @@ -104,7 +96,7 @@ http_interactions: | |
| 104 96 | 
             
                  Content-Type:
         | 
| 105 97 | 
             
                  - application/json
         | 
| 106 98 | 
             
                  Date:
         | 
| 107 | 
            -
                  -  | 
| 99 | 
            +
                  - Fri, 06 Jun 2014 14:34:52 GMT
         | 
| 108 100 | 
             
                  Connection:
         | 
| 109 101 | 
             
                  - close
         | 
| 110 102 | 
             
                  Transfer-Encoding:
         | 
| @@ -114,17 +106,17 @@ http_interactions: | |
| 114 106 | 
             
                  string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
         | 
| 115 107 | 
             
                    b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
         | 
| 116 108 | 
             
                http_version: 
         | 
| 117 | 
            -
              recorded_at:  | 
| 109 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:34:52 GMT
         | 
| 118 110 | 
             
            - request:
         | 
| 119 111 | 
             
                method: post
         | 
| 120 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 112 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/build?rm=true
         | 
| 121 113 | 
             
                body:
         | 
| 122 114 | 
             
                  encoding: UTF-8
         | 
| 123 115 | 
             
                  string: !binary |-
         | 
| 124 116 | 
             
                    R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 125 117 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 126 118 | 
             
                    AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
         | 
| 127 | 
            -
                     | 
| 119 | 
            +
                    ADAwMDAwMDAwMDAwADAxMjU0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 128 120 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 129 121 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
         | 
| 130 122 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
         | 
| @@ -146,8 +138,8 @@ http_interactions: | |
| 146 138 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tlcmZpbGUA
         | 
| 147 139 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 148 140 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
         | 
| 149 | 
            -
                     | 
| 150 | 
            -
                     | 
| 141 | 
            +
                    MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAwMDAwMDAwMDAw
         | 
| 142 | 
            +
                    MAAwMTMyMzcAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 151 143 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 152 144 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
         | 
| 153 145 | 
             
                    AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| @@ -192,7 +184,7 @@ http_interactions: | |
| 192 184 | 
             
                    AAAAAAAAAAAAAAAA
         | 
| 193 185 | 
             
                headers:
         | 
| 194 186 | 
             
                  User-Agent:
         | 
| 195 | 
            -
                  - Swipely/Docker-API 1. | 
| 187 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 196 188 | 
             
                  Content-Type:
         | 
| 197 189 | 
             
                  - application/json
         | 
| 198 190 | 
             
              response:
         | 
| @@ -203,7 +195,7 @@ http_interactions: | |
| 203 195 | 
             
                  Content-Type:
         | 
| 204 196 | 
             
                  - application/json
         | 
| 205 197 | 
             
                  Date:
         | 
| 206 | 
            -
                  -  | 
| 198 | 
            +
                  - Fri, 06 Jun 2014 14:34:52 GMT
         | 
| 207 199 | 
             
                  Connection:
         | 
| 208 200 | 
             
                  - close
         | 
| 209 201 | 
             
                  Transfer-Encoding:
         | 
| @@ -212,19 +204,19 @@ http_interactions: | |
| 212 204 | 
             
                  encoding: UTF-8
         | 
| 213 205 | 
             
                  string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
         | 
| 214 206 | 
             
                    b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add Gemfile /\\n\"}\r\n{\"stream\":\"
         | 
| 215 | 
            -
                    ---\\u003e  | 
| 216 | 
            -
                     | 
| 207 | 
            +
                    ---\\u003e 05e7e1d523ff\\n\"}\r\n{\"stream\":\"Removing intermediate container
         | 
| 208 | 
            +
                    9607befc3e1a\\n\"}\r\n{\"stream\":\"Successfully built 05e7e1d523ff\\n\"}\r\n"
         | 
| 217 209 | 
             
                http_version: 
         | 
| 218 | 
            -
              recorded_at:  | 
| 210 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:34:56 GMT
         | 
| 219 211 | 
             
            - request:
         | 
| 220 212 | 
             
                method: get
         | 
| 221 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 213 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/images/json
         | 
| 222 214 | 
             
                body:
         | 
| 223 215 | 
             
                  encoding: US-ASCII
         | 
| 224 216 | 
             
                  string: ''
         | 
| 225 217 | 
             
                headers:
         | 
| 226 218 | 
             
                  User-Agent:
         | 
| 227 | 
            -
                  - Swipely/Docker-API 1. | 
| 219 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 228 220 | 
             
                  Content-Type:
         | 
| 229 221 | 
             
                  - text/plain
         | 
| 230 222 | 
             
              response:
         | 
| @@ -235,25 +227,17 @@ http_interactions: | |
| 235 227 | 
             
                  Content-Type:
         | 
| 236 228 | 
             
                  - application/json
         | 
| 237 229 | 
             
                  Date:
         | 
| 238 | 
            -
                  -  | 
| 230 | 
            +
                  - Fri, 06 Jun 2014 14:34:56 GMT
         | 
| 231 | 
            +
                  Content-Length:
         | 
| 232 | 
            +
                  - '508'
         | 
| 239 233 | 
             
                  Connection:
         | 
| 240 234 | 
             
                  - close
         | 
| 241 | 
            -
                  Transfer-Encoding:
         | 
| 242 | 
            -
                  - ''
         | 
| 243 235 | 
             
                body:
         | 
| 244 236 | 
             
                  encoding: UTF-8
         | 
| 245 237 | 
             
                  string: |-
         | 
| 246 | 
            -
                    [{"Created": | 
| 247 | 
            -
                    ,{"Created":1395615116,"Id":"3373eb3b86cd0a1633b30e6e60b1ee79bba30f2faf0eeffadfaca40d19c435c8","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 248 | 
            -
                    ,{"Created":1395615113,"Id":"1fe8ba4c530870ce50481694d43d7cd3544bc9bfc88e503620ffc829782aec2c","ParentId":"4a666898763a9a2bb66779eb0d62ff5238fe6bd20983ee1e88c442e0bfc02b9a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
         | 
| 249 | 
            -
                    ,{"Created":1395615109,"Id":"f436c033a91efcec906b01e34cb6d74a5611c81eceab7c9e8db79de64e3e9c95","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 250 | 
            -
                    ,{"Created":1395615098,"Id":"b494f28120b37e6630203a034b1b851a53ce9779ab34537d817bf254901f0229","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 251 | 
            -
                    ,{"Created":1395615095,"Id":"ddefb40d1386d8d96328b5e8d71ead884c969e9fee9a3179c855da209c4f9c4d","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 252 | 
            -
                    ,{"Created":1395615092,"Id":"49312967b21033fb6081cbe01a4198cd07319a9dc3a71b02142a13c1cac7bed9","ParentId":"6ff1bc8b4a76a2482d8d889503f99cbe883b8bf2990457761fc6da5329de5fab","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":541,"VirtualSize":175307614}
         | 
| 253 | 
            -
                    ,{"Created":1395615088,"Id":"cccbcd861d935edde9160be826cf38ba9aa7b8ddc0421e77801c458156567a27","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 254 | 
            -
                    ,{"Created":1391448676,"Id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","ParentId":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","RepoTags":["ubuntu:13.10"],"Size":182125825,"VirtualSize":182125825}
         | 
| 238 | 
            +
                    [{"Created":1402065294,"Id":"05e7e1d523ff92976daa0b5515b6ba16da8e9a033e7ee528bf4cb0123e089873","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":38,"VirtualSize":175307073}
         | 
| 255 239 | 
             
                    ,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
         | 
| 256 240 | 
             
                    ]
         | 
| 257 241 | 
             
                http_version: 
         | 
| 258 | 
            -
              recorded_at:  | 
| 259 | 
            -
            recorded_with: VCR 2. | 
| 242 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:34:56 GMT
         | 
| 243 | 
            +
            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. | 
| 5 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/containers/json?all=true
         | 
| 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,37 +19,26 @@ http_interactions: | |
| 19 19 | 
             
                  Content-Type:
         | 
| 20 20 | 
             
                  - application/json
         | 
| 21 21 | 
             
                  Date:
         | 
| 22 | 
            -
                  -  | 
| 22 | 
            +
                  - Fri, 06 Jun 2014 14:31:02 GMT
         | 
| 23 | 
            +
                  Content-Length:
         | 
| 24 | 
            +
                  - '2'
         | 
| 23 25 | 
             
                  Connection:
         | 
| 24 26 | 
             
                  - close
         | 
| 25 | 
            -
                  Transfer-Encoding:
         | 
| 26 | 
            -
                  - ''
         | 
| 27 27 | 
             
                body:
         | 
| 28 28 | 
             
                  encoding: UTF-8
         | 
| 29 | 
            -
                  string:  | 
| 30 | 
            -
                    [{"Command":"cat /Gemfile /Rakefile","Created":1395615114,"Id":"41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091","Image":"1fe8ba4c5308","Names":["/suspicious_nobel"],"Ports":[],"Status":"Exit 0"}
         | 
| 31 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:fc000cafaac6c9ef1975d88b91a0dc060c1a06623127233c76f18e867272f599 in /","Created":1395615112,"Id":"b28f7df24111249c6376b716158a103f177d8a7c4468fc0c1122e9ef9ef25c65","Image":"4a666898763a","Names":["/naughty_einstein"],"Ports":[],"Status":"Exit 0"}
         | 
| 32 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:675a3f36a170ea5f92020111ebc6a332bc591517ef9f4f40425fa89a92fd16a2 in /","Created":1395615110,"Id":"4168949ea22a21d36dc2081381baf60990fac9242f962969b8b45223c128272b","Image":"base:latest","Names":["/backstabbing_heisenberg"],"Ports":[],"Status":"Exit 0"}
         | 
| 33 | 
            -
                    ,{"Command":"cat /Gemfile","Created":1395615110,"Id":"592b830ab81914a92943a8d3bce3c1234cbd8d83aadc863477db7aef476d1b6e","Image":"f436c033a91e","Names":["/stoic_feynman"],"Ports":[],"Status":"Exit 0"}
         | 
| 34 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:55e415893bdbadc4f7eb527228395d27ad0c272ec56c53be0829b2791ac9420c in /","Created":1395615108,"Id":"a42e1ed4c3dd186379a12e84e39e8566488a7426fb75e1054b82a20c8a275745","Image":"base:latest","Names":["/naughty_newton"],"Ports":[],"Status":"Exit 0"}
         | 
| 35 | 
            -
                    ,{"Command":"cat /Gemfile /Rakefile","Created":1395615093,"Id":"a1687110527d24ef8bfc5f1c320724bc8105cb952ef515e28914190ca5b8b51c","Image":"49312967b210","Names":["/furious_pare"],"Ports":[],"Status":"Exit 0"}
         | 
| 36 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:70e7412d8807542f4cd318c8f31c72f81debc60e164dd846059f0602652a7e50 in /","Created":1395615092,"Id":"865b86959f045068e5d29e18643d07ddd3b738be1d51045b89efa9bc7e0149ac","Image":"6ff1bc8b4a76","Names":["/tender_fermi"],"Ports":[],"Status":"Exit 0"}
         | 
| 37 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:e8e2cb2809ea4c9c3117cdc0aa170daf98f132705f7e0f9f2ffb93f0d9ab2efa in /","Created":1395615090,"Id":"909be783d7626f909ccd2d4db87c5d5e0a4b04d60e7585992bbb8c9babd36ff1","Image":"base:latest","Names":["/sleepy_ritchie"],"Ports":[],"Status":"Exit 0"}
         | 
| 38 | 
            -
                    ,{"Command":"cat /Gemfile","Created":1395615089,"Id":"e2c601a8e00e143fae2c279d58f7e789e76174484c5aed9989c21b521815e81b","Image":"cccbcd861d93","Names":["/cocky_thompson"],"Ports":[],"Status":"Exit 0"}
         | 
| 39 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:267dd8662509ad8c2db6581535f1bd5895104ede376c68db66f91fb67e673a96 in /","Created":1395615087,"Id":"9d01185db242cf7453d3b6c92dc4cd790cb1c1b32eb93d7397f408f707afefa2","Image":"base:latest","Names":["/suspicious_turing"],"Ports":[],"Status":"Exit 0"}
         | 
| 40 | 
            -
                    ]
         | 
| 29 | 
            +
                  string: '[]'
         | 
| 41 30 | 
             
                http_version: 
         | 
| 42 | 
            -
              recorded_at:  | 
| 31 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:31:02 GMT
         | 
| 43 32 | 
             
            - request:
         | 
| 44 33 | 
             
                method: post
         | 
| 45 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 34 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/build
         | 
| 46 35 | 
             
                body:
         | 
| 47 36 | 
             
                  encoding: UTF-8
         | 
| 48 37 | 
             
                  string: !binary |-
         | 
| 49 38 | 
             
                    RG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 50 39 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 51 40 | 
             
                    AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDEx
         | 
| 52 | 
            -
                     | 
| 41 | 
            +
                    ADAwMDAwMDAwMDAwADAxMzIzNQAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 53 42 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 54 43 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
         | 
| 55 44 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
         | 
| @@ -94,7 +83,7 @@ http_interactions: | |
| 94 83 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
         | 
| 95 84 | 
             
                headers:
         | 
| 96 85 | 
             
                  User-Agent:
         | 
| 97 | 
            -
                  - Swipely/Docker-API 1. | 
| 86 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 98 87 | 
             
                  Content-Type:
         | 
| 99 88 | 
             
                  - application/json
         | 
| 100 89 | 
             
              response:
         | 
| @@ -105,7 +94,7 @@ http_interactions: | |
| 105 94 | 
             
                  Content-Type:
         | 
| 106 95 | 
             
                  - application/json
         | 
| 107 96 | 
             
                  Date:
         | 
| 108 | 
            -
                  -  | 
| 97 | 
            +
                  - Fri, 06 Jun 2014 14:31:02 GMT
         | 
| 109 98 | 
             
                  Connection:
         | 
| 110 99 | 
             
                  - close
         | 
| 111 100 | 
             
                  Transfer-Encoding:
         | 
| @@ -115,17 +104,17 @@ http_interactions: | |
| 115 104 | 
             
                  string: "{\"stream\":\"Step 0 : from base\\n\"}\r\n{\"stream\":\" ---\\u003e
         | 
| 116 105 | 
             
                    b750fe79269d\\n\"}\r\n{\"stream\":\"Successfully built b750fe79269d\\n\"}\r\n"
         | 
| 117 106 | 
             
                http_version: 
         | 
| 118 | 
            -
              recorded_at:  | 
| 107 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:31:02 GMT
         | 
| 119 108 | 
             
            - request:
         | 
| 120 109 | 
             
                method: post
         | 
| 121 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 110 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/build?rm=true
         | 
| 122 111 | 
             
                body:
         | 
| 123 112 | 
             
                  encoding: UTF-8
         | 
| 124 113 | 
             
                  string: !binary |-
         | 
| 125 114 | 
             
                    R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 126 115 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 127 116 | 
             
                    AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
         | 
| 128 | 
            -
                     | 
| 117 | 
            +
                    ADAwMDAwMDAwMDAwADAxMjU0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 129 118 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 130 119 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
         | 
| 131 120 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
         | 
| @@ -147,8 +136,8 @@ http_interactions: | |
| 147 136 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tlcmZpbGUA
         | 
| 148 137 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 149 138 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
         | 
| 150 | 
            -
                     | 
| 151 | 
            -
                     | 
| 139 | 
            +
                    MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAwMDAwMDAwMDAw
         | 
| 140 | 
            +
                    MAAwMTMyMzcAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 152 141 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 153 142 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
         | 
| 154 143 | 
             
                    AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| @@ -193,7 +182,7 @@ http_interactions: | |
| 193 182 | 
             
                    AAAAAAAAAAAAAAAA
         | 
| 194 183 | 
             
                headers:
         | 
| 195 184 | 
             
                  User-Agent:
         | 
| 196 | 
            -
                  - Swipely/Docker-API 1. | 
| 185 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 197 186 | 
             
                  Content-Type:
         | 
| 198 187 | 
             
                  - application/json
         | 
| 199 188 | 
             
              response:
         | 
| @@ -204,7 +193,7 @@ http_interactions: | |
| 204 193 | 
             
                  Content-Type:
         | 
| 205 194 | 
             
                  - application/json
         | 
| 206 195 | 
             
                  Date:
         | 
| 207 | 
            -
                  -  | 
| 196 | 
            +
                  - Fri, 06 Jun 2014 14:31:02 GMT
         | 
| 208 197 | 
             
                  Connection:
         | 
| 209 198 | 
             
                  - close
         | 
| 210 199 | 
             
                  Transfer-Encoding:
         | 
| @@ -213,19 +202,19 @@ http_interactions: | |
| 213 202 | 
             
                  encoding: UTF-8
         | 
| 214 203 | 
             
                  string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
         | 
| 215 204 | 
             
                    b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add Gemfile /\\n\"}\r\n{\"stream\":\"
         | 
| 216 | 
            -
                    ---\\u003e  | 
| 217 | 
            -
                     | 
| 205 | 
            +
                    ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 708490cac070\\n\"}\r\n{\"stream\":\"Successfully
         | 
| 206 | 
            +
                    built 708490cac070\\n\"}\r\n"
         | 
| 218 207 | 
             
                http_version: 
         | 
| 219 | 
            -
              recorded_at:  | 
| 208 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:31:02 GMT
         | 
| 220 209 | 
             
            - request:
         | 
| 221 210 | 
             
                method: get
         | 
| 222 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 211 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/containers/json?all=true
         | 
| 223 212 | 
             
                body:
         | 
| 224 213 | 
             
                  encoding: US-ASCII
         | 
| 225 214 | 
             
                  string: ''
         | 
| 226 215 | 
             
                headers:
         | 
| 227 216 | 
             
                  User-Agent:
         | 
| 228 | 
            -
                  - Swipely/Docker-API 1. | 
| 217 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 229 218 | 
             
                  Content-Type:
         | 
| 230 219 | 
             
                  - text/plain
         | 
| 231 220 | 
             
              response:
         | 
| @@ -236,25 +225,14 @@ http_interactions: | |
| 236 225 | 
             
                  Content-Type:
         | 
| 237 226 | 
             
                  - application/json
         | 
| 238 227 | 
             
                  Date:
         | 
| 239 | 
            -
                  -  | 
| 228 | 
            +
                  - Fri, 06 Jun 2014 14:31:02 GMT
         | 
| 229 | 
            +
                  Content-Length:
         | 
| 230 | 
            +
                  - '2'
         | 
| 240 231 | 
             
                  Connection:
         | 
| 241 232 | 
             
                  - close
         | 
| 242 | 
            -
                  Transfer-Encoding:
         | 
| 243 | 
            -
                  - ''
         | 
| 244 233 | 
             
                body:
         | 
| 245 234 | 
             
                  encoding: UTF-8
         | 
| 246 | 
            -
                  string:  | 
| 247 | 
            -
                    [{"Command":"cat /Gemfile /Rakefile","Created":1395615114,"Id":"41f5bb2b030dafaf52b6451e7d538a1b9e2749e618c351629f25970b142ef091","Image":"1fe8ba4c5308","Names":["/suspicious_nobel"],"Ports":[],"Status":"Exit 0"}
         | 
| 248 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:fc000cafaac6c9ef1975d88b91a0dc060c1a06623127233c76f18e867272f599 in /","Created":1395615112,"Id":"b28f7df24111249c6376b716158a103f177d8a7c4468fc0c1122e9ef9ef25c65","Image":"4a666898763a","Names":["/naughty_einstein"],"Ports":[],"Status":"Exit 0"}
         | 
| 249 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:675a3f36a170ea5f92020111ebc6a332bc591517ef9f4f40425fa89a92fd16a2 in /","Created":1395615110,"Id":"4168949ea22a21d36dc2081381baf60990fac9242f962969b8b45223c128272b","Image":"base:latest","Names":["/backstabbing_heisenberg"],"Ports":[],"Status":"Exit 0"}
         | 
| 250 | 
            -
                    ,{"Command":"cat /Gemfile","Created":1395615110,"Id":"592b830ab81914a92943a8d3bce3c1234cbd8d83aadc863477db7aef476d1b6e","Image":"f436c033a91e","Names":["/stoic_feynman"],"Ports":[],"Status":"Exit 0"}
         | 
| 251 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:55e415893bdbadc4f7eb527228395d27ad0c272ec56c53be0829b2791ac9420c in /","Created":1395615108,"Id":"a42e1ed4c3dd186379a12e84e39e8566488a7426fb75e1054b82a20c8a275745","Image":"base:latest","Names":["/naughty_newton"],"Ports":[],"Status":"Exit 0"}
         | 
| 252 | 
            -
                    ,{"Command":"cat /Gemfile /Rakefile","Created":1395615093,"Id":"a1687110527d24ef8bfc5f1c320724bc8105cb952ef515e28914190ca5b8b51c","Image":"49312967b210","Names":["/furious_pare"],"Ports":[],"Status":"Exit 0"}
         | 
| 253 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:70e7412d8807542f4cd318c8f31c72f81debc60e164dd846059f0602652a7e50 in /","Created":1395615092,"Id":"865b86959f045068e5d29e18643d07ddd3b738be1d51045b89efa9bc7e0149ac","Image":"6ff1bc8b4a76","Names":["/tender_fermi"],"Ports":[],"Status":"Exit 0"}
         | 
| 254 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:e8e2cb2809ea4c9c3117cdc0aa170daf98f132705f7e0f9f2ffb93f0d9ab2efa in /","Created":1395615090,"Id":"909be783d7626f909ccd2d4db87c5d5e0a4b04d60e7585992bbb8c9babd36ff1","Image":"base:latest","Names":["/sleepy_ritchie"],"Ports":[],"Status":"Exit 0"}
         | 
| 255 | 
            -
                    ,{"Command":"cat /Gemfile","Created":1395615089,"Id":"e2c601a8e00e143fae2c279d58f7e789e76174484c5aed9989c21b521815e81b","Image":"cccbcd861d93","Names":["/cocky_thompson"],"Ports":[],"Status":"Exit 0"}
         | 
| 256 | 
            -
                    ,{"Command":"/bin/sh -c #(nop) ADD file:267dd8662509ad8c2db6581535f1bd5895104ede376c68db66f91fb67e673a96 in /","Created":1395615087,"Id":"9d01185db242cf7453d3b6c92dc4cd790cb1c1b32eb93d7397f408f707afefa2","Image":"base:latest","Names":["/suspicious_turing"],"Ports":[],"Status":"Exit 0"}
         | 
| 257 | 
            -
                    ]
         | 
| 235 | 
            +
                  string: '[]'
         | 
| 258 236 | 
             
                http_version: 
         | 
| 259 | 
            -
              recorded_at:  | 
| 260 | 
            -
            recorded_with: VCR 2. | 
| 237 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:31:02 GMT
         | 
| 238 | 
            +
            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,7 +65,7 @@ http_interactions: | |
| 65 65 | 
             
                  Content-Type:
         | 
| 66 66 | 
             
                  - application/json
         | 
| 67 67 | 
             
                  Date:
         | 
| 68 | 
            -
                  -  | 
| 68 | 
            +
                  - Fri, 06 Jun 2014 14:28:14 GMT
         | 
| 69 69 | 
             
                  Connection:
         | 
| 70 70 | 
             
                  - close
         | 
| 71 71 | 
             
                  Transfer-Encoding:
         | 
| @@ -75,17 +75,17 @@ 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:  | 
| 78 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:28:14 GMT
         | 
| 79 79 | 
             
            - request:
         | 
| 80 80 | 
             
                method: post
         | 
| 81 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 81 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/build
         | 
| 82 82 | 
             
                body:
         | 
| 83 83 | 
             
                  encoding: UTF-8
         | 
| 84 84 | 
             
                  string: !binary |-
         | 
| 85 85 | 
             
                    R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 86 86 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 87 87 | 
             
                    AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
         | 
| 88 | 
            -
                     | 
| 88 | 
            +
                    ADAwMDAwMDAwMDAwADAxMjU0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 89 89 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 90 90 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
         | 
| 91 91 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
         | 
| @@ -107,8 +107,8 @@ http_interactions: | |
| 107 107 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tlcmZpbGUA
         | 
| 108 108 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 109 109 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
         | 
| 110 | 
            -
                     | 
| 111 | 
            -
                     | 
| 110 | 
            +
                    MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAwMDAwMDAwMDAw
         | 
| 111 | 
            +
                    MAAwMTMyMzcAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 112 112 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| 113 113 | 
             
                    AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
         | 
| 114 114 | 
             
                    AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
         | 
| @@ -153,7 +153,7 @@ http_interactions: | |
| 153 153 | 
             
                    AAAAAAAAAAAAAAAA
         | 
| 154 154 | 
             
                headers:
         | 
| 155 155 | 
             
                  User-Agent:
         | 
| 156 | 
            -
                  - Swipely/Docker-API 1. | 
| 156 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 157 157 | 
             
                  Content-Type:
         | 
| 158 158 | 
             
                  - application/json
         | 
| 159 159 | 
             
              response:
         | 
| @@ -164,7 +164,7 @@ http_interactions: | |
| 164 164 | 
             
                  Content-Type:
         | 
| 165 165 | 
             
                  - application/json
         | 
| 166 166 | 
             
                  Date:
         | 
| 167 | 
            -
                  -  | 
| 167 | 
            +
                  - Fri, 06 Jun 2014 14:28:14 GMT
         | 
| 168 168 | 
             
                  Connection:
         | 
| 169 169 | 
             
                  - close
         | 
| 170 170 | 
             
                  Transfer-Encoding:
         | 
| @@ -173,18 +173,19 @@ http_interactions: | |
| 173 173 | 
             
                  encoding: UTF-8
         | 
| 174 174 | 
             
                  string: "{\"stream\":\"Step 0 : from b750fe79269d\\n\"}\r\n{\"stream\":\" ---\\u003e
         | 
| 175 175 | 
             
                    b750fe79269d\\n\"}\r\n{\"stream\":\"Step 1 : add Gemfile /\\n\"}\r\n{\"stream\":\"
         | 
| 176 | 
            -
                    ---\\u003e  | 
| 176 | 
            +
                    ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 708490cac070\\n\"}\r\n{\"stream\":\"Successfully
         | 
| 177 | 
            +
                    built 708490cac070\\n\"}\r\n"
         | 
| 177 178 | 
             
                http_version: 
         | 
| 178 | 
            -
              recorded_at:  | 
| 179 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:28:15 GMT
         | 
| 179 180 | 
             
            - request:
         | 
| 180 181 | 
             
                method: post
         | 
| 181 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 182 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/containers/create
         | 
| 182 183 | 
             
                body:
         | 
| 183 184 | 
             
                  encoding: UTF-8
         | 
| 184 | 
            -
                  string:  | 
| 185 | 
            +
                  string: '{"Image":"708490cac070","Cmd":["cat","/Gemfile"]}'
         | 
| 185 186 | 
             
                headers:
         | 
| 186 187 | 
             
                  User-Agent:
         | 
| 187 | 
            -
                  - Swipely/Docker-API 1. | 
| 188 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 188 189 | 
             
                  Content-Type:
         | 
| 189 190 | 
             
                  - application/json
         | 
| 190 191 | 
             
              response:
         | 
| @@ -195,7 +196,7 @@ http_interactions: | |
| 195 196 | 
             
                  Content-Type:
         | 
| 196 197 | 
             
                  - application/json
         | 
| 197 198 | 
             
                  Date:
         | 
| 198 | 
            -
                  -  | 
| 199 | 
            +
                  - Fri, 06 Jun 2014 14:28:15 GMT
         | 
| 199 200 | 
             
                  Content-Length:
         | 
| 200 201 | 
             
                  - '90'
         | 
| 201 202 | 
             
                  Connection:
         | 
| @@ -203,18 +204,18 @@ http_interactions: | |
| 203 204 | 
             
                body:
         | 
| 204 205 | 
             
                  encoding: UTF-8
         | 
| 205 206 | 
             
                  string: |
         | 
| 206 | 
            -
                    {"Id":" | 
| 207 | 
            +
                    {"Id":"a1756b34a2477042afdf22ea4b0debb5cec843ed3ca2bce09e6cf2718b350e0e","Warnings":null}
         | 
| 207 208 | 
             
                http_version: 
         | 
| 208 | 
            -
              recorded_at:  | 
| 209 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:28:15 GMT
         | 
| 209 210 | 
             
            - request:
         | 
| 210 211 | 
             
                method: post
         | 
| 211 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 212 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/containers/a1756b34a2477042afdf22ea4b0debb5cec843ed3ca2bce09e6cf2718b350e0e/start
         | 
| 212 213 | 
             
                body:
         | 
| 213 214 | 
             
                  encoding: UTF-8
         | 
| 214 | 
            -
                  string:  | 
| 215 | 
            +
                  string: '{}'
         | 
| 215 216 | 
             
                headers:
         | 
| 216 217 | 
             
                  User-Agent:
         | 
| 217 | 
            -
                  - Swipely/Docker-API 1. | 
| 218 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 218 219 | 
             
                  Content-Type:
         | 
| 219 220 | 
             
                  - application/json
         | 
| 220 221 | 
             
              response:
         | 
| @@ -223,7 +224,7 @@ http_interactions: | |
| 223 224 | 
             
                  message: 
         | 
| 224 225 | 
             
                headers:
         | 
| 225 226 | 
             
                  Date:
         | 
| 226 | 
            -
                  -  | 
| 227 | 
            +
                  - Fri, 06 Jun 2014 14:28:15 GMT
         | 
| 227 228 | 
             
                  Content-Length:
         | 
| 228 229 | 
             
                  - '0'
         | 
| 229 230 | 
             
                  Content-Type:
         | 
| @@ -234,16 +235,16 @@ http_interactions: | |
| 234 235 | 
             
                  encoding: UTF-8
         | 
| 235 236 | 
             
                  string: ''
         | 
| 236 237 | 
             
                http_version: 
         | 
| 237 | 
            -
              recorded_at:  | 
| 238 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:28:15 GMT
         | 
| 238 239 | 
             
            - request:
         | 
| 239 240 | 
             
                method: post
         | 
| 240 | 
            -
                uri: unix:///var/run/docker.sock/v1. | 
| 241 | 
            +
                uri: unix:///var/run/docker.sock/v1.11/containers/a1756b34a2477042afdf22ea4b0debb5cec843ed3ca2bce09e6cf2718b350e0e/attach?stderr=true&stdout=true&stream=true
         | 
| 241 242 | 
             
                body:
         | 
| 242 243 | 
             
                  encoding: US-ASCII
         | 
| 243 244 | 
             
                  string: ''
         | 
| 244 245 | 
             
                headers:
         | 
| 245 246 | 
             
                  User-Agent:
         | 
| 246 | 
            -
                  - Swipely/Docker-API 1. | 
| 247 | 
            +
                  - Swipely/Docker-API 1.11.1
         | 
| 247 248 | 
             
                  Content-Type:
         | 
| 248 249 | 
             
                  - text/plain
         | 
| 249 250 | 
             
              response:
         | 
| @@ -259,5 +260,5 @@ http_interactions: | |
| 259 260 | 
             
                    AQAAAAAAACZzb3VyY2UgJ2h0dHA6Ly9ydWJ5Z2Vtcy5vcmcnCgpnZW1zcGVj
         | 
| 260 261 | 
             
                    Cg==
         | 
| 261 262 | 
             
                http_version: 
         | 
| 262 | 
            -
              recorded_at:  | 
| 263 | 
            -
            recorded_with: VCR 2. | 
| 263 | 
            +
              recorded_at: Fri, 06 Jun 2014 14:28:15 GMT
         | 
| 264 | 
            +
            recorded_with: VCR 2.9.2
         |