1

Я следовал официальным инструкциям по установке Docker - Debian Jessie.

  • В /etc/apt/sources.list сейчас сказано:

    deb [arch=amd64] https://download.docker.com/linux/debian jessie stable

  • apt-get update кажется, загружает пакеты правильно (вывод ниже)

  • но затем, на apt-get install docker-ce , система сообщает, что «не может найти пакет docker-ce».

Как я могу отлаживать то, что происходит? Никогда не было этого раньше.

Вывод apt-get update:

Hit http://packages.dotdeb.org jessie InRelease
Hit http://security.debian.org jessie/updates InRelease
Hit http://packages.dotdeb.org jessie/all Sources
Hit http://security.debian.org jessie/updates/main Sources
Hit http://security.debian.org jessie/updates/contrib Sources
Hit http://packages.dotdeb.org jessie/all i386 Packages
Hit http://security.debian.org jessie/updates/main i386 Packages
Hit http://security.debian.org jessie/updates/contrib i386 Packages
Hit http://security.debian.org jessie/updates/contrib Translation-en
Hit https://download.docker.com jessie InRelease
Hit http://security.debian.org jessie/updates/main Translation-en
Ign http://http.debian.net jessie InRelease
Hit https://download.docker.com jessie/stable amd64 Packages
Hit http://http.debian.net jessie-updates InRelease
Hit http://http.debian.net jessie Release.gpg
Get:1 https://download.docker.com jessie/stable Translation-en_US [587 B]
Ign http://packages.dotdeb.org jessie/all Translation-en_US
Ign http://packages.dotdeb.org jessie/all Translation-en
Hit http://http.debian.net jessie-updates/main Sources
Get:2 https://download.docker.com jessie/stable Translation-en [584 B]
Hit http://http.debian.net jessie-updates/contrib Sources
Get:3 https://download.docker.com jessie/stable Translation-en_US [587 B]
Get:4 http://http.debian.net jessie-updates/main i386 Packages/DiffIndex [8,884 B]
Get:5 https://download.docker.com jessie/stable Translation-en [584 B]
Hit http://http.debian.net jessie-updates/contrib i386 Packages
Hit http://http.debian.net jessie-updates/contrib Translation-en
Get:6 https://download.docker.com jessie/stable Translation-en_US [587 B]
Get:7 http://http.debian.net jessie-updates/main Translation-en/DiffIndex [3,688 B]
Get:8 https://download.docker.com jessie/stable Translation-en [584 B]
Hit http://http.debian.net jessie Release
Get:9 https://download.docker.com jessie/stable Translation-en_US [587 B]
Hit http://http.debian.net jessie/main Sources
Get:10 https://download.docker.com jessie/stable Translation-en [584 B]
Hit http://http.debian.net jessie/contrib Sources
Hit http://http.debian.net jessie/main i386 Packages
Get:11 https://download.docker.com jessie/stable Translation-en_US [587 B]
Ign https://download.docker.com jessie/stable Translation-en_US
Hit http://http.debian.net jessie/contrib i386 Packages
Hit http://http.debian.net jessie/contrib Translation-en
Hit http://http.debian.net jessie/main Translation-en
Get:12 https://download.docker.com jessie/stable Translation-en [584 B]
Ign https://download.docker.com jessie/stable Translation-en

1 ответ1

0

Чтобы установить docker-ce на Debian Jessie:

После добавления deb [arch=amd64] https://download.docker.com/linux/debian jessie stable в ваш /etc/sources.list . (вам не нужен software-properties-common или команда add-apt-repository )

Установите необходимый пакет:

sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl

Добавьте ключ gpg :

curl -fsSl https://download.docker.com/linux/debian/gpg | sudo apt-get key add -

Обновление и поиск пакета docker-ce :

sudo apt-get update
apt-cache search docker-ce

Затем установите пакет docker-ce :

sudo apt-get install docker-ce

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .