패키지 저장소를 통해 Deepin 15.10에 Docker를 설치하려고 하면 다음 오류가 발생합니다.
Error: could not find a distribution template for Deepin/stable
답변1
OP는 답변을 질문 밖으로 옮기지 않았기 때문에 이것이 원래 답변입니다.
Deepin 15.10부터 기본 커널은 Debian stable이지만 Deepin 릴리스 템플릿에서는 불안정하게 설정되어 있습니다.
sudo nano /usr/share/python-apt/templates/Deepin.info
변화
Suite: unstable
도착하다
Suite: stable
짜잔, 이제 위의 문제 없이 PPA를 추가할 수 있습니다.
답변2
저장소를 수동으로 추가할 수 있어야 합니다.
이 같은:
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
printf 'deb [arch=amd64] https://download.docker.com/linux/debian stretch stable\n' \
| sudo tee /etc/apt/sources.list.d/docker-ce.list