docker-api 1.10.4 → 1.10.5
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/lib/docker/image.rb +9 -11
- data/lib/docker/util.rb +8 -0
- data/lib/docker/version.rb +1 -1
- data/spec/docker/image_spec.rb +15 -0
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +220 -44
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +124 -0
- metadata +4 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: b76a1345ec1e931b746bfd6e71476bc1dd99cdf8
         | 
| 4 | 
            +
              data.tar.gz: 2eebdbf7ba21dbd67020b0ca318808b157ba17a5
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: cf4ccddd249d21e98bc586a7a763e56666dfa4b9339cca63e61b8b7bdbfa21e6ae7f8e47c6e53168f9ae41aafe6562103abebbcddd223a649cc9bee96d64b8f1
         | 
| 7 | 
            +
              data.tar.gz: c752aa552ec73d097fb74b419bd3459dbcae37c91b0244204da995b6ac7a6301a20621807e578f87621f9e467a04f40fed0be35d25dbe006d0fcf112cf94d93f
         | 
    
        data/lib/docker/image.rb
    CHANGED
    
    | @@ -23,17 +23,15 @@ class Docker::Image | |
| 23 23 |  | 
| 24 24 | 
             
              # Push the Image to the Docker registry.
         | 
| 25 25 | 
             
              def push(creds = nil, options = {})
         | 
| 26 | 
            -
                 | 
| 27 | 
            -
             | 
| 28 | 
            -
                 | 
| 29 | 
            -
             | 
| 30 | 
            -
             | 
| 31 | 
            -
                 | 
| 32 | 
            -
                 | 
| 33 | 
            -
             | 
| 34 | 
            -
             | 
| 35 | 
            -
                  :headers => headers
         | 
| 36 | 
            -
                )
         | 
| 26 | 
            +
                repo_tag = info['RepoTags'].first
         | 
| 27 | 
            +
                raise ArgumentError "Image is untagged" if repo_tag.nil?
         | 
| 28 | 
            +
                repo, tag = Docker::Util.parse_repo_tag(repo_tag)
         | 
| 29 | 
            +
                raise ArgumentError, "Image does not have a name to push." if repo.nil?
         | 
| 30 | 
            +
             | 
| 31 | 
            +
                credentials = creds || Docker.creds || {}
         | 
| 32 | 
            +
                headers = creds.nil? ? {} : Docker::Util.build_auth_header(credentials)
         | 
| 33 | 
            +
                opts = options.merge(:tag => tag)
         | 
| 34 | 
            +
                connection.post("/images/#{repo}/push", opts, :headers => headers)
         | 
| 37 35 | 
             
                self
         | 
| 38 36 | 
             
              end
         | 
| 39 37 |  | 
    
        data/lib/docker/util.rb
    CHANGED
    
    | @@ -11,6 +11,14 @@ module Docker::Util | |
| 11 11 | 
             
                raise UnexpectedResponseError, ex.message
         | 
| 12 12 | 
             
              end
         | 
| 13 13 |  | 
| 14 | 
            +
              def parse_repo_tag(str)
         | 
| 15 | 
            +
                if match = str.match(/\A(.*):([^:]*)\z/)
         | 
| 16 | 
            +
                  match.captures
         | 
| 17 | 
            +
                else
         | 
| 18 | 
            +
                  [str, '']
         | 
| 19 | 
            +
                end
         | 
| 20 | 
            +
              end
         | 
| 21 | 
            +
             | 
| 14 22 | 
             
              def fix_json(body)
         | 
| 15 23 | 
             
                parse_json("[#{body.gsub(/}\s*{/, '},{')}]")
         | 
| 16 24 | 
             
              end
         | 
    
        data/lib/docker/version.rb
    CHANGED
    
    
    
        data/spec/docker/image_spec.rb
    CHANGED
    
    | @@ -127,6 +127,21 @@ describe Docker::Image do | |
| 127 127 | 
             
                it 'pushes the Image', :vcr do
         | 
| 128 128 | 
             
                  new_image.push(credentials)
         | 
| 129 129 | 
             
                end
         | 
| 130 | 
            +
             | 
| 131 | 
            +
                context 'when there are no credentials' do
         | 
| 132 | 
            +
                  let(:credentials) { nil }
         | 
| 133 | 
            +
                  let(:image) {
         | 
| 134 | 
            +
                    Docker::Image.create('fromImage' => 'registry', 'tag' => 'latest')
         | 
| 135 | 
            +
                  }
         | 
| 136 | 
            +
             | 
| 137 | 
            +
                  before do
         | 
| 138 | 
            +
                    image.tag('repo' => 'localhost:5000/registry', 'tag' => 'test')
         | 
| 139 | 
            +
                  end
         | 
| 140 | 
            +
             | 
| 141 | 
            +
                  it 'still pushes', :vcr do
         | 
| 142 | 
            +
                    expect { image.push }.to_not raise_error
         | 
| 143 | 
            +
                  end
         | 
| 144 | 
            +
                end
         | 
| 130 145 | 
             
              end
         | 
| 131 146 |  | 
| 132 147 | 
             
              describe '#tag' do
         | 
| @@ -8,7 +8,7 @@ http_interactions: | |
| 8 8 | 
             
                  string: ''
         | 
| 9 9 | 
             
                headers:
         | 
| 10 10 | 
             
                  User-Agent:
         | 
| 11 | 
            -
                  - Swipely/Docker-API 1. | 
| 11 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 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 | 
            +
                  - Thu, 03 Apr 2014 17:30:14 GMT
         | 
| 23 23 | 
             
                  Connection:
         | 
| 24 24 | 
             
                  - close
         | 
| 25 25 | 
             
                  Transfer-Encoding:
         | 
| @@ -29,12 +29,195 @@ http_interactions: | |
| 29 29 | 
             
                  string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
         | 
| 30 30 | 
             
                    (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
         | 
| 31 31 | 
             
                    image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
         | 
| 32 | 
            -
                    dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\" | 
| 33 | 
            -
                     | 
| 32 | 
            +
                    dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
         | 
| 33 | 
            +
                    metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
         | 
| 34 | 
            +
                    fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":94863360,\"start\":1396546215},\"progress\":\"[\\u003e
         | 
| 35 | 
            +
                    \                                                 ] 528.4 kB/94.86 MB 2m6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":94863360,\"start\":1396546215},\"progress\":\"[\\u003e
         | 
