Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Podman fails to complete pulling some images when they are nearly fully downloaded #5583

Closed
malte-v opened this issue Mar 22, 2020 · 15 comments
Labels
kind/bug Categorizes issue or PR as related to a bug. locked - please file new issue/PR Assist humans wanting to comment on an old issue or PR with locked comments.

Comments

@malte-v
Copy link

malte-v commented Mar 22, 2020

Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)

/kind bug

Description

I'm trying to pull the official Rust image from the Docker Hub using podman. Strangely, it encounters an error when the image is nearly fully downloaded. Here are some attempts that should illustrate the problem:

Command line output

Rootless:

➜ podman pull docker.io/rust:latest 
Trying to pull docker.io/rust:latest...
Getting image source signatures
Copying blob c85513200d84 done  
Copying blob dd8c6d374ea5 done  
Copying blob f5e195d50b88 [======================================] 183.2MiB / 183.3MiB
Copying blob 95c7e883f1ec [====================================>-] 120.6MiB / 124.6MiB
Copying blob 55769680e827 [======================================] 48.9MiB / 49.4MiB
Copying blob 50e431f79093 [===================================>--] 45.2MiB / 48.0MiB
read tcp 192.168.178.23:50314->104.18.121.25:443: read: connection reset by peer
Error: error pulling image "docker.io/rust:latest": unable to pull docker.io/rust:latest: unable to pull image: Error writing blob: error storing blob to file "/var/tmp/storage787390060/6": read tcp 192.168.178.23:50314->104.18.121.25:443: read: connection reset by peer

With root:

➜ sudo podman pull docker.io/rust:latest 
Trying to pull docker.io/rust:latest...
Getting image source signatures
Copying blob 50e431f79093 done  
Copying blob f5e195d50b88 done  
Copying blob 95c7e883f1ec done  
Copying blob dd8c6d374ea5 [======================>---------------] 4.5MiB / 7.5MiB
Copying blob c85513200d84 done  
Copying blob 55769680e827 done  
  read tcp 192.168.178.23:44814->104.18.124.25:443: read: connection reset by peer
Error: error pulling image "docker.io/rust:latest": unable to pull docker.io/rust:latest: unable to pull image: Error writing blob: error storing blob to file "/var/tmp/storage169198378/4": read tcp 192.168.178.23:44814->104.18.124.25:443: read: connection reset by peer

This doesn't seem to be a network issue since Docker has no problem with pulling these images and other images, like redislabs/redisgraph, can be pulled by podman without any errors.

Steps to reproduce the issue:

  1. $ [sudo] podman pull docker.io/rust:latest

Describe the results you received:
Podman encounters a "connection reset by peer" error when the image is nearly fully downloaded.

Describe the results you expected:
Podman pulls the image without any errors.

Output of podman version:

Version:            1.8.1
RemoteAPI Version:  1
Go Version:         go1.14
Git Commit:         444a19cdd2e6108c75f6c1aadc1a2a9138a8bd73
Built:              Wed Mar 11 22:49:18 2020
OS/Arch:            linux/amd64

Output of podman info --debug:

debug:
  compiler: gc
  git commit: 444a19cdd2e6108c75f6c1aadc1a2a9138a8bd73
  go version: go1.14
  podman version: 1.8.1
host:
  BuildahVersion: 1.14.2
  CgroupVersion: v1
  Conmon:
    package: Unknown
    path: /usr/bin/conmon
    version: 'conmon version 2.0.12, commit: 682e9587bff927565ec942592129a02c7d410a50'
  Distribution:
    distribution: arch
    version: unknown
  IDMappings:
    gidmap:
    - container_id: 0
      host_id: 998
      size: 1
    - container_id: 1
      host_id: 10000
      size: 65536
    uidmap:
    - container_id: 0
      host_id: 1000
      size: 1
    - container_id: 1
      host_id: 10000
      size: 65536
  MemFree: 10186772480
  MemTotal: 16755634176
  OCIRuntime:
    name: runc
    package: Unknown
    path: /usr/bin/runc
    version: |-
      runc version 1.0.0-rc10
      commit: dc9208a3303feef5b3839f4323d9beb36df0a9dd
      spec: 1.0.1-dev
  SwapFree: 4294963200
  SwapTotal: 4294963200
  arch: amd64
  cpus: 4
  eventlogger: journald
  hostname: linux
  kernel: 5.5.2-arch1-1
  os: linux
  rootless: true
  slirp4netns:
    Executable: /usr/bin/slirp4netns
    Package: Unknown
    Version: |-
      slirp4netns version 0.4.3
      commit: 2244b9b6461afeccad1678fac3d6e478c28b4ad6
  uptime: 9h 6m 37.17s (Approximately 0.38 days)
registries:
  search:
  - docker.io
  - registry.fedoraproject.org
  - quay.io
  - registry.access.redhat.com
  - registry.centos.org
store:
  ConfigFile: /home/malte/.config/containers/storage.conf
  ContainerStore:
    number: 0
  GraphDriverName: overlay
  GraphOptions:
    overlay.mount_program:
      Executable: /usr/bin/fuse-overlayfs
      Package: Unknown
      Version: |-
        fusermount3 version: 3.9.0
        fuse-overlayfs: version 0.7.8
        FUSE library version 3.9.0
        using FUSE kernel interface version 7.31
  GraphRoot: /home/malte/.local/share/containers/storage
  GraphStatus:
    Backing Filesystem: extfs
    Native Overlay Diff: "false"
    Supports d_type: "true"
    Using metacopy: "false"
  ImageStore:
    number: 1
  RunRoot: /run/user/1000/containers
  VolumePath: /home/malte/.local/share/containers/storage/volumes

Package info (e.g. output of rpm -q podman or apt list podman):

➜ pacman -Qi podman
Name            : podman
Version         : 1.8.1-1
Description     : Tool and library for running OCI-based containers in pods
Architecture    : x86_64
URL             : https://github.com/containers/libpod
Licenses        : Apache
Groups          : None
Provides        : None
Depends On      : cni-plugins  conmon  device-mapper  iptables  libseccomp  runc  skopeo  btrfs-progs  slirp4netns  libsystemd
Optional Deps   : podman-docker: for Docker-compatible CLI
Required By     : None
Optional For    : None
Conflicts With  : None
Replaces        : None
Installed Size  : 100.63 MiB
Packager        : Morten Linderud <[email protected]>
Build Date      : Wed 11 Mar 2020 10:49:18 PM CET
Install Date    : Sun 22 Mar 2020 10:32:12 AM CET
Install Reason  : Explicitly installed
Install Script  : No
Validated By    : Signature

Additional environment details (AWS, VirtualBox, physical, etc.):
My home workstation.

@openshift-ci-robot openshift-ci-robot added the kind/bug Categorizes issue or PR as related to a bug. label Mar 22, 2020
@malte-v
Copy link
Author

malte-v commented Mar 22, 2020

I've tried two more times on podman 1.8.2 and the issue persists, but once I got a different "unexpected EOF" error:

➜  ~ podman pull docker.io/rust:latest
Trying to pull docker.io/rust:latest...
Getting image source signatures
Copying blob f5e195d50b88 [====================================>-] 180.0MiB / 183.3MiB
Copying blob 50e431f79093 [===================>------------------] 25.2MiB / 48.0MiB
Copying blob 55769680e827 [================>---------------------] 21.5MiB / 49.4MiB
Copying blob dd8c6d374ea5 done  
Copying blob 95c7e883f1ec [====================================>-] 121.2MiB / 124.6MiB
Copying blob c85513200d84 [=====================>----------------] 5.6MiB / 9.5MiB
  unexpected EOF
Error: error pulling image "docker.io/rust:latest": unable to pull docker.io/rust:latest: unable to pull image: Error writing blob: error storing blob to file "/var/tmp/storage987555834/2": unexpected EOF
➜  ~ podman pull docker.io/rust:latest
Trying to pull docker.io/rust:latest...
Getting image source signatures
Copying blob f5e195d50b88 done  
Copying blob 50e431f79093 [======================================] 48.0MiB / 48.0MiB
Copying blob 55769680e827 done  
Copying blob dd8c6d374ea5 done  
Copying blob c85513200d84 done  
Copying blob 95c7e883f1ec [======================================] 123.2MiB / 124.6MiB
  read tcp 192.168.178.23:60434->104.18.124.25:443: read: connection reset by peer
Error: error pulling image "docker.io/rust:latest": unable to pull docker.io/rust:latest: unable to pull image: Error writing blob: error storing blob to file "/var/tmp/storage153751118/2": read tcp 192.168.178.23:60434->104.18.124.25:443: read: connection reset by peer

@rhatdan
Copy link
Member

rhatdan commented Mar 23, 2020

Strange I was able to pull with no problem.
Can you pull with Docker?

@vrothberg
Copy link
Member

Are you behind a proxy?

@malte-v
Copy link
Author

malte-v commented Mar 23, 2020

Can you pull with Docker?

Yes, pulling with docker works fine. But once I saw it saying "retrying in 5..4.. seconds" and then resuming the download. I'll see if it happens again and provide the full output. According to my router, the internet connection was stable during the download.

➜  ~ docker pull docker.io/rust:latest
latest: Pulling from library/rust
50e431f79093: Pull complete 
dd8c6d374ea5: Pull complete 
c85513200d84: Pull complete 
55769680e827: Pull complete 
f5e195d50b88: Pull complete 
95c7e883f1ec: Pull complete 
Digest: sha256:5efa772c7250d362c5ccdf185eee4450f6fa852129c32635c74cab8f6737aece
Status: Downloaded newer image for rust:latest
docker.io/library/rust:latest

Are you behind a proxy?

No.

Edit: spelling

@malte-v
Copy link
Author

malte-v commented Mar 23, 2020

Here is the full output of docker pull run through script:

Script started on 2020-03-23 13:39:25+01:00 [TERM="xterm-termite" TTY="/dev/pts/1" COLUMNS="210" LINES="51"]
latest: Pulling from library/rust

