Ubuntu "Error pulling image configuration"

Hello,

This is the first time I try pulling a docker image.
So I install docker on Ubuntu 16.04 following this tutorial: Ubuntu | Docker Docs

So here is my docker software version:

ubuntu@ubuntu:~$ docker -v
Docker version 18.03.1-ce, build 9ee9f40

But when I try pulling my first docker mage, here is the output:

ubuntu@ubuntu:~$ sudo docker run --rm -it -p 80:80 vulnerables/web-dvwa
Unable to find image ‘vulnerables/web-dvwa:latest’ locally
latest: Pulling from vulnerables/web-dvwa
85b1f47fba49: Pulling fs layer
299b9398a225: Pulling fs layer
13fb3673ba5a: Pulling fs layer
56ee6b5e521b: Waiting
242df821b781: Waiting
22f3b5333f68: Waiting
docker: error pulling image configuration: Get https://dseasb33srnrn.cloudfront.net/registry-v2/docker/registry/v2/blobs/sha256/50/5061579247b179161f2576abf34afcb7347243e6d3629efe0035ebd2b5dcb167/data?Expires=1527005063&Signature=TDja~HteDG4DXat~e~r5EIHHYdoFLW1IYywX2HMsDrqI5anfTi~ZtkFdiKtnDdh8y0EBqbRGn55typzxu0LGRK4gvCvbDT~28knpppXwA0ggMKikSs15EDVuU0DiHwaE2Ig5XqHqB~LbH5CVGONujmmOiLriUR6Izmvc-yV4RM8_&Key-Pair-Id=APKAJECH5M7VWIS5YZ6Q: dial tcp 13.32.210.11:443: i/o timeout.
See ‘docker run --help’.

The docker image is DVWA:
https://hub.docker.com/r/vulnerables/web-dvwa/

Do you know where the issue might be coming from ?

Thanks