| 36 | 
            +
                    \                                                 ] 1.057 MB/94.86 MB 1m10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":94863360,\"start\":1396546215},\"progress\":\"[\\u003e
         | 
| 37 | 
            +
                    \                                                 ] 1.585 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=\\u003e
         | 
| 38 | 
            +
                    \                                                ] 2.114 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=\\u003e
         | 
| 39 | 
            +
                    \                                                ] 2.642 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=\\u003e
         | 
| 40 | 
            +
                    \                                                ]  3.17 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=\\u003e
         | 
| 41 | 
            +
                    \                                                ] 3.699 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==\\u003e
         | 
| 42 | 
            +
                    \                                               ] 4.227 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==\\u003e
         | 
| 43 | 
            +
                    \                                               ] 4.755 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==\\u003e
         | 
| 44 | 
            +
                    \                                               ] 5.284 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===\\u003e
         | 
| 45 | 
            +
                    \                                              ] 5.812 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===\\u003e
         | 
| 46 | 
            +
                    \                                              ] 6.341 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===\\u003e
         | 
| 47 | 
            +
                    \                                              ] 6.869 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===\\u003e
         | 
| 48 | 
            +
                    \                                              ] 7.397 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====\\u003e
         | 
| 49 | 
            +
                    \                                             ] 7.926 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====\\u003e
         | 
| 50 | 
            +
                    \                                             ] 8.454 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====\\u003e
         | 
| 51 | 
            +
                    \                                             ] 8.983 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====\\u003e
         | 
| 52 | 
            +
                    \                                            ] 9.511 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====\\u003e
         | 
| 53 | 
            +
                    \                                            ] 10.04 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====\\u003e
         | 
| 54 | 
            +
                    \                                            ] 10.57 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====\\u003e
         | 
| 55 | 
            +
                    \                                            ]  11.1 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======\\u003e
         | 
| 56 | 
            +
                    \                                           ] 11.62 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======\\u003e
         | 
| 57 | 
            +
                    \                                           ] 12.15 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======\\u003e
         | 
| 58 | 
            +
                    \                                           ] 12.68 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======\\u003e
         | 
| 59 | 
            +
                    \                                           ] 13.21 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======\\u003e
         | 
| 60 | 
            +
                    \                                          ] 13.74 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======\\u003e
         | 
| 61 | 
            +
                    \                                          ] 14.27 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======\\u003e
         | 
| 62 | 
            +
                    \                                          ] 14.79 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========\\u003e
         | 
| 63 | 
            +
                    \                                         ] 15.32 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========\\u003e
         | 
| 64 | 
            +
                    \                                         ] 15.85 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========\\u003e
         | 
| 65 | 
            +
                    \                                         ] 16.38 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========\\u003e
         | 
| 66 | 
            +
                    \                                         ] 16.91 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========\\u003e
         | 
| 67 | 
            +
                    \                                        ] 17.44 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========\\u003e
         | 
| 68 | 
            +
                    \                                        ] 17.97 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========\\u003e
         | 
| 69 | 
            +
                    \                                        ] 18.49 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========\\u003e
         | 
| 70 | 
            +
                    \                                       ] 19.02 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========\\u003e
         | 
| 71 | 
            +
                    \                                       ] 19.55 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========\\u003e
         | 
| 72 | 
            +
                    \                                       ] 20.08 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========\\u003e
         | 
| 73 | 
            +
                    \                                       ] 20.61 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========\\u003e
         | 
| 74 | 
            +
                    \                                      ] 21.14 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========\\u003e
         | 
| 75 | 
            +
                    \                                      ] 21.66 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========\\u003e
         | 
| 76 | 
            +
                    \                                      ] 22.19 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========\\u003e
         | 
| 77 | 
            +
                    \                                      ] 22.72 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============\\u003e
         | 
| 78 | 
            +
                    \                                     ] 23.25 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============\\u003e
         | 
| 79 | 
            +
                    \                                     ] 23.78 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============\\u003e
         | 
| 80 | 
            +
                    \                                     ] 24.31 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============\\u003e
         | 
| 81 | 
            +
                    \                                    ] 24.83 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============\\u003e
         | 
| 82 | 
            +
                    \                                    ] 25.36 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============\\u003e
         | 
| 83 | 
            +
                    \                                    ] 25.89 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============\\u003e
         | 
| 84 | 
            +
                    \                                    ] 26.42 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============\\u003e
         | 
| 85 | 
            +
                    \                                   ] 26.95 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============\\u003e
         | 
| 86 | 
            +
                    \                                   ] 27.48 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============\\u003e
         | 
| 87 | 
            +
                    \                                   ]    28 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============\\u003e
         | 
| 88 | 
            +
                    \                                  ] 28.53 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============\\u003e
         | 
| 89 | 
            +
                    \                                  ] 29.06 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============\\u003e
         | 
| 90 | 
            +
                    \                                  ] 29.59 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============\\u003e
         | 
| 91 | 
            +
                    \                                  ] 30.12 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================\\u003e
         | 
| 92 | 
            +
                    \                                 ] 30.65 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================\\u003e
         | 
| 93 | 
            +
                    \                                 ] 31.17 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================\\u003e
         | 
| 94 | 
            +
                    \                                 ]  31.7 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================\\u003e
         | 
| 95 | 
            +
                    \                                 ] 32.23 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================\\u003e
         | 
| 96 | 
            +
                    \                                ] 32.76 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================\\u003e
         | 
| 97 | 
            +
                    \                                ] 33.29 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================\\u003e
         | 
| 98 | 
            +
                    \                                ] 33.82 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================\\u003e
         | 
| 99 | 
            +
                    \                               ] 34.34 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================\\u003e
         | 
| 100 | 
            +
                    \                               ] 34.87 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================\\u003e
         | 
| 101 | 
            +
                    \                               ]  35.4 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================\\u003e
         | 
| 102 | 
            +
                    \                               ] 35.93 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================\\u003e
         | 
| 103 | 
            +
                    \                              ] 36.46 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================\\u003e
         | 
| 104 | 
            +
                    \                              ] 36.99 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================\\u003e
         | 
| 105 | 
            +
                    \                              ] 37.52 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================\\u003e
         | 
| 106 | 
            +
                    \                             ] 38.04 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================\\u003e
         | 
| 107 | 
            +
                    \                             ] 38.57 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================\\u003e
         | 
| 108 | 
            +
                    \                             ]  39.1 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================\\u003e
         | 
| 109 | 
            +
                    \                             ] 39.63 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================\\u003e
         | 
| 110 | 
            +
                    \                            ] 40.16 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================\\u003e
         | 
| 111 | 
            +
                    \                            ] 40.69 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================\\u003e
         | 
| 112 | 
            +
                    \                            ] 41.21 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================\\u003e
         | 
| 113 | 
            +
                    \                           ] 41.74 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================\\u003e
         | 
| 114 | 
            +
                    \                           ] 42.27 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================\\u003e
         | 
| 115 | 
            +
                    \                           ]  42.8 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================\\u003e
         | 
| 116 | 
            +
                    \                           ] 43.33 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================\\u003e
         | 
| 117 | 
            +
                    \                          ] 43.86 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44383585,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================\\u003e
         | 
| 118 | 
            +
                    \                          ] 44.38 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44908544,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================\\u003e
         | 
| 119 | 
            +
                    \                          ] 44.91 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45436928,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================\\u003e
         | 
| 120 | 
            +
                    \                          ] 45.44 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45965312,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================\\u003e
         | 
| 121 | 
            +
                    \                         ] 45.97 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46493696,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================\\u003e
         | 
| 122 | 
            +
                    \                         ] 46.49 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022080,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================\\u003e
         | 
| 123 | 
            +
                    \                         ] 47.02 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47550464,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================\\u003e
         | 
| 124 | 
            +
                    \                        ] 47.55 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48078848,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================\\u003e
         | 
| 125 | 
            +
                    \                        ] 48.08 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48607232,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================\\u003e
         | 
| 126 | 
            +
                    \                        ] 48.61 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49135616,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================\\u003e
         | 
| 127 | 
            +
                    \                        ] 49.14 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49664000,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================\\u003e
         | 
| 128 | 
            +
                    \                       ] 49.66 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50189521,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================\\u003e
         | 
| 129 | 
            +
                    \                       ] 50.19 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50716672,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================\\u003e
         | 
| 130 | 
            +
                    \                       ] 50.72 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51245056,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================\\u003e
         | 
| 131 | 
            +
                    \                      ] 51.25 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51769791,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================\\u003e
         | 
| 132 | 
            +
                    \                      ] 51.77 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52297728,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================\\u003e
         | 
| 133 | 
            +
                    \                      ]  52.3 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52826112,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================\\u003e
         | 
| 134 | 
            +
                    \                      ] 52.83 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53350594,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================\\u003e
         | 
| 135 | 
            +
                    \                     ] 53.35 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53878346,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================\\u003e
         | 
| 136 | 
            +
                    \                     ] 53.88 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54403072,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================\\u003e
         | 
| 137 | 
            +
                    \                     ]  54.4 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54931701,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================\\u003e
         | 
| 138 | 
            +
                    \                     ] 54.93 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55459840,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================\\u003e
         | 
| 139 | 
            +
                    \                    ] 55.46 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55988224,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================\\u003e
         | 
| 140 | 
            +
                    \                    ] 55.99 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56515076,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================\\u003e
         | 
| 141 | 
            +
                    \                    ] 56.52 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57041490,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================\\u003e
         | 
| 142 | 
            +
                    \                   ] 57.04 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57567530,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================\\u003e
         | 
| 143 | 
            +
                    \                   ] 57.57 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58097101,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================\\u003e
         | 
| 144 | 
            +
                    \                   ]  58.1 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58621952,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================\\u003e
         | 
| 145 | 
            +
                    \                   ] 58.62 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59150825,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================\\u003e
         | 
| 146 | 
            +
                    \                  ] 59.15 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59679759,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================\\u003e
         | 
| 147 | 
            +
                    \                  ] 59.68 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60206135,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================\\u003e
         | 
| 148 | 
            +
                    \                  ] 60.21 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60731390,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================\\u003e
         | 
| 149 | 
            +
                    \                 ] 60.73 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61256241,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================\\u003e
         | 
| 150 | 
            +
                    \                 ] 61.26 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61783624,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================\\u003e
         | 
| 151 | 
            +
                    \                 ] 61.78 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62308352,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================\\u003e
         | 
| 152 | 
            +
                    \                 ] 62.31 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62835962,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================\\u003e
         | 
| 153 | 
            +
                    \                ] 62.84 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63365985,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================\\u003e
         | 
| 154 | 
            +
                    \                ] 63.37 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63897600,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================\\u003e
         | 
| 155 | 
            +
                    \                ]  63.9 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64425984,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================\\u003e
         | 
| 156 | 
            +
                    \                ] 64.43 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64951547,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================================\\u003e
         | 
| 157 | 
            +
                    \               ] 64.95 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65477287,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================================\\u003e
         | 
| 158 | 
            +
                    \               ] 65.48 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66002838,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==================================\\u003e
         | 
| 159 | 
            +
                    \               ]    66 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66527232,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================================\\u003e
         | 
| 160 | 
            +
                    \              ] 66.53 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67058428,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================================\\u003e
         | 
| 161 | 
            +
                    \              ] 67.06 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67585551,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================================\\u003e
         | 
| 162 | 
            +
                    \              ] 67.59 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68113131,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===================================\\u003e
         | 
| 163 | 
            +
                    \              ] 68.11 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68639112,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================================\\u003e
         | 
| 164 | 
            +
                    \             ] 68.64 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69167384,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================================\\u003e
         | 
| 165 | 
            +
                    \             ] 69.17 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69692312,\"total\":94863360,\"start\":1396546215},\"progress\":\"[====================================\\u003e
         | 
| 166 | 
            +
                    \             ] 69.69 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70218071,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================================\\u003e
         | 
| 167 | 
            +
                    \            ] 70.22 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70743386,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================================\\u003e
         | 
| 168 | 
            +
                    \            ] 70.74 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71270400,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================================\\u003e
         | 
| 169 | 
            +
                    \            ] 71.27 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71798784,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=====================================\\u003e
         | 
| 170 | 
            +
                    \            ]  71.8 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72324928,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================================\\u003e
         | 
| 171 | 
            +
                    \           ] 72.32 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72851258,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================================\\u003e
         | 
| 172 | 
            +
                    \           ] 72.85 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73375744,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================================\\u003e
         | 
| 173 | 
            +
                    \           ] 73.38 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73904091,\"total\":94863360,\"start\":1396546215},\"progress\":\"[======================================\\u003e
         | 
| 174 | 
            +
                    \           ]  73.9 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74428416,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================================\\u003e
         | 
| 175 | 
            +
                    \          ] 74.43 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74952715,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================================\\u003e
         | 
| 176 | 
            +
                    \          ] 74.95 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75478532,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=======================================\\u003e
         | 
| 177 | 
            +
                    \          ] 75.48 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76006647,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================================\\u003e
         | 
| 178 | 
            +
                    \         ] 76.01 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76533760,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================================\\u003e
         | 
| 179 | 
            +
                    \         ] 76.53 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77067779,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================================\\u003e
         | 
| 180 | 
            +
                    \         ] 77.07 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77594624,\"total\":94863360,\"start\":1396546215},\"progress\":\"[========================================\\u003e
         | 
| 181 | 
            +
                    \         ] 77.59 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78124063,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================================\\u003e
         | 
| 182 | 
            +
                    \        ] 78.12 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78651392,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================================\\u003e
         | 
| 183 | 
            +
                    \        ] 78.65 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79184834,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=========================================\\u003e
         | 
| 184 | 
            +
                    \        ] 79.18 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79711231,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================================\\u003e
         | 
| 185 | 
            +
                    \       ] 79.71 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80239069,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================================\\u003e
         | 
| 186 | 
            +
                    \       ] 80.24 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80764928,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================================\\u003e
         | 
| 187 | 
            +
                    \       ] 80.76 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81290784,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==========================================\\u003e
         | 
| 188 | 
            +
                    \       ] 81.29 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81819342,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================================\\u003e
         | 
| 189 | 
            +
                    \      ] 81.82 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82344206,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================================\\u003e
         | 
| 190 | 
            +
                    \      ] 82.34 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82869115,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================================\\u003e
         | 
| 191 | 
            +
                    \      ] 82.87 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83393910,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===========================================\\u003e
         | 
| 192 | 
            +
                    \      ] 83.39 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83918848,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================================\\u003e
         | 
| 193 | 
            +
                    \     ] 83.92 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84447232,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================================\\u003e
         | 
| 194 | 
            +
                    \     ] 84.45 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84975616,\"total\":94863360,\"start\":1396546215},\"progress\":\"[============================================\\u003e
         | 
| 195 | 
            +
                    \     ] 84.98 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85506859,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================================\\u003e
         | 
| 196 | 
            +
                    \    ] 85.51 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86032106,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================================\\u003e
         | 
| 197 | 
            +
                    \    ] 86.03 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86559316,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================================\\u003e
         | 
| 198 | 
            +
                    \    ] 86.56 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87086158,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=============================================\\u003e
         | 
| 199 | 
            +
                    \    ] 87.09 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87612662,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================================\\u003e
         | 
| 200 | 
            +
                    \   ] 87.61 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88138808,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================================\\u003e
         | 
| 201 | 
            +
                    \   ] 88.14 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88666236,\"total\":94863360,\"start\":1396546215},\"progress\":\"[==============================================\\u003e
         | 
| 202 | 
            +
                    \   ] 88.67 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89191986,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================================\\u003e
         | 
| 203 | 
            +
                    \  ] 89.19 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89718784,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================================\\u003e
         | 
| 204 | 
            +
                    \  ] 89.72 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90247168,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================================\\u003e
         | 
| 205 | 
            +
                    \  ] 90.25 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90775552,\"total\":94863360,\"start\":1396546215},\"progress\":\"[===============================================\\u003e
         | 
| 206 | 
            +
                    \  ] 90.78 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91307188,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================================\\u003e
         | 
| 207 | 
            +
                    \ ] 91.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91833442,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================================\\u003e
         | 
| 208 | 
            +
                    \ ] 91.83 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92360704,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================================\\u003e
         | 
| 209 | 
            +
                    \ ] 92.36 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92889088,\"total\":94863360,\"start\":1396546215},\"progress\":\"[================================================\\u003e
         | 
| 210 | 
            +
                    \ ] 92.89 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93419433,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================================\\u003e
         | 
| 211 | 
            +
                    ] 93.42 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93945856,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================================\\u003e
         | 
| 212 | 
            +
                    ] 93.95 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94474240,\"total\":94863360,\"start\":1396546215},\"progress\":\"[=================================================\\u003e
         | 
| 213 | 
            +
                    ] 94.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
         | 
| 214 | 
            +
                    metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
         | 
| 215 | 
            +
                    fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4106,\"total\":10240,\"start\":1396546227},\"progress\":\"[====================\\u003e
         | 
| 216 | 
            +
                    \                             ] 4.106 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
         | 
| 34 217 | 
             
                    complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
         | 
| 35 218 | 
             
                    complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
         | 
| 36 219 | 
             
                http_version: 
         | 
| 37 | 
            -
              recorded_at:  | 
| 220 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:30:27 GMT
         | 
| 38 221 | 
             
            - request:
         | 
| 39 222 | 
             
                method: post
         | 
| 40 223 | 
             
                uri: unix:///var/run/docker.sock/v1.10/containers/create
         | 
| @@ -43,7 +226,7 @@ http_interactions: | |
| 43 226 | 
             
                  string: "{\"Image\":\"b750fe79269d\",\"Cmd\":[\"true\"]}"
         | 
| 44 227 | 
             
                headers:
         | 
| 45 228 | 
             
                  User-Agent:
         | 
| 46 | 
            -
                  - Swipely/Docker-API 1. | 
| 229 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 47 230 | 
             
                  Content-Type:
         | 
| 48 231 | 
             
                  - application/json
         | 
| 49 232 | 
             
              response:
         | 