50e431f79093: Pulling fs layer 
dd8c6d374ea5: Pulling fs layer 
c85513200d84: Pulling fs layer 
55769680e827: Pulling fs layer 
f5e195d50b88: Pulling fs layer 
95c7e883f1ec: Pulling fs layer 
55769680e827: Waiting 
f5e195d50b88: Waiting 
95c7e883f1ec: Waiting 
dd8c6d374ea5: Downloading [>                                                  ]  81.54kB/7.812MB
c85513200d84: Downloading [>                                                  ]  101.6kB/9.996MB
dd8c6d374ea5: Downloading [=>                                                 ]  159.8kB/7.812MB
dd8c6d374ea5: Downloading [=>                                                 ]  244.8kB/7.812MB
c85513200d84: Downloading [=>                                                 ]  204.2kB/9.996MB
dd8c6d374ea5: Downloading [==>                                                ]  326.8kB/7.812MB
dd8c6d374ea5: Downloading [==>                                                ]  408.7kB/7.812MB
50e431f79093: Downloading [>                                                  ]    507kB/50.38MB
dd8c6d374ea5: Downloading [===>                                               ]  490.6kB/7.812MB
c85513200d84: Downloading [=>                                                 ]  310.4kB/9.996MB
dd8c6d374ea5: Downloading [===>                                               ]  572.5kB/7.812MB
dd8c6d374ea5: Downloading [====>                                              ]  654.6kB/7.812MB
c85513200d84: Downloading [==>                                                ]  425.1kB/9.996MB
dd8c6d374ea5: Downloading [====>                                              ]  736.5kB/7.812MB
dd8c6d374ea5: Downloading [=====>                                             ]  818.5kB/7.812MB
dd8c6d374ea5: Downloading [=====>                                             ]  900.4kB/7.812MB
c85513200d84: Downloading [==>                                                ]    539kB/9.996MB
dd8c6d374ea5: Downloading [======>                                            ]  982.3kB/7.812MB
dd8c6d374ea5: Downloading [======>                                            ]  1.064MB/7.812MB
50e431f79093: Downloading [=>                                                 ]  1.014MB/50.38MB
dd8c6d374ea5: Downloading [=======>                                           ]  1.149MB/7.812MB
dd8c6d374ea5: Downloading [=======>                                           ]  1.231MB/7.812MB
c85513200d84: Downloading [===>                                               ]  653.7kB/9.996MB
dd8c6d374ea5: Downloading [========>                                          ]  1.313MB/7.812MB
dd8c6d374ea5: Downloading [========>                                          ]  1.395MB/7.812MB
c85513200d84: Downloading [===>                                               ]  768.4kB/9.996MB
dd8c6d374ea5: Downloading [=========>                                         ]  1.477MB/7.812MB
dd8c6d374ea5: Downloading [=========>                                         ]  1.559MB/7.812MB
dd8c6d374ea5: Downloading [==========>                                        ]  1.641MB/7.812MB
dd8c6d374ea5: Downloading [===========>                                       ]  1.723MB/7.812MB
c85513200d84: Downloading [====>                                              ]  874.9kB/9.996MB
dd8c6d374ea5: Downloading [===========>                                       ]  1.805MB/7.812MB
50e431f79093: Downloading [=>                                                 ]  1.522MB/50.38MB
dd8c6d374ea5: Downloading [============>                                      ]  1.887MB/7.812MB
dd8c6d374ea5: Downloading [============>                                      ]  1.969MB/7.812MB
c85513200d84: Downloading [====>                                              ]  989.6kB/9.996MB
dd8c6d374ea5: Downloading [=============>                                     ]   2.05MB/7.812MB
dd8c6d374ea5: Downloading [=============>                                     ]  2.132MB/7.812MB
c85513200d84: Downloading [=====>                                             ]  1.104MB/9.996MB
dd8c6d374ea5: Downloading [==============>                                    ]  2.214MB/7.812MB
dd8c6d374ea5: Downloading [==============>                                    ]  2.304MB/7.812MB
dd8c6d374ea5: Downloading [===============>                                   ]  2.386MB/7.812MB
c85513200d84: Downloading [======>                                            ]  1.219MB/9.996MB
50e431f79093: Downloading [==>                                                ]  2.042MB/50.38MB
dd8c6d374ea5: Downloading [===============>                                   ]  2.468MB/7.812MB
dd8c6d374ea5: Downloading [================>                                  ]   2.55MB/7.812MB
dd8c6d374ea5: Downloading [================>                                  ]  2.636MB/7.812MB
c85513200d84: Downloading [======>                                            ]  1.334MB/9.996MB
dd8c6d374ea5: Downloading [=================>                                 ]  2.718MB/7.812MB
dd8c6d374ea5: Downloading [=================>                                 ]    2.8MB/7.812MB
dd8c6d374ea5: Downloading [==================>                                ]  2.882MB/7.812MB
c85513200d84: Downloading [=======>                                           ]  1.448MB/9.996MB
50e431f79093: Downloading [==>                                                ]   2.55MB/50.38MB
dd8c6d374ea5: Downloading [==================>                                ]  2.964MB/7.812MB
dd8c6d374ea5: Downloading [===================>                               ]  3.046MB/7.812MB
c85513200d84: Downloading [=======>                                           ]  1.563MB/9.996MB
dd8c6d374ea5: Downloading [====================>                              ]  3.136MB/7.812MB
dd8c6d374ea5: Downloading [====================>                              ]  3.218MB/7.812MB
dd8c6d374ea5: Downloading [=====================>                             ]    3.3MB/7.812MB
c85513200d84: Downloading [========>                                          ]  1.678MB/9.996MB
dd8c6d374ea5: Downloading [=====================>                             ]  3.382MB/7.812MB
50e431f79093: Downloading [===>                                               ]  3.058MB/50.38MB
dd8c6d374ea5: Downloading [======================>                            ]  3.464MB/7.812MB
c85513200d84: Downloading [========>                                          ]  1.792MB/9.996MB
dd8c6d374ea5: Downloading [======================>                            ]  3.545MB/7.812MB
dd8c6d374ea5: Downloading [=======================>                           ]  3.627MB/7.812MB
dd8c6d374ea5: Downloading [=======================>                           ]  3.709MB/7.812MB
dd8c6d374ea5: Downloading [========================>                          ]  3.791MB/7.812MB
c85513200d84: Downloading [=========>                                         ]  1.903MB/9.996MB
50e431f79093: Downloading [===>                                               ]  3.566MB/50.38MB
dd8c6d374ea5: Downloading [========================>                          ]  3.873MB/7.812MB
dd8c6d374ea5: Downloading [=========================>                         ]  3.955MB/7.812MB
c85513200d84: Downloading [==========>                                        ]  2.018MB/9.996MB
dd8c6d374ea5: Downloading [=========================>                         ]  4.037MB/7.812MB
dd8c6d374ea5: Downloading [==========================>                        ]  4.119MB/7.812MB
dd8c6d374ea5: Downloading [==========================>                        ]  4.201MB/7.812MB
c85513200d84: Downloading [==========>                                        ]  2.132MB/9.996MB
dd8c6d374ea5: Downloading [===========================>                       ]  4.291MB/7.812MB
dd8c6d374ea5: Downloading [===========================>                       ]  4.373MB/7.812MB
50e431f79093: Downloading [====>                                              ]  4.078MB/50.38MB
dd8c6d374ea5: Downloading [============================>                      ]  4.455MB/7.812MB
c85513200d84: Downloading [===========>                                       ]  2.247MB/9.996MB
dd8c6d374ea5: Downloading [=============================>                     ]  4.537MB/7.812MB
dd8c6d374ea5: Downloading [=============================>                     ]  4.619MB/7.812MB
dd8c6d374ea5: Downloading [==============================>                    ]  4.701MB/7.812MB
dd8c6d374ea5: Downloading [==============================>                    ]  4.795MB/7.812MB
c85513200d84: Downloading [===========>                                       ]  2.362MB/9.996MB
dd8c6d374ea5: Downloading [===============================>                   ]  4.877MB/7.812MB
dd8c6d374ea5: Downloading [===============================>                   ]  4.959MB/7.812MB
dd8c6d374ea5: Downloading [================================>                  ]  5.041MB/7.812MB
c85513200d84: Downloading [============>                                      ]  2.476MB/9.996MB
dd8c6d374ea5: Downloading [================================>                  ]  5.122MB/7.812MB
50e431f79093: Downloading [====>                                              ]  4.586MB/50.38MB
dd8c6d374ea5: Downloading [=================================>                 ]  5.204MB/7.812MB
dd8c6d374ea5: Downloading [=================================>                 ]  5.286MB/7.812MB
dd8c6d374ea5: Downloading [==================================>                ]  5.368MB/7.812MB
c85513200d84: Downloading [============>                                      ]  2.591MB/9.996MB
dd8c6d374ea5: Downloading [==================================>                ]   5.45MB/7.812MB
dd8c6d374ea5: Downloading [===================================>               ]  5.532MB/7.812MB
dd8c6d374ea5: Downloading [==================================================>]  7.812MB/7.812MB
dd8c6d374ea5: Retrying in 5 seconds 
c85513200d84: Downloading [=============>                                     ]  2.706MB/9.996MB
50e431f79093: Downloading [=====>                                             ]  5.106MB/50.38MB
dd8c6d374ea5: Retrying in 4 seconds 
c85513200d84: Downloading [==============>                                    ]  2.816MB/9.996MB
dd8c6d374ea5: Retrying in 3 seconds 
c85513200d84: Downloading [==============>                                    ]  2.927MB/9.996MB
dd8c6d374ea5: Retrying in 2 seconds 
c85513200d84: Downloading [===============>                                   ]  3.033MB/9.996MB
dd8c6d374ea5: Retrying in 1 second 
c85513200d84: Downloading [===============>                                   ]  3.136MB/9.996MB
50e431f79093: Downloading [=====>                                             ]  5.618MB/50.38MB
c85513200d84: Downloading [================>                                  ]  3.242MB/9.996MB
c85513200d84: Downloading [================>                                  ]  3.349MB/9.996MB
dd8c6d374ea5: Downloading [>                                                  ]  22.34kB/2.231MB
c85513200d84: Downloading [=================>                                 ]  3.464MB/9.996MB
dd8c6d374ea5: Downloading [=>                                                 ]  68.81kB/2.231MB
dd8c6d374ea5: Downloading [==>                                                ]  118.5kB/2.231MB
dd8c6d374ea5: Downloading [===>                                               ]  142.8kB/2.231MB
dd8c6d374ea5: Downloading [====>                                              ]  192.5kB/2.231MB
dd8c6d374ea5: Downloading [====>                                              ]  216.8kB/2.231MB
dd8c6d374ea5: Downloading [======>                                            ]  277.6kB/2.231MB
dd8c6d374ea5: Downloading [=======>                                           ]  343.1kB/2.231MB
c85513200d84: Downloading [=================>                                 ]  3.578MB/9.996MB
dd8c6d374ea5: Downloading [===========>                                       ]    507kB/2.231MB
dd8c6d374ea5: Downloading [============>                                      ]  539.7kB/2.231MB
dd8c6d374ea5: Downloading [=============>                                     ]  605.3kB/2.231MB
c85513200d84: Downloading [==================>                                ]  3.693MB/9.996MB
dd8c6d374ea5: Downloading [==============>                                    ]    638kB/2.231MB
dd8c6d374ea5: Downloading [===============>                                   ]  670.8kB/2.231MB
dd8c6d374ea5: Downloading [===============>                                   ]  703.6kB/2.231MB
50e431f79093: Downloading [======>                                            ]  6.126MB/50.38MB
c85513200d84: Downloading [===================>                               ]  3.808MB/9.996MB
dd8c6d374ea5: Downloading [=================>                                 ]  769.1kB/2.231MB
c85513200d84: Downloading [===================>                               ]  3.922MB/9.996MB
dd8c6d374ea5: Downloading [==================>                                ]  834.6kB/2.231MB
dd8c6d374ea5: Downloading [===================>                               ]  867.4kB/2.231MB
dd8c6d374ea5: Downloading [====================>                              ]  900.2kB/2.231MB
dd8c6d374ea5: Downloading [=====================>                             ]  965.7kB/2.231MB
c85513200d84: Downloading [====================>                              ]  4.025MB/9.996MB
dd8c6d374ea5: Downloading [======================>                            ]  998.5kB/2.231MB
c85513200d84: Downloading [====================>                              ]  4.139MB/9.996MB
dd8c6d374ea5: Downloading [=======================>                           ]  1.064MB/2.231MB
dd8c6d374ea5: Downloading [========================>                          ]  1.097MB/2.231MB
dd8c6d374ea5: Downloading [=========================>                         ]   1.13MB/2.231MB
dd8c6d374ea5: Downloading [==========================>                        ]  1.162MB/2.231MB
c85513200d84: Downloading [=====================>                             ]  4.254MB/9.996MB
dd8c6d374ea5: Downloading [==========================>                        ]  1.195MB/2.231MB
dd8c6d374ea5: Downloading [============================>                      ]  1.261MB/2.231MB
c85513200d84: Downloading [=====================>                             ]  4.369MB/9.996MB
dd8c6d374ea5: Downloading [============================>                      ]  1.293MB/2.231MB
dd8c6d374ea5: Downloading [=============================>                     ]  1.321MB/2.231MB
dd8c6d374ea5: Downloading [==============================>                    ]  1.354MB/2.231MB
c85513200d84: Downloading [======================>                            ]  4.483MB/9.996MB
dd8c6d374ea5: Downloading [===============================>                   ]  1.387MB/2.231MB
c85513200d84: Downloading [======================>                            ]  4.594MB/9.996MB
50e431f79093: Downloading [======>                                            ]  6.646MB/50.38MB
dd8c6d374ea5: Downloading [=================================>                 ]  1.485MB/2.231MB
dd8c6d374ea5: Downloading [==================================>                ]  1.518MB/2.231MB
dd8c6d374ea5: Downloading [==================================>                ]  1.551MB/2.231MB
c85513200d84: Downloading [=======================>                           ]  4.709MB/9.996MB
dd8c6d374ea5: Downloading [===================================>               ]  1.583MB/2.231MB
dd8c6d374ea5: Downloading [=====================================>             ]  1.682MB/2.231MB
c85513200d84: Downloading [========================>                          ]  4.823MB/9.996MB
dd8c6d374ea5: Downloading [======================================>            ]  1.715MB/2.231MB
dd8c6d374ea5: Downloading [=======================================>           ]  1.747MB/2.231MB
dd8c6d374ea5: Downloading [========================================>          ]  1.805MB/2.231MB
c85513200d84: Downloading [========================>                          ]  4.938MB/9.996MB
dd8c6d374ea5: Downloading [=========================================>         ]  1.837MB/2.231MB
dd8c6d374ea5: Downloading [=========================================>         ]   1.87MB/2.231MB
dd8c6d374ea5: Downloading [============================================>      ]  1.969MB/2.231MB
c85513200d84: Downloading [=========================>                         ]  5.053MB/9.996MB
dd8c6d374ea5: Downloading [============================================>      ]  2.001MB/2.231MB
dd8c6d374ea5: Downloading [=============================================>     ]  2.034MB/2.231MB
dd8c6d374ea5: Downloading [==============================================>    ]  2.067MB/2.231MB
c85513200d84: Downloading [=========================>                         ]  5.168MB/9.996MB
dd8c6d374ea5: Downloading [===============================================>   ]    2.1MB/2.231MB
dd8c6d374ea5: Downloading [================================================>  ]  2.165MB/2.231MB
c85513200d84: Downloading [==========================>                        ]  5.282MB/9.996MB
dd8c6d374ea5: Downloading [=================================================> ]  2.198MB/2.231MB
dd8c6d374ea5: Verifying Checksum 
dd8c6d374ea5: Download complete 
50e431f79093: Downloading [=======>                                           ]  7.154MB/50.38MB
c85513200d84: Downloading [==========================>                        ]  5.397MB/9.996MB
c85513200d84: Downloading [===========================>                       ]  5.512MB/9.996MB
c85513200d84: Downloading [============================>                      ]  5.626MB/9.996MB
c85513200d84: Downloading [============================>                      ]  5.741MB/9.996MB
c85513200d84: Downloading [=============================>                     ]  5.856MB/9.996MB
c85513200d84: Downloading [=============================>                     ]   5.97MB/9.996MB
55769680e827: Downloading [>                                                  ]  523.3kB/51.79MB
c85513200d84: Downloading [==============================>                    ]  6.085MB/9.996MB
c85513200d84: Downloading [===============================>                   ]    6.2MB/9.996MB
c85513200d84: Downloading [===============================>                   ]  6.314MB/9.996MB
50e431f79093: Downloading [=======>                                           ]  7.662MB/50.38MB
c85513200d84: Downloading [================================>                  ]  6.429MB/9.996MB
55769680e827: Downloading [=>                                                 ]  1.044MB/51.79MB
c85513200d84: Downloading [================================>                  ]  6.544MB/9.996MB
c85513200d84: Downloading [=================================>                 ]  6.658MB/9.996MB
c85513200d84: Downloading [=================================>                 ]  6.765MB/9.996MB
50e431f79093: Downloading [========>                                          ]  8.182MB/50.38MB
c85513200d84: Downloading [==================================>                ]   6.88MB/9.996MB
55769680e827: Downloading [=>                                                 ]  1.568MB/51.79MB
c85513200d84: Downloading [==================================>                ]  6.994MB/9.996MB
c85513200d84: Downloading [===================================>               ]  7.109MB/9.996MB
50e431f79093: Downloading [========>                                          ]  8.702MB/50.38MB
c85513200d84: Downloading [====================================>              ]  7.224MB/9.996MB
c85513200d84: Downloading [====================================>              ]  7.338MB/9.996MB
c85513200d84: Downloading [=====================================>             ]  7.445MB/9.996MB
50e431f79093: Downloading [=========>                                         ]  9.223MB/50.38MB
55769680e827: Downloading [==>                                                ]  2.092MB/51.79MB
c85513200d84: Downloading [=====================================>             ]   7.56MB/9.996MB
c85513200d84: Downloading [======================================>            ]  7.674MB/9.996MB
c85513200d84: Downloading [======================================>            ]  7.789MB/9.996MB
50e431f79093: Downloading [=========>                                         ]  9.743MB/50.38MB
c85513200d84: Downloading [=======================================>           ]  7.904MB/9.996MB
c85513200d84: Downloading [========================================>          ]   8.01MB/9.996MB
55769680e827: Downloading [==>                                                ]  2.612MB/51.79MB
c85513200d84: Downloading [========================================>          ]  8.117MB/9.996MB
50e431f79093: Downloading [==========>                                        ]  10.26MB/50.38MB
c85513200d84: Downloading [=========================================>         ]  8.231MB/9.996MB
c85513200d84: Downloading [=========================================>         ]  8.346MB/9.996MB
c85513200d84: Downloading [==========================================>        ]  8.461MB/9.996MB
50e431f79093: Downloading [==========>                                        ]  10.77MB/50.38MB
55769680e827: Downloading [===>                                               ]   3.14MB/51.79MB
c85513200d84: Downloading [==========================================>        ]  8.567MB/9.996MB
c85513200d84: Downloading [===========================================>       ]  8.682MB/9.996MB
55769680e827: Downloading [===>                                               ]  3.672MB/51.79MB
50e431f79093: Downloading [===========>                                       ]  11.28MB/50.38MB
c85513200d84: Downloading [===========================================>       ]  8.797MB/9.996MB
55769680e827: Downloading [====>                                              ]  4.201MB/51.79MB
50e431f79093: Downloading [===========>                                       ]   11.8MB/50.38MB
55769680e827: Downloading [====>                                              ]  4.733MB/51.79MB
c85513200d84: Downloading [============================================>      ]  8.911MB/9.996MB
50e431f79093: Downloading [============>                                      ]  12.31MB/50.38MB
c85513200d84: Downloading [=============================================>     ]  9.026MB/9.996MB
55769680e827: Downloading [=====>                                             ]  5.258MB/51.79MB
c85513200d84: Downloading [=============================================>     ]  9.141MB/9.996MB
50e431f79093: Downloading [============>                                      ]  12.81MB/50.38MB
55769680e827: Downloading [=====>                                             ]  5.782MB/51.79MB
c85513200d84: Downloading [==============================================>    ]  9.255MB/9.996MB
c85513200d84: Downloading [==============================================>    ]   9.37MB/9.996MB
c85513200d84: Downloading [===============================================>   ]  9.485MB/9.996MB
50e431f79093: Downloading [=============>                                     ]  13.33MB/50.38MB
55769680e827: Downloading [======>                                            ]  6.302MB/51.79MB
c85513200d84: Downloading [================================================>  ]  9.599MB/9.996MB
c85513200d84: Downloading [================================================>  ]  9.714MB/9.996MB
50e431f79093: Downloading [=============>                                     ]  13.84MB/50.38MB
55769680e827: Downloading [======>                                            ]  6.826MB/51.79MB
c85513200d84: Downloading [=================================================> ]  9.829MB/9.996MB
c85513200d84: Downloading [=================================================> ]  9.935MB/9.996MB
c85513200d84: Verifying Checksum 
c85513200d84: Download complete 
50e431f79093: Downloading [==============>                                    ]  14.36MB/50.38MB
55769680e827: Downloading [=======>                                           ]  7.355MB/51.79MB
50e431f79093: Downloading [==============>                                    ]  14.88MB/50.38MB
f5e195d50b88: Downloading [>                                                  ]  530.8kB/192.2MB
55769680e827: Downloading [=======>                                           ]  7.875MB/51.79MB
50e431f79093: Downloading [===============>                                   ]   15.4MB/50.38MB
f5e195d50b88: Downloading [>                                                  ]  1.063MB/192.2MB
55769680e827: Downloading [========>                                          ]  8.403MB/51.79MB
f5e195d50b88: Downloading [>                                                  ]  1.604MB/192.2MB
50e431f79093: Downloading [===============>                                   ]  15.91MB/50.38MB
f5e195d50b88: Downloading [>                                                  ]  2.132MB/192.2MB
50e431f79093: Downloading [================>                                  ]  16.43MB/50.38MB
55769680e827: Downloading [========>                                          ]  8.928MB/51.79MB
f5e195d50b88: Downloading [>                                                  ]  2.669MB/192.2MB
50e431f79093: Downloading [================>                                  ]  16.94MB/50.38MB
55769680e827: Downloading [=========>                                         ]   9.46MB/51.79MB
f5e195d50b88: Downloading [>                                                  ]   3.21MB/192.2MB
50e431f79093: Downloading [=================>                                 ]  17.45MB/50.38MB
55769680e827: Downloading [=========>                                         ]   9.98MB/51.79MB
f5e195d50b88: Downloading [>                                                  ]  3.742MB/192.2MB
50e431f79093: Downloading [=================>                                 ]  17.96MB/50.38MB
55769680e827: Downloading [==========>                                        ]   10.5MB/51.79MB
f5e195d50b88: Downloading [=>                                                 ]  4.283MB/192.2MB
50e431f79093: Downloading [==================>                                ]  18.48MB/50.38MB
55769680e827: Downloading [==========>                                        ]  11.03MB/51.79MB
50e431f79093: Downloading [==================>                                ]  18.99MB/50.38MB
f5e195d50b88: Downloading [=>                                                 ]  4.823MB/192.2MB
55769680e827: Downloading [===========>                                       ]  11.55MB/51.79MB
50e431f79093: Downloading [===================>                               ]   19.5MB/50.38MB
50e431f79093: Downloading [===================>                               ]  20.01MB/50.38MB
55769680e827: Downloading [===========>                                       ]  12.08MB/51.79MB
f5e195d50b88: Downloading [=>                                                 ]  5.364MB/192.2MB
50e431f79093: Downloading [====================>                              ]  20.52MB/50.38MB
50e431f79093: Downloading [====================>                              ]  21.03MB/50.38MB
55769680e827: Downloading [============>                                      ]   12.6MB/51.79MB
50e431f79093: Downloading [=====================>                             ]  21.54MB/50.38MB
f5e195d50b88: Downloading [=>                                                 ]  5.905MB/192.2MB
50e431f79093: Downloading [=====================>                             ]  22.05MB/50.38MB
55769680e827: Downloading [============>                                      ]  13.12MB/51.79MB
50e431f79093: Downloading [======================>                            ]  22.56MB/50.38MB
f5e195d50b88: Downloading [=>                                                 ]  6.433MB/192.2MB
50e431f79093: Downloading [======================>                            ]  23.06MB/50.38MB
55769680e827: Downloading [=============>                                     ]  13.65MB/51.79MB
f5e195d50b88: Downloading [=>                                                 ]  6.962MB/192.2MB
50e431f79093: Downloading [=======================>                           ]  23.57MB/50.38MB
50e431f79093: Downloading [=======================>                           ]  24.08MB/50.38MB
f5e195d50b88: Downloading [=>                                                 ]  7.498MB/192.2MB
55769680e827: Downloading [=============>                                     ]  14.17MB/51.79MB
f5e195d50b88: Downloading [==>                                                ]  8.039MB/192.2MB
50e431f79093: Downloading [========================>                          ]  24.59MB/50.38MB
f5e195d50b88: Downloading [==>                                                ]  8.567MB/192.2MB
50e431f79093: Downloading [========================>                          ]  25.09MB/50.38MB
f5e195d50b88: Downloading [==>                                                ]  9.108MB/192.2MB
f5e195d50b88: Downloading [==>                                                ]  9.636MB/192.2MB
50e431f79093: Downloading [=========================>                         ]  25.61MB/50.38MB
55769680e827: Downloading [==============>                                    ]   14.7MB/51.79MB
f5e195d50b88: Downloading [==>                                                ]  10.17MB/192.2MB
50e431f79093: Downloading [=========================>                         ]  26.12MB/50.38MB
50e431f79093: Downloading [==========================>                        ]  26.63MB/50.38MB
f5e195d50b88: Downloading [==>                                                ]  10.71MB/192.2MB
55769680e827: Downloading [==============>                                    ]  15.22MB/51.79MB
50e431f79093: Downloading [==========================>                        ]  27.14MB/50.38MB
f5e195d50b88: Downloading [==>                                                ]  11.25MB/192.2MB
50e431f79093: Downloading [===========================>                       ]  27.65MB/50.38MB
55769680e827: Downloading [===============>                                   ]  15.76MB/51.79MB
50e431f79093: Downloading [===========================>                       ]  28.16MB/50.38MB
f5e195d50b88: Downloading [===>                                               ]  11.79MB/192.2MB
50e431f79093: Downloading [============================>                      ]  28.68MB/50.38MB
55769680e827: Downloading [===============>                                   ]  16.29MB/51.79MB
f5e195d50b88: Downloading [===>                                               ]  12.34MB/192.2MB
50e431f79093: Downloading [============================>                      ]  29.19MB/50.38MB
50e431f79093: Downloading [=============================>                     ]   29.7MB/50.38MB
f5e195d50b88: Downloading [===>                                               ]  12.88MB/192.2MB
55769680e827: Downloading [================>                                  ]  16.82MB/51.79MB
50e431f79093: Downloading [=============================>                     ]  30.21MB/50.38MB
f5e195d50b88: Downloading [===>                                               ]  13.42MB/192.2MB
55769680e827: Downloading [================>                                  ]  17.34MB/51.79MB
50e431f79093: Downloading [==============================>                    ]  30.73MB/50.38MB
f5e195d50b88: Downloading [===>                                               ]  13.95MB/192.2MB
50e431f79093: Downloading [===============================>                   ]  31.24MB/50.38MB
55769680e827: Downloading [=================>                                 ]  17.87MB/51.79MB
50e431f79093: Downloading [===============================>                   ]  31.75MB/50.38MB
f5e195d50b88: Downloading [===>                                               ]  14.49MB/192.2MB
f5e195d50b88: Downloading [===>                                               ]  15.03MB/192.2MB
50e431f79093: Downloading [================================>                  ]  32.27MB/50.38MB
55769680e827: Downloading [=================>                                 ]  18.39MB/51.79MB
f5e195d50b88: Downloading [====>                                              ]  15.56MB/192.2MB
50e431f79093: Downloading [================================>                  ]  32.78MB/50.38MB
f5e195d50b88: Downloading [====>                                              ]  16.09MB/192.2MB
50e431f79093: Downloading [=================================>                 ]  33.29MB/50.38MB
55769680e827: Downloading [==================>                                ]  18.92MB/51.79MB
f5e195d50b88: Downloading [====>                                              ]  16.63MB/192.2MB
50e431f79093: Downloading [=================================>                 ]   33.8MB/50.38MB
f5e195d50b88: Downloading [====>                                              ]  17.16MB/192.2MB
50e431f79093: Downloading [==================================>                ]  34.31MB/50.38MB
55769680e827: Downloading [==================>                                ]  19.44MB/51.79MB
f5e195d50b88: Downloading [====>                                              ]   17.7MB/192.2MB
50e431f79093: Downloading [==================================>                ]  34.81MB/50.38MB
f5e195d50b88: Downloading [====>                                              ]  18.24MB/192.2MB
55769680e827: Downloading [===================>                               ]  19.97MB/51.79MB
50e431f79093: Downloading [===================================>               ]  35.32MB/50.38MB
f5e195d50b88: Downloading [====>                                              ]  18.77MB/192.2MB
50e431f79093: Downloading [===================================>               ]  35.83MB/50.38MB
55769680e827: Downloading [===================>                               ]  20.49MB/51.79MB
50e431f79093: Downloading [====================================>              ]  36.34MB/50.38MB
f5e195d50b88: Downloading [=====>                                             ]  19.31MB/192.2MB
55769680e827: Downloading [====================>                              ]  21.02MB/51.79MB
50e431f79093: Downloading [====================================>              ]  36.85MB/50.38MB
f5e195d50b88: Downloading [=====>                                             ]  19.85MB/192.2MB
55769680e827: Downloading [====================>                              ]  21.54MB/51.79MB
50e431f79093: Downloading [=====================================>             ]  37.35MB/50.38MB
f5e195d50b88: Downloading [=====>                                             ]  20.38MB/192.2MB
55769680e827: Downloading [=====================>                             ]  22.08MB/51.79MB
50e431f79093: Downloading [=====================================>             ]  37.86MB/50.38MB
f5e195d50b88: Downloading [=====>                                             ]  20.92MB/192.2MB
50e431f79093: Downloading [======================================>            ]  38.38MB/50.38MB
55769680e827: Downloading [=====================>                             ]   22.6MB/51.79MB
f5e195d50b88: Downloading [=====>                                             ]  21.46MB/192.2MB
50e431f79093: Downloading [======================================>            ]   38.9MB/50.38MB
50e431f79093: Downloading [=======================================>           ]  39.42MB/50.38MB
f5e195d50b88: Downloading [=====>                                             ]     22MB/192.2MB
55769680e827: Downloading [======================>                            ]  23.12MB/51.79MB
50e431f79093: Downloading [=======================================>           ]  39.93MB/50.38MB
f5e195d50b88: Downloading [=====>                                             ]  22.53MB/192.2MB
55769680e827: Downloading [======================>                            ]  23.64MB/51.79MB
50e431f79093: Downloading [========================================>          ]  40.43MB/50.38MB
f5e195d50b88: Downloading [======>                                            ]  23.07MB/192.2MB
50e431f79093: Downloading [========================================>          ]  40.94MB/50.38MB
55769680e827: Downloading [=======================>                           ]  24.17MB/51.79MB
f5e195d50b88: Downloading [======>                                            ]  23.61MB/192.2MB
50e431f79093: Downloading [=========================================>         ]  41.46MB/50.38MB
55769680e827: Downloading [=======================>                           ]   24.7MB/51.79MB
50e431f79093: Downloading [=========================================>         ]  41.97MB/50.38MB
f5e195d50b88: Downloading [======>                                            ]  24.15MB/192.2MB
55769680e827: Downloading [========================>                          ]  25.22MB/51.79MB
50e431f79093: Downloading [==========================================>        ]  42.48MB/50.38MB
55769680e827: Downloading [========================>                          ]  25.75MB/51.79MB
50e431f79093: Downloading [==========================================>        ]  42.99MB/50.38MB
55769680e827: Downloading [=========================>                         ]  26.27MB/51.79MB
f5e195d50b88: Downloading [======>                                            ]  24.69MB/192.2MB
50e431f79093: Downloading [===========================================>       ]   43.5MB/50.38MB
55769680e827: Downloading [=========================>                         ]   26.8MB/51.79MB
f5e195d50b88: Downloading [======>                                            ]  25.23MB/192.2MB
50e431f79093: Downloading [===========================================>       ]  44.01MB/50.38MB
55769680e827: Downloading [==========================>                        ]  27.32MB/51.79MB
50e431f79093: Downloading [============================================>      ]  44.51MB/50.38MB
55769680e827: Downloading [==========================>                        ]  27.85MB/51.79MB
f5e195d50b88: Downloading [======>                                            ]  25.77MB/192.2MB
50e431f79093: Downloading [============================================>      ]  45.03MB/50.38MB
55769680e827: Downloading [===========================>                       ]  28.37MB/51.79MB
f5e195d50b88: Downloading [======>                                            ]  26.31MB/192.2MB
50e431f79093: Downloading [=============================================>     ]  45.53MB/50.38MB
55769680e827: Downloading [===========================>                       ]   28.9MB/51.79MB
f5e195d50b88: Downloading [======>                                            ]  26.85MB/192.2MB
50e431f79093: Downloading [=============================================>     ]  46.04MB/50.38MB
f5e195d50b88: Downloading [=======>                                           ]  27.39MB/192.2MB
55769680e827: Downloading [============================>                      ]  29.42MB/51.79MB
50e431f79093: Downloading [==============================================>    ]  46.56MB/50.38MB
f5e195d50b88: Downloading [=======>                                           ]  27.93MB/192.2MB
55769680e827: Downloading [============================>                      ]  29.95MB/51.79MB
50e431f79093: Downloading [==============================================>    ]  47.07MB/50.38MB
f5e195d50b88: Downloading [=======>                                           ]  28.46MB/192.2MB
50e431f79093: Downloading [===============================================>   ]  47.58MB/50.38MB
55769680e827: Downloading [=============================>                     ]  30.47MB/51.79MB
f5e195d50b88: Downloading [=======>                                           ]  28.99MB/192.2MB
50e431f79093: Downloading [===============================================>   ]  48.09MB/50.38MB
55769680e827: Downloading [=============================>                     ]     31MB/51.79MB
f5e195d50b88: Downloading [=======>                                           ]  29.53MB/192.2MB
55769680e827: Downloading [==============================>                    ]  31.53MB/51.79MB
50e431f79093: Downloading [================================================>  ]  48.61MB/50.38MB
55769680e827: Downloading [==============================>                    ]  32.05MB/51.79MB
f5e195d50b88: Downloading [=======>                                           ]  30.07MB/192.2MB
50e431f79093: Downloading [================================================>  ]  49.12MB/50.38MB
55769680e827: Downloading [===============================>                   ]  32.57MB/51.79MB
f5e195d50b88: Downloading [=======>                                           ]  30.61MB/192.2MB
55769680e827: Downloading [===============================>                   ]   33.1MB/51.79MB
50e431f79093: Downloading [=================================================> ]  49.64MB/50.38MB
55769680e827: Downloading [================================>                  ]  33.63MB/51.79MB
f5e195d50b88: Downloading [========>                                          ]  31.14MB/192.2MB
55769680e827: Downloading [================================>                  ]  34.16MB/51.79MB
50e431f79093: Downloading [=================================================> ]  50.15MB/50.38MB
50e431f79093: Verifying Checksum 
50e431f79093: Download complete 
50e431f79093: Extracting [>                                                  ]  524.3kB/50.38MB
50e431f79093: Extracting [===>                                               ]   3.67MB/50.38MB
50e431f79093: Extracting [=======>                                           ]   7.34MB/50.38MB
50e431f79093: Extracting [==========>                                        ]  10.49MB/50.38MB
55769680e827: Downloading [=================================>                 ]  34.68MB/51.79MB
50e431f79093: Extracting [=============>                                     ]  13.63MB/50.38MB
50e431f79093: Extracting [================>                                  ]  16.78MB/50.38MB
50e431f79093: Extracting [===================>                               ]  19.92MB/50.38MB
50e431f79093: Extracting [=======================>                           ]  23.59MB/50.38MB
f5e195d50b88: Downloading [========>                                          ]  31.68MB/192.2MB
50e431f79093: Extracting [==========================>                        ]  26.21MB/50.38MB
50e431f79093: Extracting [==================================>                ]   34.6MB/50.38MB
50e431f79093: Extracting [=====================================>             ]  38.27MB/50.38MB
50e431f79093: Extracting [========================================>          ]  40.89MB/50.38MB
50e431f79093: Extracting [===========================================>       ]  43.52MB/50.38MB
50e431f79093: Extracting [=============================================>     ]  46.14MB/50.38MB
50e431f79093: Extracting [================================================>  ]  49.28MB/50.38MB
50e431f79093: Extracting [==================================================>]  50.38MB/50.38MB
50e431f79093: Pull complete 
dd8c6d374ea5: Extracting [>                                                  ]   98.3kB/7.812MB
dd8c6d374ea5: Extracting [================>                                  ]  2.654MB/7.812MB
dd8c6d374ea5: Extracting [=================================>                 ]   5.21MB/7.812MB
dd8c6d374ea5: Extracting [==================================================>]  7.812MB/7.812MB
dd8c6d374ea5: Pull complete 
c85513200d84: Extracting [>                                                  ]  131.1kB/9.996MB
c85513200d84: Extracting [=================>                                 ]  3.408MB/9.996MB
95c7e883f1ec: Downloading [>                                                  ]    539kB/130.6MB
c85513200d84: Extracting [=================================================> ]  9.961MB/9.996MB
c85513200d84: Extracting [==================================================>]  9.996MB/9.996MB
c85513200d84: Pull complete 
95c7e883f1ec: Downloading [>                                                  ]  1.067MB/130.6MB
95c7e883f1ec: Downloading [>                                                  ]  1.604MB/130.6MB
55769680e827: Downloading [=================================>                 ]  35.21MB/51.79MB
95c7e883f1ec: Downloading [>                                                  ]  2.145MB/130.6MB
f5e195d50b88: Downloading [========>                                          ]  32.23MB/192.2MB
95c7e883f1ec: Downloading [=>                                                 ]  2.685MB/130.6MB
55769680e827: Downloading [==================================>                ]  35.73MB/51.79MB
95c7e883f1ec: Downloading [=>                                                 ]  3.226MB/130.6MB
55769680e827: Downloading [===================================>               ]  36.26MB/51.79MB
f5e195d50b88: Downloading [========>                                          ]  32.77MB/192.2MB
95c7e883f1ec: Downloading [=>                                                 ]  3.758MB/130.6MB
95c7e883f1ec: Downloading [=>                                                 ]  4.295MB/130.6MB
f5e195d50b88: Downloading [========>                                          ]  33.31MB/192.2MB
55769680e827: Downloading [===================================>               ]  36.78MB/51.79MB
95c7e883f1ec: Downloading [=>                                                 ]  4.832MB/130.6MB
f5e195d50b88: Downloading [========>                                          ]  33.84MB/192.2MB
f5e195d50b88: Downloading [========>                                          ]  34.38MB/192.2MB
95c7e883f1ec: Downloading [==>                                                ]  5.372MB/130.6MB
55769680e827: Downloading [====================================>              ]   37.3MB/51.79MB
f5e195d50b88: Downloading [=========>                                         ]  34.91MB/192.2MB
95c7e883f1ec: Downloading [==>                                                ]  5.905MB/130.6MB
55769680e827: Downloading [====================================>              ]  37.83MB/51.79MB
f5e195d50b88: Downloading [=========>                                         ]  35.45MB/192.2MB
95c7e883f1ec: Downloading [==>                                                ]  6.445MB/130.6MB
55769680e827: Downloading [=====================================>             ]  38.35MB/51.79MB
f5e195d50b88: Downloading [=========>                                         ]  35.99MB/192.2MB
95c7e883f1ec: Downloading [==>                                                ]  6.978MB/130.6MB
55769680e827: Downloading [=====================================>             ]  38.89MB/51.79MB
f5e195d50b88: Downloading [=========>                                         ]  36.53MB/192.2MB
95c7e883f1ec: Downloading [==>                                                ]  7.519MB/130.6MB
f5e195d50b88: Downloading [=========>                                         ]  37.06MB/192.2MB
55769680e827: Downloading [======================================>            ]  39.41MB/51.79MB
95c7e883f1ec: Downloading [===>                                               ]  8.047MB/130.6MB
f5e195d50b88: Downloading [=========>                                         ]   37.6MB/192.2MB
95c7e883f1ec: Downloading [===>                                               ]  8.584MB/130.6MB
f5e195d50b88: Downloading [=========>                                         ]  38.14MB/192.2MB
55769680e827: Downloading [======================================>            ]  39.93MB/51.79MB
95c7e883f1ec: Downloading [===>                                               ]  9.124MB/130.6MB
f5e195d50b88: Downloading [==========>                                        ]  38.68MB/192.2MB
55769680e827: Downloading [=======================================>           ]  40.46MB/51.79MB
f5e195d50b88: Downloading [==========>                                        ]  39.21MB/192.2MB
95c7e883f1ec: Downloading [===>                                               ]  9.665MB/130.6MB
55769680e827: Downloading [=======================================>           ]  40.99MB/51.79MB
f5e195d50b88: Downloading [==========>                                        ]  39.73MB/192.2MB
95c7e883f1ec: Downloading [===>                                               ]  10.21MB/130.6MB
55769680e827: Downloading [========================================>          ]  41.51MB/51.79MB
95c7e883f1ec: Downloading [====>                                              ]  10.75MB/130.6MB
f5e195d50b88: Downloading [==========>                                        ]  40.27MB/192.2MB
55769680e827: Downloading [========================================>          ]  42.04MB/51.79MB
95c7e883f1ec: Downloading [====>                                              ]  11.28MB/130.6MB
f5e195d50b88: Downloading [==========>                                        ]  40.81MB/192.2MB
55769680e827: Downloading [=========================================>         ]  42.57MB/51.79MB
95c7e883f1ec: Downloading [====>                                              ]  11.81MB/130.6MB
f5e195d50b88: Downloading [==========>                                        ]  41.34MB/192.2MB
95c7e883f1ec: Downloading [====>                                              ]  12.34MB/130.6MB
55769680e827: Downloading [=========================================>         ]  43.09MB/51.79MB
f5e195d50b88: Downloading [==========>                                        ]  41.88MB/192.2MB
55769680e827: Downloading [==========================================>        ]  43.61MB/51.79MB
95c7e883f1ec: Downloading [====>                                              ]  12.88MB/130.6MB
f5e195d50b88: Downloading [===========>                                       ]  42.42MB/192.2MB
95c7e883f1ec: Downloading [=====>                                             ]   13.4MB/130.6MB
f5e195d50b88: Downloading [===========>                                       ]  42.96MB/192.2MB
55769680e827: Downloading [==========================================>        ]  44.14MB/51.79MB
f5e195d50b88: Downloading [===========>                                       ]   43.5MB/192.2MB
95c7e883f1ec: Downloading [=====>                                             ]  13.95MB/130.6MB
f5e195d50b88: Downloading [===========>                                       ]  44.04MB/192.2MB
95c7e883f1ec: Downloading [=====>                                             ]  14.48MB/130.6MB
55769680e827: Downloading [===========================================>       ]  44.67MB/51.79MB
f5e195d50b88: Downloading [===========>                                       ]  44.58MB/192.2MB
95c7e883f1ec: Downloading [=====>                                             ]  15.02MB/130.6MB
f5e195d50b88: Downloading [===========>                                       ]   45.1MB/192.2MB
95c7e883f1ec: Downloading [=====>                                             ]  15.55MB/130.6MB
f5e195d50b88: Downloading [===========>                                       ]  45.64MB/192.2MB
55769680e827: Downloading [===========================================>       ]  45.19MB/51.79MB
95c7e883f1ec: Downloading [======>                                            ]  16.09MB/130.6MB
f5e195d50b88: Downloading [============>                                      ]  46.17MB/192.2MB
95c7e883f1ec: Downloading [======>                                            ]  16.63MB/130.6MB
f5e195d50b88: Downloading [============>                                      ]   46.7MB/192.2MB
95c7e883f1ec: Downloading [======>                                            ]  17.16MB/130.6MB
f5e195d50b88: Downloading [============>                                      ]  47.24MB/192.2MB
95c7e883f1ec: Downloading [======>                                            ]  17.71MB/130.6MB
f5e195d50b88: Downloading [============>                                      ]  47.78MB/192.2MB
55769680e827: Downloading [============================================>      ]  45.72MB/51.79MB
95c7e883f1ec: Downloading [======>                                            ]  18.25MB/130.6MB
f5e195d50b88: Downloading [============>                                      ]  48.32MB/192.2MB
95c7e883f1ec: Downloading [=======>                                           ]  18.77MB/130.6MB
f5e195d50b88: Downloading [============>                                      ]  48.86MB/192.2MB
55769680e827: Downloading [============================================>      ]  46.24MB/51.79MB
95c7e883f1ec: Downloading [=======>                                           ]   19.3MB/130.6MB
f5e195d50b88: Downloading [============>                                      ]   49.4MB/192.2MB
55769680e827: Downloading [=============================================>     ]  46.76MB/51.79MB
95c7e883f1ec: Downloading [=======>                                           ]  19.84MB/130.6MB
f5e195d50b88: Downloading [============>                                      ]  49.93MB/192.2MB
f5e195d50b88: Downloading [=============>                                     ]  50.47MB/192.2MB
55769680e827: Downloading [=============================================>     ]  47.29MB/51.79MB
95c7e883f1ec: Downloading [=======>                                           ]  20.36MB/130.6MB
55769680e827: Downloading [==============================================>    ]  47.81MB/51.79MB
95c7e883f1ec: Downloading [========>                                          ]   20.9MB/130.6MB
f5e195d50b88: Downloading [=============>                                     ]  51.01MB/192.2MB
55769680e827: Downloading [==============================================>    ]  48.34MB/51.79MB
95c7e883f1ec: Downloading [========>                                          ]  21.45MB/130.6MB
f5e195d50b88: Downloading [=============>                                     ]  51.54MB/192.2MB
55769680e827: Downloading [===============================================>   ]  48.86MB/51.79MB
95c7e883f1ec: Downloading [========>                                          ]  21.98MB/130.6MB
f5e195d50b88: Downloading [=============>                                     ]  52.08MB/192.2MB
55769680e827: Downloading [===============================================>   ]  49.38MB/51.79MB
95c7e883f1ec: Downloading [========>                                          ]  22.51MB/130.6MB
f5e195d50b88: Downloading [=============>                                     ]  52.62MB/192.2MB
55769680e827: Downloading [================================================>  ]  49.91MB/51.79MB
95c7e883f1ec: Downloading [========>                                          ]  23.05MB/130.6MB
f5e195d50b88: Downloading [=============>                                     ]  53.16MB/192.2MB
55769680e827: Downloading [================================================>  ]  50.44MB/51.79MB
95c7e883f1ec: Downloading [=========>                                         ]  23.59MB/130.6MB
f5e195d50b88: Downloading [=============>                                     ]  53.71MB/192.2MB
55769680e827: Downloading [=================================================> ]  50.96MB/51.79MB
95c7e883f1ec: Downloading [=========>                                         ]  24.13MB/130.6MB
55769680e827: Downloading [=================================================> ]  51.49MB/51.79MB
f5e195d50b88: Downloading [==============>                                    ]  54.25MB/192.2MB
95c7e883f1ec: Downloading [=========>                                         ]  24.67MB/130.6MB
55769680e827: Verifying Checksum 
55769680e827: Download complete 
55769680e827: Extracting [>                                                  ]  524.3kB/51.79MB
55769680e827: Extracting [====>                                              ]  4.194MB/51.79MB
55769680e827: Extracting [=======>                                           ]  7.864MB/51.79MB
55769680e827: Extracting [===========>                                       ]  11.53MB/51.79MB
55769680e827: Extracting [==============>                                    ]   15.2MB/51.79MB
55769680e827: Extracting [=================>                                 ]  18.35MB/51.79MB
55769680e827: Extracting [====================>                              ]  20.97MB/51.79MB
55769680e827: Extracting [======================>                            ]  23.59MB/51.79MB
55769680e827: Extracting [=========================>                         ]  26.21MB/51.79MB
55769680e827: Extracting [===========================>                       ]  28.84MB/51.79MB
55769680e827: Extracting [==============================>                    ]  31.98MB/51.79MB
55769680e827: Extracting [=================================>                 ]   34.6MB/51.79MB
55769680e827: Extracting [===================================>               ]  37.22MB/51.79MB
55769680e827: Extracting [========================================>          ]  42.47MB/51.79MB
95c7e883f1ec: Downloading [=========>                                         ]   25.2MB/130.6MB
55769680e827: Extracting [============================================>      ]  46.14MB/51.79MB
55769680e827: Extracting [==============================================>    ]  48.23MB/51.79MB
55769680e827: Extracting [================================================>  ]  50.33MB/51.79MB
55769680e827: Extracting [==================================================>]  51.79MB/51.79MB
55769680e827: Pull complete 
f5e195d50b88: Downloading [==============>                                    ]  54.79MB/192.2MB
95c7e883f1ec: Downloading [=========>                                         ]  25.73MB/130.6MB
f5e195d50b88: Downloading [==============>                                    ]  55.33MB/192.2MB
95c7e883f1ec: Downloading [==========>                                        ]  26.27MB/130.6MB
95c7e883f1ec: Downloading [==========>                                        ]  26.81MB/130.6MB
f5e195d50b88: Downloading [==============>                                    ]  55.87MB/192.2MB
95c7e883f1ec: Downloading [==========>                                        ]  27.35MB/130.6MB
f5e195d50b88: Downloading [==============>                                    ]  56.41MB/192.2MB
95c7e883f1ec: Downloading [==========>                                        ]  27.88MB/130.6MB
f5e195d50b88: Downloading [==============>                                    ]  56.95MB/192.2MB
f5e195d50b88: Downloading [==============>                                    ]  57.49MB/192.2MB
95c7e883f1ec: Downloading [==========>                                        ]  28.42MB/130.6MB
f5e195d50b88: Downloading [===============>                                   ]  58.03MB/192.2MB
95c7e883f1ec: Downloading [===========>                                       ]  28.95MB/130.6MB
f5e195d50b88: Downloading [===============>                                   ]  58.57MB/192.2MB
95c7e883f1ec: Downloading [===========>                                       ]  29.49MB/130.6MB
f5e195d50b88: Downloading [===============>                                   ]   59.1MB/192.2MB
f5e195d50b88: Downloading [===============>                                   ]  59.64MB/192.2MB
95c7e883f1ec: Downloading [===========>                                       ]  30.03MB/130.6MB
f5e195d50b88: Downloading [===============>                                   ]  60.16MB/192.2MB
95c7e883f1ec: Downloading [===========>                                       ]  30.57MB/130.6MB
f5e195d50b88: Downloading [===============>                                   ]  60.69MB/192.2MB
95c7e883f1ec: Downloading [===========>                                       ]  31.11MB/130.6MB
95c7e883f1ec: Downloading [============>                                      ]  31.65MB/130.6MB
f5e195d50b88: Downloading [===============>                                   ]  61.23MB/192.2MB
95c7e883f1ec: Downloading [============>                                      ]  32.19MB/130.6MB
f5e195d50b88: Downloading [================>                                  ]  61.77MB/192.2MB
95c7e883f1ec: Downloading [============>                                      ]  32.72MB/130.6MB
f5e195d50b88: Downloading [================>                                  ]  62.31MB/192.2MB
95c7e883f1ec: Downloading [============>                                      ]  33.25MB/130.6MB
f5e195d50b88: Downloading [================>                                  ]  62.85MB/192.2MB
95c7e883f1ec: Downloading [============>                                      ]  33.78MB/130.6MB
95c7e883f1ec: Downloading [=============>                                     ]  34.31MB/130.6MB
f5e195d50b88: Downloading [================>                                  ]  63.39MB/192.2MB
95c7e883f1ec: Downloading [=============>                                     ]  34.85MB/130.6MB
f5e195d50b88: Downloading [================>                                  ]  63.93MB/192.2MB
95c7e883f1ec: Downloading [=============>                                     ]  35.39MB/130.6MB
f5e195d50b88: Downloading [================>                                  ]  64.47MB/192.2MB
95c7e883f1ec: Downloading [=============>                                     ]  35.92MB/130.6MB
95c7e883f1ec: Downloading [=============>                                     ]  36.45MB/130.6MB
f5e195d50b88: Downloading [================>                                  ]  65.01MB/192.2MB
95c7e883f1ec: Downloading [==============>                                    ]  36.98MB/130.6MB
f5e195d50b88: Downloading [=================>                                 ]  65.55MB/192.2MB
95c7e883f1ec: Downloading [==============>                                    ]  37.52MB/130.6MB
f5e195d50b88: Downloading [=================>                                 ]  66.09MB/192.2MB
95c7e883f1ec: Downloading [==============>                                    ]  38.06MB/130.6MB
f5e195d50b88: Downloading [=================>                                 ]  66.63MB/192.2MB
95c7e883f1ec: Downloading [==============>                                    ]   38.6MB/130.6MB
f5e195d50b88: Downloading [=================>                                 ]  67.17MB/192.2MB
f5e195d50b88: Downloading [=================>                                 ]  67.71MB/192.2MB
95c7e883f1ec: Downloading [==============>                                    ]  39.14MB/130.6MB
f5e195d50b88: Downloading [=================>                                 ]  68.25MB/192.2MB
f5e195d50b88: Downloading [=================>                                 ]  68.79MB/192.2MB
95c7e883f1ec: Downloading [===============>                                   ]  39.66MB/130.6MB
f5e195d50b88: Downloading [==================>                                ]  69.32MB/192.2MB
95c7e883f1ec: Downloading [===============>                                   ]   40.2MB/130.6MB
f5e195d50b88: Downloading [==================>                                ]  69.86MB/192.2MB
95c7e883f1ec: Downloading [===============>                                   ]  40.75MB/130.6MB
f5e195d50b88: Downloading [==================>                                ]  70.39MB/192.2MB
95c7e883f1ec: Downloading [===============>                                   ]  41.28MB/130.6MB
f5e195d50b88: Downloading [==================>                                ]  70.93MB/192.2MB
95c7e883f1ec: Downloading [================>                                  ]  41.81MB/130.6MB
f5e195d50b88: Downloading [==================>                                ]  71.47MB/192.2MB
95c7e883f1ec: Downloading [================>                                  ]  42.36MB/130.6MB
f5e195d50b88: Downloading [==================>                                ]  72.01MB/192.2MB
95c7e883f1ec: Downloading [================>                                  ]   42.9MB/130.6MB
f5e195d50b88: Downloading [==================>                                ]  72.54MB/192.2MB
95c7e883f1ec: Downloading [================>                                  ]  43.43MB/130.6MB
f5e195d50b88: Downloading [===================>                               ]  73.08MB/192.2MB
95c7e883f1ec: Downloading [================>                                  ]  43.97MB/130.6MB
f5e195d50b88: Downloading [===================>                               ]  73.62MB/192.2MB
95c7e883f1ec: Downloading [=================>                                 ]   44.5MB/130.6MB
f5e195d50b88: Downloading [===================>                               ]  74.16MB/192.2MB
95c7e883f1ec: Downloading [=================>                                 ]  45.03MB/130.6MB
f5e195d50b88: Downloading [===================>                               ]  74.69MB/192.2MB
95c7e883f1ec: Downloading [=================>                                 ]  45.56MB/130.6MB
f5e195d50b88: Downloading [===================>                               ]  75.23MB/192.2MB
95c7e883f1ec: Downloading [=================>                                 ]   46.1MB/130.6MB
f5e195d50b88: Downloading [===================>                               ]  75.77MB/192.2MB
f5e195d50b88: Downloading [===================>                               ]  76.31MB/192.2MB
95c7e883f1ec: Downloading [=================>                                 ]  46.64MB/130.6MB
f5e195d50b88: Downloading [===================>                               ]  76.85MB/192.2MB
95c7e883f1ec: Downloading [==================>                                ]  47.18MB/130.6MB
f5e195d50b88: Downloading [====================>                              ]  77.39MB/192.2MB
95c7e883f1ec: Downloading [==================>                                ]  47.72MB/130.6MB
f5e195d50b88: Downloading [====================>                              ]  77.92MB/192.2MB
95c7e883f1ec: Downloading [==================>                                ]  48.26MB/130.6MB
95c7e883f1ec: Downloading [==================>                                ]  48.79MB/130.6MB
f5e195d50b88: Downloading [====================>                              ]  78.46MB/192.2MB
f5e195d50b88: Downloading [====================>                              ]     79MB/192.2MB
95c7e883f1ec: Downloading [==================>                                ]  49.33MB/130.6MB
f5e195d50b88: Downloading [====================>                              ]  79.54MB/192.2MB
95c7e883f1ec: Downloading [===================>                               ]  49.87MB/130.6MB
f5e195d50b88: Downloading [====================>                              ]  80.08MB/192.2MB
95c7e883f1ec: Downloading [===================>                               ]  50.41MB/130.6MB
f5e195d50b88: Downloading [====================>                              ]  80.62MB/192.2MB
95c7e883f1ec: Downloading [===================>                               ]  50.95MB/130.6MB
f5e195d50b88: Downloading [=====================>                             ]  81.16MB/192.2MB
f5e195d50b88: Downloading [=====================>                             ]  81.69MB/192.2MB
95c7e883f1ec: Downloading [===================>                               ]  51.49MB/130.6MB
f5e195d50b88: Downloading [=====================>                             ]  82.23MB/192.2MB
f5e195d50b88: Downloading [=====================>                             ]  82.76MB/192.2MB
95c7e883f1ec: Downloading [===================>                               ]  52.03MB/130.6MB
f5e195d50b88: Downloading [=====================>                             ]   83.3MB/192.2MB
f5e195d50b88: Downloading [=====================>                             ]  83.84MB/192.2MB
f5e195d50b88: Downloading [=====================>                             ]  84.38MB/192.2MB
95c7e883f1ec: Downloading [====================>                              ]  52.57MB/130.6MB
f5e195d50b88: Downloading [======================>                            ]  84.92MB/192.2MB
95c7e883f1ec: Downloading [====================>                              ]  53.11MB/130.6MB
f5e195d50b88: Downloading [======================>                            ]  85.47MB/192.2MB
95c7e883f1ec: Downloading [====================>                              ]  53.65MB/130.6MB
f5e195d50b88: Downloading [======================>                            ]  85.99MB/192.2MB
95c7e883f1ec: Downloading [====================>                              ]  54.19MB/130.6MB
95c7e883f1ec: Downloading [====================>                              ]  54.73MB/130.6MB
f5e195d50b88: Downloading [======================>                            ]  86.53MB/192.2MB
95c7e883f1ec: Downloading [=====================>                             ]  55.27MB/130.6MB
95c7e883f1ec: Downloading [=====================>                             ]   55.8MB/130.6MB
f5e195d50b88: Downloading [======================>                            ]  87.08MB/192.2MB
95c7e883f1ec: Downloading [=====================>                             ]  56.34MB/130.6MB
95c7e883f1ec: Downloading [=====================>                             ]  56.88MB/130.6MB
f5e195d50b88: Downloading [======================>                            ]  87.62MB/192.2MB
95c7e883f1ec: Downloading [=====================>                             ]   57.4MB/130.6MB
f5e195d50b88: Downloading [======================>                            ]  88.16MB/192.2MB
95c7e883f1ec: Downloading [======================>                            ]  57.94MB/130.6MB
f5e195d50b88: Downloading [=======================>                           ]   88.7MB/192.2MB
95c7e883f1ec: Downloading [======================>                            ]  58.47MB/130.6MB
f5e195d50b88: Downloading [=======================>                           ]  89.23MB/192.2MB
95c7e883f1ec: Downloading [======================>                            ]     59MB/130.6MB
f5e195d50b88: Downloading [=======================>                           ]  89.77MB/192.2MB
f5e195d50b88: Downloading [=======================>                           ]  90.31MB/192.2MB
95c7e883f1ec: Downloading [======================>                            ]  59.53MB/130.6MB
f5e195d50b88: Downloading [=======================>                           ]  90.85MB/192.2MB
95c7e883f1ec: Downloading [======================>                            ]  60.07MB/130.6MB
f5e195d50b88: Downloading [=======================>                           ]  91.38MB/192.2MB
f5e195d50b88: Downloading [=======================>                           ]  91.92MB/192.2MB
95c7e883f1ec: Downloading [=======================>                           ]  60.61MB/130.6MB
f5e195d50b88: Downloading [========================>                          ]  92.46MB/192.2MB
95c7e883f1ec: Downloading [=======================>                           ]  61.15MB/130.6MB
f5e195d50b88: Downloading [========================>                          ]     93MB/192.2MB
f5e195d50b88: Downloading [========================>                          ]  93.54MB/192.2MB
95c7e883f1ec: Downloading [=======================>                           ]  61.69MB/130.6MB
f5e195d50b88: Downloading [========================>                          ]  94.08MB/192.2MB
95c7e883f1ec: Downloading [=======================>                           ]  62.23MB/130.6MB
f5e195d50b88: Downloading [========================>                          ]  94.62MB/192.2MB
95c7e883f1ec: Downloading [========================>                          ]  62.77MB/130.6MB
f5e195d50b88: Downloading [========================>                          ]  95.15MB/192.2MB
95c7e883f1ec: Downloading [========================>                          ]  63.31MB/130.6MB
f5e195d50b88: Downloading [========================>                          ]  95.69MB/192.2MB
95c7e883f1ec: Downloading [========================>                          ]  63.84MB/130.6MB
f5e195d50b88: Downloading [=========================>                         ]  96.23MB/192.2MB
95c7e883f1ec: Downloading [========================>                          ]  64.37MB/130.6MB
f5e195d50b88: Downloading [=========================>                         ]  96.77MB/192.2MB
95c7e883f1ec: Downloading [========================>                          ]  64.91MB/130.6MB
f5e195d50b88: Downloading [=========================>                         ]  97.31MB/192.2MB
f5e195d50b88: Downloading [=========================>                         ]  97.84MB/192.2MB
95c7e883f1ec: Downloading [=========================>                         ]  65.45MB/130.6MB
f5e195d50b88: Downloading [=========================>                         ]  98.38MB/192.2MB
95c7e883f1ec: Downloading [=========================>                         ]  65.99MB/130.6MB
f5e195d50b88: Downloading [=========================>                         ]  98.92MB/192.2MB
95c7e883f1ec: Downloading [=========================>                         ]  66.53MB/130.6MB
f5e195d50b88: Downloading [=========================>                         ]  99.45MB/192.2MB
95c7e883f1ec: Downloading [=========================>                         ]  67.06MB/130.6MB
f5e195d50b88: Downloading [==========================>                        ]  99.99MB/192.2MB
95c7e883f1ec: Downloading [=========================>                         ]   67.6MB/130.6MB
95c7e883f1ec: Downloading [==========================>                        ]  68.14MB/130.6MB
f5e195d50b88: Downloading [==========================>                        ]  100.5MB/192.2MB
f5e195d50b88: Downloading [==========================>                        ]  101.1MB/192.2MB
95c7e883f1ec: Downloading [==========================>                        ]  68.68MB/130.6MB
f5e195d50b88: Downloading [==========================>                        ]  101.6MB/192.2MB
95c7e883f1ec: Downloading [==========================>                        ]  69.22MB/130.6MB
f5e195d50b88: Downloading [==========================>                        ]  102.2MB/192.2MB
95c7e883f1ec: Downloading [==========================>                        ]  69.76MB/130.6MB
f5e195d50b88: Downloading [==========================>                        ]  102.7MB/192.2MB
95c7e883f1ec: Downloading [==========================>                        ]   70.3MB/130.6MB
f5e195d50b88: Downloading [==========================>                        ]  103.2MB/192.2MB
f5e195d50b88: Downloading [===========================>                       ]  103.8MB/192.2MB
95c7e883f1ec: Downloading [===========================>                       ]  70.84MB/130.6MB
f5e195d50b88: Downloading [===========================>                       ]  104.3MB/192.2MB
95c7e883f1ec: Downloading [===========================>                       ]  71.37MB/130.6MB
f5e195d50b88: Downloading [===========================>                       ]  104.9MB/192.2MB
f5e195d50b88: Downloading [===========================>                       ]  105.4MB/192.2MB
95c7e883f1ec: Downloading [===========================>                       ]  71.91MB/130.6MB
f5e195d50b88: Downloading [===========================>                       ]  105.9MB/192.2MB
95c7e883f1ec: Downloading [===========================>                       ]  72.45MB/130.6MB
f5e195d50b88: Downloading [===========================>                       ]  106.5MB/192.2MB
95c7e883f1ec: Downloading [===========================>                       ]  72.98MB/130.6MB
f5e195d50b88: Downloading [===========================>                       ]    107MB/192.2MB
f5e195d50b88: Downloading [===========================>                       ]  107.5MB/192.2MB
95c7e883f1ec: Downloading [============================>                      ]  73.52MB/130.6MB
f5e195d50b88: Downloading [============================>                      ]  108.1MB/192.2MB
f5e195d50b88: Downloading [============================>                      ]  108.6MB/192.2MB
95c7e883f1ec: Downloading [============================>                      ]  74.06MB/130.6MB
f5e195d50b88: Downloading [============================>                      ]  109.2MB/192.2MB
f5e195d50b88: Downloading [============================>                      ]  109.7MB/192.2MB
95c7e883f1ec: Downloading [============================>                      ]  74.59MB/130.6MB
f5e195d50b88: Downloading [============================>                      ]  110.2MB/192.2MB
95c7e883f1ec: Downloading [============================>                      ]  75.13MB/130.6MB
f5e195d50b88: Downloading [============================>                      ]  110.8MB/192.2MB
f5e195d50b88: Downloading [============================>                      ]  111.3MB/192.2MB
f5e195d50b88: Downloading [=============================>                     ]  111.9MB/192.2MB
f5e195d50b88: Downloading [=============================>                     ]  112.4MB/192.2MB
95c7e883f1ec: Downloading [============================>                      ]  75.66MB/130.6MB
f5e195d50b88: Downloading [=============================>                     ]  112.9MB/192.2MB
95c7e883f1ec: Downloading [=============================>                     ]   76.2MB/130.6MB
f5e195d50b88: Downloading [=============================>                     ]  113.5MB/192.2MB
95c7e883f1ec: Downloading [=============================>                     ]  76.74MB/130.6MB
f5e195d50b88: Downloading [=============================>                     ]    114MB/192.2MB
95c7e883f1ec: Downloading [=============================>                     ]  77.28MB/130.6MB
95c7e883f1ec: Downloading [=============================>                     ]  77.82MB/130.6MB
f5e195d50b88: Downloading [=============================>                     ]  114.5MB/192.2MB
95c7e883f1ec: Downloading [==============================>                    ]  78.36MB/130.6MB
f5e195d50b88: Downloading [=============================>                     ]  115.1MB/192.2MB
95c7e883f1ec: Downloading [==============================>                    ]   78.9MB/130.6MB
f5e195d50b88: Downloading [==============================>                    ]  115.6MB/192.2MB
95c7e883f1ec: Downloading [==============================>                    ]  79.44MB/130.6MB
f5e195d50b88: Downloading [==============================>                    ]  116.2MB/192.2MB
95c7e883f1ec: Downloading [==============================>                    ]  79.98MB/130.6MB
f5e195d50b88: Downloading [==============================>                    ]  116.7MB/192.2MB
95c7e883f1ec: Downloading [==============================>                    ]  80.52MB/130.6MB
f5e195d50b88: Downloading [==============================>                    ]  117.2MB/192.2MB
95c7e883f1ec: Downloading [===============================>                   ]  81.06MB/130.6MB
95c7e883f1ec: Downloading [===============================>                   ]  81.59MB/130.6MB
f5e195d50b88: Downloading [==============================>                    ]  117.8MB/192.2MB
95c7e883f1ec: Downloading [===============================>                   ]  82.12MB/130.6MB
f5e195d50b88: Downloading [==============================>                    ]  118.3MB/192.2MB
95c7e883f1ec: Downloading [===============================>                   ]  82.65MB/130.6MB
f5e195d50b88: Downloading [==============================>                    ]  118.9MB/192.2MB
95c7e883f1ec: Downloading [===============================>                   ]  83.18MB/130.6MB
f5e195d50b88: Downloading [===============================>                   ]  119.4MB/192.2MB
95c7e883f1ec: Downloading [================================>                  ]  83.71MB/130.6MB
f5e195d50b88: Downloading [===============================>                   ]  119.9MB/192.2MB
95c7e883f1ec: Downloading [================================>                  ]  84.25MB/130.6MB
f5e195d50b88: Downloading [===============================>                   ]  120.5MB/192.2MB
95c7e883f1ec: Downloading [================================>                  ]  84.79MB/130.6MB
f5e195d50b88: Downloading [===============================>                   ]    121MB/192.2MB
f5e195d50b88: Downloading [===============================>                   ]  121.5MB/192.2MB
95c7e883f1ec: Downloading [================================>                  ]  85.33MB/130.6MB
f5e195d50b88: Downloading [===============================>                   ]  122.1MB/192.2MB
95c7e883f1ec: Downloading [================================>                  ]  85.87MB/130.6MB
f5e195d50b88: Downloading [===============================>                   ]  122.6MB/192.2MB
f5e195d50b88: Downloading [================================>                  ]  123.2MB/192.2MB
95c7e883f1ec: Downloading [=================================>                 ]   86.4MB/130.6MB
f5e195d50b88: Downloading [================================>                  ]  123.7MB/192.2MB
95c7e883f1ec: Downloading [=================================>                 ]  86.94MB/130.6MB
f5e195d50b88: Downloading [================================>                  ]  124.2MB/192.2MB
95c7e883f1ec: Downloading [=================================>                 ]  87.48MB/130.6MB
f5e195d50b88: Downloading [================================>                  ]  124.8MB/192.2MB
95c7e883f1ec: Downloading [=================================>                 ]  88.01MB/130.6MB
f5e195d50b88: Downloading [================================>                  ]  125.3MB/192.2MB
95c7e883f1ec: Downloading [=================================>                 ]  88.55MB/130.6MB
f5e195d50b88: Downloading [================================>                  ]  125.8MB/192.2MB
f5e195d50b88: Downloading [================================>                  ]  126.4MB/192.2MB
95c7e883f1ec: Downloading [==================================>                ]  89.08MB/130.6MB
f5e195d50b88: Downloading [=================================>                 ]  126.9MB/192.2MB
95c7e883f1ec: Downloading [==================================>                ]  89.61MB/130.6MB
f5e195d50b88: Downloading [=================================>                 ]  127.4MB/192.2MB
f5e195d50b88: Downloading [=================================>                 ]    128MB/192.2MB
95c7e883f1ec: Downloading [==================================>                ]  90.16MB/130.6MB
f5e195d50b88: Downloading [=================================>                 ]  128.5MB/192.2MB
f5e195d50b88: Downloading [=================================>                 ]  129.1MB/192.2MB
95c7e883f1ec: Downloading [==================================>                ]  90.68MB/130.6MB
f5e195d50b88: Downloading [=================================>                 ]  129.6MB/192.2MB
95c7e883f1ec: Downloading [==================================>                ]  91.22MB/130.6MB
f5e195d50b88: Downloading [=================================>                 ]  130.1MB/192.2MB
95c7e883f1ec: Downloading [===================================>               ]  91.77MB/130.6MB
f5e195d50b88: Downloading [==================================>                ]  130.7MB/192.2MB
95c7e883f1ec: Downloading [===================================>               ]  92.31MB/130.6MB
f5e195d50b88: Downloading [==================================>                ]  131.2MB/192.2MB
95c7e883f1ec: Downloading [===================================>               ]  92.84MB/130.6MB
f5e195d50b88: Downloading [==================================>                ]  131.8MB/192.2MB
95c7e883f1ec: Downloading [===================================>               ]  93.38MB/130.6MB
f5e195d50b88: Downloading [==================================>                ]  132.3MB/192.2MB
95c7e883f1ec: Downloading [===================================>               ]  93.91MB/130.6MB
f5e195d50b88: Downloading [==================================>                ]  132.8MB/192.2MB
95c7e883f1ec: Downloading [====================================>              ]  94.44MB/130.6MB
f5e195d50b88: Downloading [==================================>                ]  133.4MB/192.2MB
95c7e883f1ec: Downloading [====================================>              ]  94.98MB/130.6MB
95c7e883f1ec: Downloading [====================================>              ]  95.51MB/130.6MB
f5e195d50b88: Downloading [==================================>                ]  133.9MB/192.2MB
95c7e883f1ec: Downloading [====================================>              ]  96.05MB/130.6MB
f5e195d50b88: Downloading [==================================>                ]  134.4MB/192.2MB
95c7e883f1ec: Downloading [====================================>              ]  96.59MB/130.6MB
95c7e883f1ec: Downloading [=====================================>             ]  97.13MB/130.6MB
95c7e883f1ec: Downloading [=====================================>             ]  97.67MB/130.6MB
f5e195d50b88: Downloading [===================================>               ]    135MB/192.2MB
95c7e883f1ec: Downloading [=====================================>             ]  98.21MB/130.6MB
95c7e883f1ec: Downloading [=====================================>             ]  98.74MB/130.6MB
f5e195d50b88: Downloading [===================================>               ]  135.5MB/192.2MB
95c7e883f1ec: Downloading [======================================>            ]  99.27MB/130.6MB
f5e195d50b88: Downloading [===================================>               ]    136MB/192.2MB
95c7e883f1ec: Downloading [======================================>            ]  99.81MB/130.6MB
95c7e883f1ec: Downloading [======================================>            ]  100.4MB/130.6MB
f5e195d50b88: Downloading [===================================>               ]  136.6MB/192.2MB
f5e195d50b88: Downloading [===================================>               ]  137.1MB/192.2MB
95c7e883f1ec: Downloading [======================================>            ]  100.9MB/130.6MB
f5e195d50b88: Downloading [===================================>               ]  137.7MB/192.2MB
f5e195d50b88: Downloading [===================================>               ]  138.2MB/192.2MB
95c7e883f1ec: Downloading [======================================>            ]  101.4MB/130.6MB
f5e195d50b88: Downloading [====================================>              ]  138.7MB/192.2MB
95c7e883f1ec: Downloading [=======================================>           ]    102MB/130.6MB
f5e195d50b88: Downloading [====================================>              ]  139.3MB/192.2MB
f5e195d50b88: Downloading [====================================>              ]  139.8MB/192.2MB
95c7e883f1ec: Downloading [=======================================>           ]  102.5MB/130.6MB
f5e195d50b88: Downloading [====================================>              ]  140.3MB/192.2MB
95c7e883f1ec: Downloading [=======================================>           ]    103MB/130.6MB
f5e195d50b88: Downloading [====================================>              ]  140.9MB/192.2MB
95c7e883f1ec: Downloading [=======================================>           ]  103.6MB/130.6MB
f5e195d50b88: Downloading [====================================>              ]  141.4MB/192.2MB
95c7e883f1ec: Downloading [=======================================>           ]  104.1MB/130.6MB
f5e195d50b88: Downloading [====================================>              ]  141.9MB/192.2MB
95c7e883f1ec: Downloading [========================================>          ]  104.6MB/130.6MB
f5e195d50b88: Downloading [=====================================>             ]  142.5MB/192.2MB
95c7e883f1ec: Downloading [========================================>          ]  105.2MB/130.6MB
f5e195d50b88: Downloading [=====================================>             ]    143MB/192.2MB
f5e195d50b88: Downloading [=====================================>             ]  143.6MB/192.2MB
95c7e883f1ec: Downloading [========================================>          ]  105.7MB/130.6MB
f5e195d50b88: Downloading [=====================================>             ]  144.1MB/192.2MB
95c7e883f1ec: Downloading [========================================>          ]  106.3MB/130.6MB
f5e195d50b88: Downloading [=====================================>             ]  144.6MB/192.2MB
f5e195d50b88: Downloading [=====================================>             ]  145.2MB/192.2MB
95c7e883f1ec: Downloading [========================================>          ]  106.8MB/130.6MB
f5e195d50b88: Downloading [=====================================>             ]  145.7MB/192.2MB
f5e195d50b88: Downloading [======================================>            ]  146.2MB/192.2MB
95c7e883f1ec: Downloading [=========================================>         ]  107.3MB/130.6MB
f5e195d50b88: Downloading [======================================>            ]  146.8MB/192.2MB
95c7e883f1ec: Downloading [=========================================>         ]  107.9MB/130.6MB
f5e195d50b88: Downloading [======================================>            ]  147.3MB/192.2MB
95c7e883f1ec: Downloading [=========================================>         ]  108.4MB/130.6MB
f5e195d50b88: Downloading [======================================>            ]  147.9MB/192.2MB
95c7e883f1ec: Downloading [=========================================>         ]  108.9MB/130.6MB
f5e195d50b88: Downloading [======================================>            ]  148.4MB/192.2MB
95c7e883f1ec: Downloading [=========================================>         ]  109.5MB/130.6MB
f5e195d50b88: Downloading [======================================>            ]  148.9MB/192.2MB
95c7e883f1ec: Downloading [==========================================>        ]    110MB/130.6MB
f5e195d50b88: Downloading [======================================>            ]  149.5MB/192.2MB
95c7e883f1ec: Downloading [==========================================>        ]  110.6MB/130.6MB
f5e195d50b88: Downloading [=======================================>           ]    150MB/192.2MB
95c7e883f1ec: Downloading [==========================================>        ]  111.1MB/130.6MB
f5e195d50b88: Downloading [=======================================>           ]  150.6MB/192.2MB
95c7e883f1ec: Downloading [==========================================>        ]  111.6MB/130.6MB
f5e195d50b88: Downloading [=======================================>           ]  151.1MB/192.2MB
95c7e883f1ec: Downloading [==========================================>        ]  112.2MB/130.6MB
f5e195d50b88: Downloading [=======================================>           ]  151.6MB/192.2MB
95c7e883f1ec: Downloading [===========================================>       ]  112.7MB/130.6MB
f5e195d50b88: Downloading [=======================================>           ]  152.2MB/192.2MB
95c7e883f1ec: Downloading [===========================================>       ]  113.3MB/130.6MB
95c7e883f1ec: Downloading [===========================================>       ]  113.8MB/130.6MB
f5e195d50b88: Downloading [=======================================>           ]  152.7MB/192.2MB
95c7e883f1ec: Downloading [===========================================>       ]  114.3MB/130.6MB
f5e195d50b88: Downloading [=======================================>           ]  153.2MB/192.2MB
f5e195d50b88: Downloading [========================================>          ]  153.8MB/192.2MB
95c7e883f1ec: Downloading [===========================================>       ]  114.9MB/130.6MB
f5e195d50b88: Downloading [========================================>          ]  154.3MB/192.2MB
f5e195d50b88: Downloading [========================================>          ]  154.9MB/192.2MB
95c7e883f1ec: Downloading [============================================>      ]  115.4MB/130.6MB
f5e195d50b88: Downloading [========================================>          ]  155.4MB/192.2MB
f5e195d50b88: Downloading [========================================>          ]  155.9MB/192.2MB
95c7e883f1ec: Downloading [============================================>      ]  115.9MB/130.6MB
f5e195d50b88: Downloading [========================================>          ]  156.5MB/192.2MB
f5e195d50b88: Downloading [========================================>          ]    157MB/192.2MB
95c7e883f1ec: Downloading [============================================>      ]  116.5MB/130.6MB
f5e195d50b88: Downloading [========================================>          ]  157.6MB/192.2MB
95c7e883f1ec: Downloading [============================================>      ]    117MB/130.6MB
95c7e883f1ec: Downloading [============================================>      ]  117.5MB/130.6MB
f5e195d50b88: Downloading [=========================================>         ]  158.1MB/192.2MB
95c7e883f1ec: Downloading [=============================================>     ]  118.1MB/130.6MB
95c7e883f1ec: Downloading [=============================================>     ]  118.6MB/130.6MB
f5e195d50b88: Downloading [=========================================>         ]  158.6MB/192.2MB
95c7e883f1ec: Downloading [=============================================>     ]  119.2MB/130.6MB
95c7e883f1ec: Downloading [=============================================>     ]  119.7MB/130.6MB
95c7e883f1ec: Downloading [==============================================>    ]  120.2MB/130.6MB
f5e195d50b88: Downloading [=========================================>         ]  159.2MB/192.2MB
95c7e883f1ec: Downloading [==============================================>    ]  120.8MB/130.6MB
95c7e883f1ec: Downloading [==============================================>    ]  121.3MB/130.6MB
95c7e883f1ec: Downloading [==============================================>    ]  121.8MB/130.6MB
f5e195d50b88: Downloading [=========================================>         ]  159.7MB/192.2MB
95c7e883f1ec: Downloading [==============================================>    ]  122.4MB/130.6MB
95c7e883f1ec: Downloading [===============================================>   ]  122.9MB/130.6MB
f5e195d50b88: Downloading [=========================================>         ]  160.3MB/192.2MB
95c7e883f1ec: Downloading [===============================================>   ]  123.5MB/130.6MB
95c7e883f1ec: Downloading [===============================================>   ]    124MB/130.6MB
95c7e883f1ec: Downloading [===============================================>   ]  124.5MB/130.6MB
f5e195d50b88: Downloading [=========================================>         ]  160.8MB/192.2MB
95c7e883f1ec: Downloading [===============================================>   ]  125.1MB/130.6MB
f5e195d50b88: Downloading [=========================================>         ]  161.3MB/192.2MB
95c7e883f1ec: Downloading [================================================>  ]  125.6MB/130.6MB
f5e195d50b88: Downloading [==========================================>        ]  161.9MB/192.2MB
95c7e883f1ec: Downloading [================================================>  ]  126.1MB/130.6MB
f5e195d50b88: Downloading [==========================================>        ]  162.4MB/192.2MB
95c7e883f1ec: Downloading [================================================>  ]  126.7MB/130.6MB
f5e195d50b88: Downloading [==========================================>        ]  162.9MB/192.2MB
95c7e883f1ec: Downloading [================================================>  ]  127.2MB/130.6MB
f5e195d50b88: Downloading [==========================================>        ]  163.5MB/192.2MB
95c7e883f1ec: Downloading [================================================>  ]  127.7MB/130.6MB
f5e195d50b88: Downloading [==========================================>        ]    164MB/192.2MB
95c7e883f1ec: Downloading [=================================================> ]  128.3MB/130.6MB
95c7e883f1ec: Downloading [=================================================> ]  128.8MB/130.6MB
f5e195d50b88: Downloading [==========================================>        ]  164.6MB/192.2MB
f5e195d50b88: Downloading [==========================================>        ]  165.1MB/192.2MB
95c7e883f1ec: Downloading [=================================================> ]  129.4MB/130.6MB
f5e195d50b88: Downloading [===========================================>       ]  165.6MB/192.2MB
f5e195d50b88: Downloading [===========================================>       ]  166.2MB/192.2MB
f5e195d50b88: Downloading [===========================================>       ]  166.7MB/192.2MB
f5e195d50b88: Downloading [===========================================>       ]  167.3MB/192.2MB
95c7e883f1ec: Downloading [=================================================> ]  129.9MB/130.6MB
f5e195d50b88: Downloading [===========================================>       ]  167.8MB/192.2MB
f5e195d50b88: Downloading [===========================================>       ]  168.3MB/192.2MB
f5e195d50b88: Downloading [===========================================>       ]  168.9MB/192.2MB
f5e195d50b88: Downloading [============================================>      ]  169.4MB/192.2MB
95c7e883f1ec: Downloading [=================================================> ]  130.4MB/130.6MB
f5e195d50b88: Downloading [============================================>      ]  169.9MB/192.2MB
95c7e883f1ec: Download complete 
f5e195d50b88: Downloading [============================================>      ]  170.5MB/192.2MB
f5e195d50b88: Downloading [============================================>      ]    171MB/192.2MB
f5e195d50b88: Downloading [============================================>      ]  171.6MB/192.2MB
f5e195d50b88: Downloading [============================================>      ]  172.1MB/192.2MB
f5e195d50b88: Downloading [============================================>      ]  172.6MB/192.2MB
f5e195d50b88: Downloading [=============================================>     ]  173.2MB/192.2MB
f5e195d50b88: Downloading [=============================================>     ]  173.7MB/192.2MB
f5e195d50b88: Downloading [=============================================>     ]  174.3MB/192.2MB
f5e195d50b88: Downloading [=============================================>     ]  174.8MB/192.2MB
f5e195d50b88: Downloading [=============================================>     ]  175.3MB/192.2MB
f5e195d50b88: Downloading [=============================================>     ]  175.9MB/192.2MB
f5e195d50b88: Downloading [=============================================>     ]  176.4MB/192.2MB
f5e195d50b88: Downloading [==============================================>    ]  176.9MB/192.2MB
f5e195d50b88: Downloading [==============================================>    ]  177.5MB/192.2MB
f5e195d50b88: Downloading [==============================================>    ]    178MB/192.2MB
f5e195d50b88: Downloading [==============================================>    ]  178.6MB/192.2MB
f5e195d50b88: Downloading [==============================================>    ]  179.1MB/192.2MB
f5e195d50b88: Downloading [==============================================>    ]  179.6MB/192.2MB
f5e195d50b88: Downloading [==============================================>    ]  180.2MB/192.2MB
f5e195d50b88: Downloading [===============================================>   ]  180.7MB/192.2MB
f5e195d50b88: Downloading [===============================================>   ]  181.3MB/192.2MB
f5e195d50b88: Downloading [===============================================>   ]  181.8MB/192.2MB
f5e195d50b88: Downloading [===============================================>   ]  182.3MB/192.2MB
f5e195d50b88: Downloading [===============================================>   ]  182.9MB/192.2MB
f5e195d50b88: Downloading [===============================================>   ]  183.4MB/192.2MB
f5e195d50b88: Downloading [===============================================>   ]  183.9MB/192.2MB
f5e195d50b88: Downloading [================================================>  ]  184.5MB/192.2MB
f5e195d50b88: Downloading [================================================>  ]    185MB/192.2MB
f5e195d50b88: Downloading [================================================>  ]  185.6MB/192.2MB
f5e195d50b88: Downloading [================================================>  ]  186.1MB/192.2MB
f5e195d50b88: Downloading [================================================>  ]  186.6MB/192.2MB
f5e195d50b88: Downloading [================================================>  ]  187.2MB/192.2MB
f5e195d50b88: Downloading [================================================>  ]  187.7MB/192.2MB
f5e195d50b88: Downloading [================================================>  ]  188.3MB/192.2MB
f5e195d50b88: Downloading [=================================================> ]  188.8MB/192.2MB
f5e195d50b88: Downloading [=================================================> ]  189.3MB/192.2MB
f5e195d50b88: Downloading [=================================================> ]  189.9MB/192.2MB
f5e195d50b88: Downloading [=================================================> ]  190.4MB/192.2MB
f5e195d50b88: Downloading [=================================================> ]  190.9MB/192.2MB
f5e195d50b88: Downloading [=================================================> ]  191.5MB/192.2MB
f5e195d50b88: Downloading [=================================================> ]    192MB/192.2MB
f5e195d50b88: Download complete 
f5e195d50b88: Extracting [>                                                  ]  557.1kB/192.2MB
f5e195d50b88: Extracting [=>                                                 ]  3.899MB/192.2MB
f5e195d50b88: Extracting [=>                                                 ]  7.242MB/192.2MB
f5e195d50b88: Extracting [==>                                                ]  10.03MB/192.2MB
f5e195d50b88: Extracting [===>                                               ]   11.7MB/192.2MB
f5e195d50b88: Extracting [===>                                               ]  13.37MB/192.2MB
f5e195d50b88: Extracting [===>                                               ]  15.04MB/192.2MB
f5e195d50b88: Extracting [====>                                              ]  16.71MB/192.2MB
f5e195d50b88: Extracting [====>                                              ]  18.38MB/192.2MB
f5e195d50b88: Extracting [=====>                                             ]  22.28MB/192.2MB
f5e195d50b88: Extracting [======>                                            ]  26.18MB/192.2MB
f5e195d50b88: Extracting [=======>                                           ]  28.97MB/192.2MB
f5e195d50b88: Extracting [========>                                          ]  32.87MB/192.2MB
f5e195d50b88: Extracting [=========>                                         ]  36.77MB/192.2MB
f5e195d50b88: Extracting [==========>                                        ]  40.11MB/192.2MB
f5e195d50b88: Extracting [===========>                                       ]  42.89MB/192.2MB
f5e195d50b88: Extracting [============>                                      ]  46.79MB/192.2MB
f5e195d50b88: Extracting [=============>                                     ]  50.69MB/192.2MB
f5e195d50b88: Extracting [==============>                                    ]  54.59MB/192.2MB
f5e195d50b88: Extracting [===============>                                   ]  57.93MB/192.2MB
f5e195d50b88: Extracting [===============>                                   ]  60.72MB/192.2MB
f5e195d50b88: Extracting [================>                                  ]  62.95MB/192.2MB
f5e195d50b88: Extracting [================>                                  ]  65.18MB/192.2MB
f5e195d50b88: Extracting [=================>                                 ]  67.96MB/192.2MB
f5e195d50b88: Extracting [==================>                                ]   71.3MB/192.2MB
f5e195d50b88: Extracting [===================>                               ]  74.65MB/192.2MB
f5e195d50b88: Extracting [====================>                              ]  77.43MB/192.2MB
f5e195d50b88: Extracting [=====================>                             ]  80.77MB/192.2MB
f5e195d50b88: Extracting [=====================>                             ]  84.12MB/192.2MB
f5e195d50b88: Extracting [======================>                            ]  87.46MB/192.2MB
f5e195d50b88: Extracting [=======================>                           ]  90.24MB/192.2MB
f5e195d50b88: Extracting [========================>                          ]  93.59MB/192.2MB
f5e195d50b88: Extracting [=========================>                         ]  97.48MB/192.2MB
f5e195d50b88: Extracting [==========================>                        ]  101.4MB/192.2MB
f5e195d50b88: Extracting [===========================>                       ]  104.7MB/192.2MB
f5e195d50b88: Extracting [============================>                      ]  108.6MB/192.2MB
f5e195d50b88: Extracting [=============================>                     ]  112.5MB/192.2MB
f5e195d50b88: Extracting [==============================>                    ]  115.9MB/192.2MB
f5e195d50b88: Extracting [===============================>                   ]  119.2MB/192.2MB
f5e195d50b88: Extracting [===============================>                   ]  122.6MB/192.2MB
f5e195d50b88: Extracting [================================>                  ]  125.9MB/192.2MB
f5e195d50b88: Extracting [=================================>                 ]  128.7MB/192.2MB
f5e195d50b88: Extracting [==================================>                ]    132MB/192.2MB
f5e195d50b88: Extracting [===================================>               ]  135.4MB/192.2MB
f5e195d50b88: Extracting [===================================>               ]  138.1MB/192.2MB
f5e195d50b88: Extracting [====================================>              ]  140.4MB/192.2MB
f5e195d50b88: Extracting [=====================================>             ]  143.2MB/192.2MB
f5e195d50b88: Extracting [=======================================>           ]  152.1MB/192.2MB
f5e195d50b88: Extracting [===========================================>       ]  165.4MB/192.2MB
f5e195d50b88: Extracting [=============================================>     ]  173.2MB/192.2MB
f5e195d50b88: Extracting [==============================================>    ]  177.7MB/192.2MB
f5e195d50b88: Extracting [===============================================>   ]    181MB/192.2MB
f5e195d50b88: Extracting [===============================================>   ]  183.8MB/192.2MB
f5e195d50b88: Extracting [================================================>  ]  186.6MB/192.2MB
f5e195d50b88: Extracting [=================================================> ]  189.4MB/192.2MB
f5e195d50b88: Extracting [=================================================> ]  191.1MB/192.2MB
f5e195d50b88: Extracting [==================================================>]  192.2MB/192.2MB
f5e195d50b88: Extracting [==================================================>]  192.2MB/192.2MB
f5e195d50b88: Pull complete 
95c7e883f1ec: Extracting [>                                                  ]  557.1kB/130.6MB
95c7e883f1ec: Extracting [=>                                                 ]  4.456MB/130.6MB
95c7e883f1ec: Extracting [==>                                                ]  7.799MB/130.6MB
95c7e883f1ec: Extracting [====>                                              ]   11.7MB/130.6MB
95c7e883f1ec: Extracting [=====>                                             ]  15.04MB/130.6MB
95c7e883f1ec: Extracting [======>                                            ]  17.83MB/130.6MB
95c7e883f1ec: Extracting [=======>                                           ]  20.61MB/130.6MB
95c7e883f1ec: Extracting [=========>                                         ]  24.51MB/130.6MB
95c7e883f1ec: Extracting [==========>                                        ]  28.41MB/130.6MB
95c7e883f1ec: Extracting [============>                                      ]  31.75MB/130.6MB
95c7e883f1ec: Extracting [=============>                                     ]  35.09MB/130.6MB
95c7e883f1ec: Extracting [==============>                                    ]  38.44MB/130.6MB
95c7e883f1ec: Extracting [===============>                                   ]  41.22MB/130.6MB
95c7e883f1ec: Extracting [================>                                  ]  44.01MB/130.6MB
95c7e883f1ec: Extracting [==================>                                ]  47.35MB/130.6MB
95c7e883f1ec: Extracting [===================>                               ]  50.69MB/130.6MB
95c7e883f1ec: Extracting [====================>                              ]  54.03MB/130.6MB
95c7e883f1ec: Extracting [=====================>                             ]  57.38MB/130.6MB
95c7e883f1ec: Extracting [=======================>                           ]  60.72MB/130.6MB
95c7e883f1ec: Extracting [========================>                          ]   63.5MB/130.6MB
95c7e883f1ec: Extracting [=========================>                         ]  66.29MB/130.6MB
95c7e883f1ec: Extracting [==========================>                        ]  69.07MB/130.6MB
95c7e883f1ec: Extracting [===========================>                       ]  72.42MB/130.6MB
95c7e883f1ec: Extracting [=============================>                     ]  76.87MB/130.6MB
95c7e883f1ec: Extracting [==============================>                    ]  79.66MB/130.6MB
95c7e883f1ec: Extracting [===============================>                   ]  82.44MB/130.6MB
95c7e883f1ec: Extracting [================================>                  ]  85.79MB/130.6MB
95c7e883f1ec: Extracting [==================================>                ]  89.69MB/130.6MB
95c7e883f1ec: Extracting [===================================>               ]  93.03MB/130.6MB
95c7e883f1ec: Extracting [====================================>              ]  96.37MB/130.6MB
95c7e883f1ec: Extracting [======================================>            ]  99.71MB/130.6MB
95c7e883f1ec: Extracting [=======================================>           ]  102.5MB/130.6MB
95c7e883f1ec: Extracting [========================================>          ]  105.3MB/130.6MB
95c7e883f1ec: Extracting [=========================================>         ]  109.2MB/130.6MB
95c7e883f1ec: Extracting [==========================================>        ]    112MB/130.6MB
95c7e883f1ec: Extracting [============================================>      ]  115.9MB/130.6MB
95c7e883f1ec: Extracting [=============================================>     ]  119.2MB/130.6MB
95c7e883f1ec: Extracting [==============================================>    ]  122.6MB/130.6MB
95c7e883f1ec: Extracting [=================================================> ]  128.7MB/130.6MB
95c7e883f1ec: Extracting [==================================================>]  130.6MB/130.6MB
95c7e883f1ec: Pull complete 
Status: Downloaded newer image for rust:latest
docker.io/library/rust:latest

Script done on 2020-03-23 13:56:23+01:00 [COMMAND_EXIT_CODE="0"]

As you can see, the retry happened rather at the start of the download.

@malte-v
Copy link
Author

malte-v commented Mar 23, 2020

I have no idea why, but after another reboot, the issue just magically disappeared. I'll reopen this if it happens again.

@malte-v malte-v closed this as completed Mar 23, 2020
@malte-v
Copy link
Author

malte-v commented Mar 23, 2020

Apparently the issue isn't gone. I get the same error when trying to pull an alpine image:

STEP 13: FROM alpine:latest AS dist
Getting image source signatures
Copying blob c9b1b535fdd9 [===========================>----------] 2.0MiB / 2.7MiB
Error: error creating build container: The following failures happened while trying to pull image specified by "alpine:latest" based on search registries in /etc/containers/registries.conf:
* "docker.io/library/alpine:latest": Error writing blob: error storing blob to file "/var/tmp/storage050044603/1": read tcp 192.168.178.23:42684->104.18.125.25:443: read: connection reset by peer

@malte-v malte-v reopened this Mar 23, 2020
@rhatdan
Copy link
Member

rhatdan commented Mar 23, 2020

I think there is something wrong with your system or your network, that is triggering a failure on the pull.

@rhatdan
Copy link
Member

