Docker installation error

When installing Docker, I get this error.

ubuntu@ubuntu :/usr/lib/apt/methods$ sudo docker run -i -t ubuntu /bin/bash Unable to find image 'ubuntu:latest' locally FATA[0000] Error: 404 page not found 

Looking for any suggestions?

+5
source share
1 answer

I had the same problem, I fixed it by installing a proxy server in / etc / default / docker.

I also had to disable proxies in environment variables: unset http_proxy unset https_proxy

+5
source

Source: https://habr.com/ru/post/1214246/


All Articles