| @@ -54,7 +237,7 @@ http_interactions: | |
| 54 237 | 
             
                  Content-Type:
         | 
| 55 238 | 
             
                  - application/json
         | 
| 56 239 | 
             
                  Date:
         | 
| 57 | 
            -
                  -  | 
| 240 | 
            +
                  - Thu, 03 Apr 2014 17:30:28 GMT
         | 
| 58 241 | 
             
                  Content-Length:
         | 
| 59 242 | 
             
                  - '90'
         | 
| 60 243 | 
             
                  Connection:
         | 
| @@ -62,18 +245,18 @@ http_interactions: | |
| 62 245 | 
             
                body:
         | 
| 63 246 | 
             
                  encoding: UTF-8
         | 
| 64 247 | 
             
                  string: |
         | 
| 65 | 
            -
                    {"Id":" | 
| 248 | 
            +
                    {"Id":"0feaadf0610553fc2e3a8722d7e1bd6eb94819891626694768a700a15a3302b5","Warnings":null}
         | 
| 66 249 | 
             
                http_version: 
         | 
| 67 | 
            -
              recorded_at:  | 
| 250 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:30:28 GMT
         | 
| 68 251 | 
             
            - request:
         | 
| 69 252 | 
             
                method: post
         | 
| 70 | 
            -
                uri: unix:///var/run/docker.sock/v1.10/containers/ | 
| 253 | 
            +
                uri: unix:///var/run/docker.sock/v1.10/containers/0feaadf0610553fc2e3a8722d7e1bd6eb94819891626694768a700a15a3302b5/start
         | 
| 71 254 | 
             
                body:
         | 
| 72 255 | 
             
                  encoding: UTF-8
         | 
| 73 256 | 
             
                  string: "{}"
         | 
| 74 257 | 
             
                headers:
         | 
| 75 258 | 
             
                  User-Agent:
         | 
| 76 | 
            -
                  - Swipely/Docker-API 1. | 
| 259 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 77 260 | 
             
                  Content-Type:
         | 
| 78 261 | 
             
                  - application/json
         | 
| 79 262 | 
             
              response:
         | 
| @@ -82,7 +265,7 @@ http_interactions: | |
| 82 265 | 
             
                  message: 
         | 
| 83 266 | 
             
                headers:
         | 
| 84 267 | 
             
                  Date:
         | 
| 85 | 
            -
                  -  | 
| 268 | 
            +
                  - Thu, 03 Apr 2014 17:30:28 GMT
         | 
| 86 269 | 
             
                  Content-Length:
         | 
| 87 270 | 
             
                  - '0'
         | 
| 88 271 | 
             
                  Content-Type:
         | 
| @@ -93,16 +276,16 @@ http_interactions: | |
| 93 276 | 
             
                  encoding: UTF-8
         | 
| 94 277 | 
             
                  string: ''
         | 
| 95 278 | 
             
                http_version: 
         | 
| 96 | 
            -
              recorded_at:  | 
| 279 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:30:28 GMT
         | 
| 97 280 | 
             
            - request:
         | 
| 98 281 | 
             
                method: post
         | 
| 99 | 
            -
                uri: unix:///var/run/docker.sock/v1.10/commit?container= | 
| 282 | 
            +
                uri: unix:///var/run/docker.sock/v1.10/commit?container=0feaadf0&repo=nahiluhmot%2Fbase2
         | 
| 100 283 | 
             
                body:
         | 
| 101 284 | 
             
                  encoding: UTF-8
         | 
| 102 285 | 
             
                  string: 'null'
         | 
| 103 286 | 
             
                headers:
         | 
| 104 287 | 
             
                  User-Agent:
         | 
| 105 | 
            -
                  - Swipely/Docker-API 1. | 
| 288 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 106 289 | 
             
                  Content-Type:
         | 
| 107 290 | 
             
                  - application/json
         | 
| 108 291 | 
             
              response:
         | 
| @@ -113,7 +296,7 @@ http_interactions: | |
| 113 296 | 
             
                  Content-Type:
         | 
| 114 297 | 
             
                  - application/json
         | 
| 115 298 | 
             
                  Date:
         | 
| 116 | 
            -
                  -  | 
| 299 | 
            +
                  - Thu, 03 Apr 2014 17:30:29 GMT
         | 
| 117 300 | 
             
                  Content-Length:
         | 
| 118 301 | 
             
                  - '74'
         | 
| 119 302 | 
             
                  Connection:
         | 
| @@ -121,9 +304,9 @@ http_interactions: | |
| 121 304 | 
             
                body:
         | 
| 122 305 | 
             
                  encoding: UTF-8
         | 
| 123 306 | 
             
                  string: |
         | 
| 124 | 
            -
                    {"Id":" | 
| 307 | 
            +
                    {"Id":"e17239b6812f944eac6c39602add2c34c86dce8310ae4cb5d00c42ad95b2c97c"}
         | 
| 125 308 | 
             
                http_version: 
         | 
| 126 | 
            -
              recorded_at:  | 
| 309 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:30:29 GMT
         | 
| 127 310 | 
             
            - request:
         | 
| 128 311 | 
             
                method: get
         | 
| 129 312 | 
             
                uri: unix:///var/run/docker.sock/v1.10/images/json?all=true
         | 
| @@ -132,7 +315,7 @@ http_interactions: | |
| 132 315 | 
             
                  string: ''
         | 
| 133 316 | 
             
                headers:
         | 
| 134 317 | 
             
                  User-Agent:
         | 
| 135 | 
            -
                  - Swipely/Docker-API 1. | 
| 318 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 136 319 | 
             
                  Content-Type:
         | 
| 137 320 | 
             
                  - text/plain
         | 
| 138 321 | 
             
              response:
         | 
| @@ -143,7 +326,7 @@ http_interactions: | |
| 143 326 | 
             
                  Content-Type:
         | 
| 144 327 | 
             
                  - application/json
         | 
| 145 328 | 
             
                  Date:
         | 
| 146 | 
            -
                  -  | 
| 329 | 
            +
                  - Thu, 03 Apr 2014 17:30:29 GMT
         | 
| 147 330 | 
             
                  Connection:
         | 
| 148 331 | 
             
                  - close
         | 
| 149 332 | 
             
                  Transfer-Encoding:
         | 
| @@ -151,41 +334,34 @@ http_interactions: | |
| 151 334 | 
             
                body:
         | 
| 152 335 | 
             
                  encoding: UTF-8
         | 
| 153 336 | 
             
                  string: |-
         | 
| 154 | 
            -
                    [{"Created": | 
| 155 | 
            -
                    ,{"Created": | 
| 156 | 
            -
                    ,{"Created": | 
| 157 | 
            -
                    ,{"Created": | 
| 158 | 
            -
                    ,{"Created": | 
| 159 | 
            -
                    ,{"Created": | 
| 160 | 
            -
                    ,{"Created": | 
| 161 | 
            -
                    ,{"Created": | 
| 162 | 
            -
                    ,{"Created": | 
| 163 | 
            -
                    ,{"Created": | 
| 164 | 
            -
                    ,{"Created": | 
| 165 | 
            -
                    ,{"Created": | 
| 166 | 
            -
                    ,{"Created":1391448539,"Id":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","ParentId":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","RepoTags":["ubuntu:raring","ubuntu:13.04"],"Size":170192839,"VirtualSize":170192839}
         | 
| 337 | 
            +
                    [{"Created":1396546228,"Id":"e17239b6812f944eac6c39602add2c34c86dce8310ae4cb5d00c42ad95b2c97c","ParentId":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","RepoTags":["nahiluhmot/base2:latest"],"Size":8,"VirtualSize":175307043}
         | 
| 338 | 
            +
                    ,{"Created":1396386930,"Id":"6f1eaf7dab5f69cf7e1d5df9d7006b68e936236b9d108411693e0a1ad65a7cec","ParentId":"c971801055ecdb68e13f7339ffc805cbdfa5003be8ff718d78cf252b9f959f17","RepoTags":["localhost:5000/registry:test","registry:latest"],"Size":0,"VirtualSize":431911044}
         | 
| 339 | 
            +
                    ,{"Created":1396386930,"Id":"c971801055ecdb68e13f7339ffc805cbdfa5003be8ff718d78cf252b9f959f17","ParentId":"b978d5f1bee6a1d0b6ae42de799a69e383bc7478760bc189339bb0b307220815","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":431911044}
         | 
| 340 | 
            +
                    ,{"Created":1396386929,"Id":"b978d5f1bee6a1d0b6ae42de799a69e383bc7478760bc189339bb0b307220815","ParentId":"065bebc19274389b954355c82e27cd7367da25488aa5410fc9baa7a668d40afd","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":3481,"VirtualSize":431911044}
         | 
| 341 | 
            +
                    ,{"Created":1396386929,"Id":"065bebc19274389b954355c82e27cd7367da25488aa5410fc9baa7a668d40afd","ParentId":"17e14c6a562c42b52042aa44c0bea455c709ae85eb1668528c3f4b4fd864cb3a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":431907563}
         | 
| 342 | 
            +
                    ,{"Created":1396386928,"Id":"17e14c6a562c42b52042aa44c0bea455c709ae85eb1668528c3f4b4fd864cb3a","ParentId":"fe2cc747ebd5fe188d4e8cf354f8d1f6b961037596f72c972838ce4c886333d5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1031345,"VirtualSize":431907490}
         | 
| 343 | 
            +
                    ,{"Created":1396386926,"Id":"fe2cc747ebd5fe188d4e8cf354f8d1f6b961037596f72c972838ce4c886333d5","ParentId":"938d785759c11eb68d0cd4980a8b3a698352999a4cc0d4658032ca05d8fe8dc6","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":22183546,"VirtualSize":430876145}
         | 
| 344 | 
            +
                    ,{"Created":1396386882,"Id":"938d785759c11eb68d0cd4980a8b3a698352999a4cc0d4658032ca05d8fe8dc6","ParentId":"269a748040681d556db09b3f223a1c3ec249c7e84d1335afbad59b113af96473","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":278,"VirtualSize":408692599}
         | 
| 345 | 
            +
                    ,{"Created":1396386881,"Id":"269a748040681d556db09b3f223a1c3ec249c7e84d1335afbad59b113af96473","ParentId":"585793f5271697c3d299be3957a1b635a3ae2eb0d216bf7ee3d7a5f306a3047b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":7725479,"VirtualSize":408692321}
         | 
| 346 | 
            +
                    ,{"Created":1396386875,"Id":"585793f5271697c3d299be3957a1b635a3ae2eb0d216bf7ee3d7a5f306a3047b","ParentId":"3110c02964bbd7db22c60153e7fcfb6c7df4777be5d02dbbcf4169efe36c8b94","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":10401,"VirtualSize":400966842}
         | 
| 347 | 
            +
                    ,{"Created":1396386866,"Id":"3110c02964bbd7db22c60153e7fcfb6c7df4777be5d02dbbcf4169efe36c8b94","ParentId":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":230763602,"VirtualSize":400956441}
         | 
| 348 | 
            +
                    ,{"Created":1391448539,"Id":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","ParentId":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":170192839,"VirtualSize":170192839}
         | 
| 167 349 | 
             
                    ,{"Created":1391448529,"Id":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
         | 
| 168 | 
            -
                    ,{"Created":1391448413,"Id":"5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794","ParentId":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","RepoTags":["ubuntu:12.10","ubuntu:quantal"],"Size":161412295,"VirtualSize":161412295}
         | 
| 169 | 
            -
                    ,{"Created":1391448404,"Id":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
         | 
| 170 | 
            -
                    ,{"Created":1391448301,"Id":"9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232","ParentId":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","RepoTags":["ubuntu:10.04","ubuntu:lucid"],"Size":182964289,"VirtualSize":182964289}
         | 
| 171 | 
            -
                    ,{"Created":1391448149,"Id":"9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6","ParentId":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","RepoTags":["ubuntu:12.04","ubuntu:latest","ubuntu:precise"],"Size":204705001,"VirtualSize":204705001}
         | 
| 172 | 
            -
                    ,{"Created":1391448134,"Id":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
         | 
| 173 | 
            -
                    ,{"Created":1390423764,"Id":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
         | 
| 174 350 | 
             
                    ,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
         | 
| 175 351 | 
             
                    ,{"Created":1364102658,"Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc","ParentId":"27cf784147099545","RepoTags":["base:latest","base:ubuntu-12.10","base:ubuntu-quantal","base:ubuntu-quantl"],"Size":77,"VirtualSize":175307035}
         | 
| 176 352 | 
             
                    ,{"Created":1364068391,"Id":"27cf784147099545","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":175306958,"VirtualSize":175306958}
         | 
| 177 353 | 
             
                    ]
         | 
| 178 354 | 
             
                http_version: 
         | 
| 179 | 
            -
              recorded_at:  | 
| 355 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:30:29 GMT
         | 
| 180 356 | 
             
            - request:
         | 
| 181 357 | 
             
                method: post
         | 
| 182 | 
            -
                uri: unix:///var/run/docker.sock/v1.10/images/nahiluhmot/base2/push
         | 
| 358 | 
            +
                uri: unix:///var/run/docker.sock/v1.10/images/nahiluhmot/base2/push?tag=latest
         | 
| 183 359 | 
             
                body:
         | 
| 184 360 | 
             
                  encoding: US-ASCII
         | 
| 185 361 | 
             
                  string: ''
         | 
| 186 362 | 
             
                headers:
         | 
| 187 363 | 
             
                  User-Agent:
         | 
| 188 | 
            -
                  - Swipely/Docker-API 1. | 
| 364 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 189 365 | 
             
                  Content-Type:
         | 
| 190 366 | 
             
                  - text/plain
         | 
| 191 367 | 
             
                  X-Registry-Auth:
         | 
| @@ -200,7 +376,7 @@ http_interactions: | |
| 200 376 | 
             
                  Content-Type:
         | 
| 201 377 | 
             
                  - application/json
         | 
| 202 378 | 
             
                  Date:
         | 
| 203 | 
            -
                  -  | 
| 379 | 
            +
                  - Thu, 03 Apr 2014 17:30:29 GMT
         | 
| 204 380 | 
             
                  Connection:
         | 
| 205 381 | 
             
                  - close
         | 
| 206 382 | 
             
                  Transfer-Encoding:
         | 
| @@ -212,5 +388,5 @@ http_interactions: | |
| 212 388 | 
             
                    Status 401 trying to push repository nahiluhmot/base2: \"},\"error\":\"Error:
         | 
| 213 389 | 
             
                    Status 401 trying to push repository nahiluhmot/base2: \"}\r\n"
         | 
| 214 390 | 
             
                http_version: 
         | 
| 215 | 
            -
              recorded_at:  | 
| 391 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:30:29 GMT
         | 
| 216 392 | 
             
            recorded_with: VCR 2.8.0
         | 
| @@ -0,0 +1,124 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: unix:///var/run/docker.sock/v1.10/images/create?fromImage=registry&tag=latest
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: US-ASCII
         | 
| 8 | 
            +
                  string: ''
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 12 | 
            +
                  Content-Type:
         | 
| 13 | 
            +
                  - text/plain
         | 
| 14 | 
            +
              response:
         | 
| 15 | 
            +
                status:
         | 
| 16 | 
            +
                  code: 200
         | 
| 17 | 
            +
                  message: 
         | 
| 18 | 
            +
                headers:
         | 
| 19 | 
            +
                  Content-Type:
         | 
| 20 | 
            +
                  - application/json
         | 
| 21 | 
            +
                  Date:
         | 
| 22 | 
            +
                  - Thu, 03 Apr 2014 17:29:48 GMT
         | 
| 23 | 
            +
                  Connection:
         | 
| 24 | 
            +
                  - close
         | 
| 25 | 
            +
                  Transfer-Encoding:
         | 
| 26 | 
            +
                  - ''
         | 
| 27 | 
            +
                body:
         | 
| 28 | 
            +
                  encoding: UTF-8
         | 
| 29 | 
            +
                  string: "{\"status\":\"Pulling repository registry\"}\r\n{\"status\":\"Pulling
         | 
| 30 | 
            +
                    image (latest) from registry\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}{\"status\":\"Pulling
         | 
| 31 | 
            +
                    image (latest) from registry, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}{\"status\":\"Pulling
         | 
| 32 | 
            +
                    dependent layers\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}{\"status\":\"Download
         | 
| 33 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
         | 
| 34 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"f323cf34fd77\"}{\"status\":\"Download
         | 
| 35 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Download
         | 
| 36 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"3110c02964bb\"}{\"status\":\"Download
         | 
| 37 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"585793f52716\"}{\"status\":\"Download
         | 
| 38 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"269a74804068\"}{\"status\":\"Download
         | 
| 39 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"938d785759c1\"}{\"status\":\"Download
         | 
| 40 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"fe2cc747ebd5\"}{\"status\":\"Download
         | 
| 41 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"17e14c6a562c\"}{\"status\":\"Download
         | 
| 42 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"065bebc19274\"}{\"status\":\"Download
         | 
| 43 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"b978d5f1bee6\"}{\"status\":\"Download
         | 
| 44 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"c971801055ec\"}{\"status\":\"Download
         | 
| 45 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}{\"status\":\"Download
         | 
| 46 | 
            +
                    complete\",\"progressDetail\":{},\"id\":\"6f1eaf7dab5f\"}"
         | 
| 47 | 
            +
                http_version: 
         | 
| 48 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:29:49 GMT
         | 
| 49 | 
            +
            - request:
         | 
| 50 | 
            +
                method: post
         | 
| 51 | 
            +
                uri: unix:///var/run/docker.sock/v1.10/images/6f1eaf7dab5f/tag?repo=localhost%3A5000%2Fregistry&tag=test
         | 
| 52 | 
            +
                body:
         | 
| 53 | 
            +
                  encoding: US-ASCII
         | 
| 54 | 
            +
                  string: ''
         | 
| 55 | 
            +
                headers:
         | 
| 56 | 
            +
                  User-Agent:
         | 
| 57 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 58 | 
            +
                  Content-Type:
         | 
| 59 | 
            +
                  - text/plain
         | 
| 60 | 
            +
              response:
         | 
| 61 | 
            +
                status:
         | 
| 62 | 
            +
                  code: 201
         | 
| 63 | 
            +
                  message: 
         | 
| 64 | 
            +
                headers:
         | 
| 65 | 
            +
                  Date:
         | 
| 66 | 
            +
                  - Thu, 03 Apr 2014 17:29:49 GMT
         | 
| 67 | 
            +
                  Content-Length:
         | 
| 68 | 
            +
                  - '0'
         | 
| 69 | 
            +
                  Content-Type:
         | 
| 70 | 
            +
                  - text/plain; charset=utf-8
         | 
| 71 | 
            +
                  Connection:
         | 
| 72 | 
            +
                  - close
         | 
| 73 | 
            +
                body:
         | 
| 74 | 
            +
                  encoding: UTF-8
         | 
| 75 | 
            +
                  string: ''
         | 
| 76 | 
            +
                http_version: 
         | 
| 77 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:29:49 GMT
         | 
| 78 | 
            +
            - request:
         | 
| 79 | 
            +
                method: post
         | 
| 80 | 
            +
                uri: unix:///var/run/docker.sock/v1.10/images/localhost:5000/registry/push?tag=test
         | 
| 81 | 
            +
                body:
         | 
| 82 | 
            +
                  encoding: US-ASCII
         | 
| 83 | 
            +
                  string: ''
         | 
| 84 | 
            +
                headers:
         | 
| 85 | 
            +
                  User-Agent:
         | 
| 86 | 
            +
                  - Swipely/Docker-API 1.10.4
         | 
| 87 | 
            +
                  Content-Type:
         | 
| 88 | 
            +
                  - text/plain
         | 
| 89 | 
            +
                  X-Registry-Auth:
         | 
| 90 | 
            +
                  - e30=
         | 
| 91 | 
            +
                  X-Registry-Config:
         | 
| 92 | 
            +
                  - e30=
         | 
| 93 | 
            +
              response:
         | 
| 94 | 
            +
                status:
         | 
| 95 | 
            +
                  code: 200
         | 
| 96 | 
            +
                  message: 
         | 
| 97 | 
            +
                headers:
         | 
| 98 | 
            +
                  Content-Type:
         | 
| 99 | 
            +
                  - application/json
         | 
| 100 | 
            +
                  Date:
         | 
| 101 | 
            +
                  - Thu, 03 Apr 2014 17:29:51 GMT
         | 
| 102 | 
            +
                  Connection:
         | 
| 103 | 
            +
                  - close
         | 
| 104 | 
            +
                  Transfer-Encoding:
         | 
| 105 | 
            +
                  - ''
         | 
| 106 | 
            +
                body:
         | 
| 107 | 
            +
                  encoding: UTF-8
         | 
| 108 | 
            +
                  string: "{\"status\":\"The push refers to a repository [localhost:5000/registry]
         | 
| 109 | 
            +
                    (len: 1)\"}\r\n{\"status\":\"Sending image list\"}\r\n{\"status\":\"Pushing
         | 
| 110 | 
            +
                    repository localhost:5000/registry (1 tags)\"}\r\n{\"status\":\"Image 511136ea3c5a
         | 
| 111 | 
            +
                    already pushed, skipping\"}\r\n{\"status\":\"Image f323cf34fd77 already pushed,
         | 
| 112 | 
            +
                    skipping\"}\r\n{\"status\":\"Image eb601b8965b8 already pushed, skipping\"}\r\n{\"status\":\"Image
         | 
| 113 | 
            +
                    3110c02964bb already pushed, skipping\"}\r\n{\"status\":\"Image 585793f52716
         | 
| 114 | 
            +
                    already pushed, skipping\"}\r\n{\"status\":\"Image 269a74804068 already pushed,
         | 
| 115 | 
            +
                    skipping\"}\r\n{\"status\":\"Image 938d785759c1 already pushed, skipping\"}\r\n{\"status\":\"Image
         | 
| 116 | 
            +
                    fe2cc747ebd5 already pushed, skipping\"}\r\n{\"status\":\"Image 17e14c6a562c
         | 
| 117 | 
            +
                    already pushed, skipping\"}\r\n{\"status\":\"Image 065bebc19274 already pushed,
         | 
| 118 | 
            +
                    skipping\"}\r\n{\"status\":\"Image b978d5f1bee6 already pushed, skipping\"}\r\n{\"status\":\"Image
         | 
| 119 | 
            +
                    c971801055ec already pushed, skipping\"}\r\n{\"status\":\"Image 6f1eaf7dab5f
         | 
| 120 | 
            +
                    already pushed, skipping\"}\r\n{\"status\":\"Pushing tag for rev [6f1eaf7dab5f]
         | 
| 121 | 
            +
                    on {http://localhost:5000/v1/repositories/registry/tags/test}\"}\r\n"
         | 
| 122 | 
            +
                http_version: 
         | 
| 123 | 
            +
              recorded_at: Thu, 03 Apr 2014 17:29:51 GMT
         | 
| 124 | 
            +
            recorded_with: VCR 2.8.0
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: docker-api
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.10. | 
| 4 | 
            +
              version: 1.10.5
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Swipely, Inc.
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2014-03 | 
| 11 | 
            +
            date: 2014-04-03 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: excon
         | 
| @@ -239,6 +239,7 @@ files: | |
| 239 239 | 
             
            - spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml
         | 
| 240 240 | 
             
            - spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml
         | 
| 241 241 | 
             
            - spec/vcr/Docker_Image/_push/pushes_the_Image.yml
         | 
| 242 | 
            +
            - spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml
         | 
| 242 243 | 
             
            - spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml
         | 
| 243 244 | 
             
            - spec/vcr/Docker_Image/_remove/removes_the_Image.yml
         | 
| 244 245 | 
             
            - spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml
         | 
| @@ -332,6 +333,7 @@ test_files: | |
| 332 333 | 
             
            - spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml
         | 
| 333 334 | 
             
            - spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml
         | 
| 334 335 | 
             
            - spec/vcr/Docker_Image/_push/pushes_the_Image.yml
         | 
| 336 | 
            +
            - spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml
         | 
| 335 337 | 
             
            - spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml
         | 
| 336 338 | 
             
            - spec/vcr/Docker_Image/_remove/removes_the_Image.yml
         | 
| 337 339 | 
             
            - spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml
         |