Instale o Docker no Ubuntu 16.04: 404 Not Found [duplicado]

1

Eu recebo o seguinte ao tentar instalar o Docker no Ubuntu 16.04:

michael@michael-VirtualBox:~$ sudo apt-get update                    
Err:8 https://download.docker.com/linux/ubuntu \ Release                            
  404  Not Found [IP: 13.32.250.25 443]

Reading package lists... Done                                                       

E: The repository 'https://download.docker.com/linux/ubuntu \ Release' does not have a Release file.

N: Updating from such a repository can't be done securely and is therefore disabled by default.

N: See apt-secure(8) manpage for repository creation and user configuration details.

Alguém pode me ajudar a corrigir esse problema?

    
por Michael Adams 09.05.2018 / 23:27

2 respostas

0

Sua fonte de software provavelmente está errada. Se você usar o comando listado aqui , o comando deve procurar como:

add-apt-repository deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable

Isso também é mais ou menos a nova linha adicionada a /etc/apt/sources.lst

    
por xenoid 10.05.2018 / 00:34
0

A fonte segura não funcionou para mim; Se você está tendo o mesmo problema que eu, você pode querer tentar com o seguinte link de repositório.

adicione o seguinte ao seu arquivo /etc/apt/sources.list :

deb [arch=amd64] http://download.docker.com/linux/ubuntu xenial stable
    
por uspinar 28.09.2018 / 12:35