Estou seguindo o guia de instalação oficial do Docker para o docker-ce no Ubuntu.
Quando chego sudo apt install docker-ce
, recebo E: Package 'docker-ce' has no installation candidate
:
$ sudo apt-get update
Hit:1 http://gb.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://gb.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:3 http://gb.archive.ubuntu.com/ubuntu bionic-backports InRelease
Hit:4 http://security.ubuntu.com/ubuntu bionic-security InRelease
Reading package lists... Done
$ sudo apt-get install \
> apt-transport-https \
> ca-certificates \
> curl \
> software-properties-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
ca-certificates is already the newest version (20180409).
curl is already the newest version (7.58.0-2ubuntu3).
software-properties-common is already the newest version (0.96.24.32.1).
The following NEW packages will be installed
apt-transport-https
0 to upgrade, 1 to newly install, 0 to remove and 0 not to upgrade.
Need to get 1,692 B of archives.
After this operation, 152 kB of additional disk space will be used.
Do you want to continue? [Y/n]
Get:1 http://gb.archive.ubuntu.com/ubuntu bionic/universe amd64 apt-transport-https all 1.6.1 [1,692 B]
Fetched 1,692 B in 0s (65.4 kB/s)
Selecting previously unselected package apt-transport-https.
(Reading database ... 116694 files and directories currently installed.)
Preparing to unpack .../apt-transport-https_1.6.1_all.deb ...
Unpacking apt-transport-https (1.6.1) ...
Setting up apt-transport-https (1.6.1) ...
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
OK
$ sudo apt-key fingerprint 0EBFCD88
pub rsa4096 2017-02-22 [SCEA]
9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
uid [ unknown] Docker Release (CE deb) <[email protected]>
sub rsa4096 2017-02-22 [S]
$ sudo add-apt-repository \
> "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
> $(lsb_release -cs) \
> stable"
Hit:1 http://gb.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://gb.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:3 http://gb.archive.ubuntu.com/ubuntu bionic-backports InRelease
Get:4 https://download.docker.com/linux/ubuntu bionic InRelease [64.4 kB]
Hit:5 http://security.ubuntu.com/ubuntu bionic-security InRelease
Fetched 64.4 kB in 0s (141 kB/s)
Reading package lists... Done
robin@xps:~/git/snapcraft.io$ sudo apt-get update
Hit:1 http://gb.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://gb.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:3 http://gb.archive.ubuntu.com/ubuntu bionic-backports InRelease
Hit:4 https://download.docker.com/linux/ubuntu bionic InRelease
Hit:5 http://security.ubuntu.com/ubuntu bionic-security InRelease
Reading package lists... Done
$ sudo apt-get install docker-ce
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package docker-ce is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'docker-ce' has no installation candidate
Meu primeiro pensamento foi que o Docker ainda não havia lançado um pacote para o Bionic (é muito novo), mas quando procurei "install docker-ce ubuntu 18.04", encontrei um guia que parece específico para o 18.04 e basicamente fornece exatamente as mesmas instruções - sugerindo que pelo menos funcionou para o autor:
https://linuxconfig.org/how-to-install-docker-on-ubuntu-18-04-bionic-beaver
Alguém tem alguma idéia de por que isso pode não estar funcionando para mim?
sudo apt install docker.io
funcionou para mimRespostas:
No mesmo guia que você referenciou, você pode usar o repositório para 17.10 neste momento:
E todos os
docker-ce
pacotes dependentes serão resolvidos nobionic
repositório do ubuntu . Consulte a documentação do Docker para obter mais informações. Não há problemas de compatibilidade com que se preocupar :)19/07/2018 atualização
O Docker 18.06 foi atualizado para o
bionic
repositório; essa solução alternativa não é mais necessária!fonte
E: Package 'docker-ce' has no installation candidate
➜ ~ docker -v Docker version 18.03.1-ce, build 9ee9f40
curl -fsSL get.docker.com | CHANNEL=stable sh
Execute isso se desejar instalar o
docker-ce
emUbuntu 18.04
:Para verificar se a instalação foi concluída com êxito, basta executar:
deve produzir:
fonte
Ubuntu 19
, basta alterarbionic
na terceira linha paradisco
bionic
funcionaria, em vez dedisco
nesse caso. É tão frustrante.-ce
e-ee
são removidos desde o ver.18.09.0
, então não há nenhum erro, até onde eu vejo. Verifiquei minha instalação dotest
build -sudo docker run hello-world
funciona corretamente. O único problema que vejo - 19 ver está na versão beta. Desculpe por confundir - apenas a segunda semana usando o Linux :)Alguns dos guias pularam a arma; O docker-ce ainda não está disponível para o Ubuntu 18.04. Você pode verificar a lista de versões suportadas aqui .
O mesmo guia que você vinculou à instalação sugerida do docker.io; foi isso que eu fiz. É uma solução alternativa até o docker-ce suportar 18.04.
fonte
deb [arch=amd64] https://download.docker.com/linux/ubuntu artful stable
Seguir as etapas aqui na documentação do Docker funcionou para mim. Eu apenas tive que mudar
stable
paratest
neste comandofonte
Eu tive o mesmo problema, aqui está como eu o corrigi:
fonte
O pacote snap do docker será facilmente instalado no Ubuntu 19.04 (Disco) e funcionou para mim.
Confira a documentação para isso aqui:
https://github.com/docker/docker-snap
fonte