rhatdan commented Mar 23, 2020

Thousands of users are able to pull thousands of images, and are not seeing this issue.

@malte-v
Copy link
Author

malte-v commented Mar 23, 2020

You're probably right. It just seemed strange to me that it always fails when it's almost finished and neither my router nor dmesg reported any network issues.

I'll try it on a different network.

@malte-v malte-v closed this as completed Mar 23, 2020
@vrothberg
Copy link
Member

Docker is slightly more tolerant for network errors and apparently has a couple of retries even on quite random failures when pulling. We don't do that as we expect the network to be stable.

I expect the pulling to succeed on a different network. @malte-v, feel free to comment here or open a new issue if you're still seeing these issues.

@mbleichner
Copy link

@malte-v Did you find the cause? I'm getting the same problem now.

@malte-v
Copy link
Author

malte-v commented Aug 3, 2020

@mbleichner Probably your network connection isn't all that stable, just like mine. I think Docker has a more tolerant retry policy compared to podman.

@mbleichner
Copy link

@malte-v Yes, I know. Docker also has to retry a few times when pulling and sometimes fails eventually. I have no idea what could be the cause though. The connections to docker hub are the only ones that suffer from this problem. Everything else works fine.

This happens on all our servers, so I'm pretty sure it's something network-related, but I have no clue where to look :(

@rhatdan
Copy link
Member

rhatdan commented Aug 4, 2020

There is a PR to add retry with Podman.
#6905

@github-actions github-actions bot added the locked - please file new issue/PR Assist humans wanting to comment on an old issue or PR with locked comments. label Sep 23, 2023
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 23, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
kind/bug Categorizes issue or PR as related to a bug. locked - please file new issue/PR Assist humans wanting to comment on an old issue or PR with locked comments.
Projects
None yet
Development

No branches or pull requests

5 participants