본문 바로가기
개발/Shell

[Docker] jenkins 설치가 안될때

by 상5c 2021. 7. 10.

docker에서 jenkins 이미지를 받으려고 하면 아래와 같은 에러가 발생한다.

$ docker pull jenkins
Using default tag: latest
Error response from daemon: manifest for jenkins:latest not found: manifest unknown: manifest unknown

 

해결

docker hub의 jenkins description을 보면 deprecated 되었다고 안내한다.

This image has been deprecated for over 2 years in favor of the jenkins/jenkins:lts image provided and maintained by the Jenkins Community as part of the project's release process. The images found here have not received updates for over 2 years and will not receive any updates in the future. Remaining tags are here only for historical reasons, none of them are supported and none of them should be used.

jenkins/jenkins:lts image 링크를 누르면 새로운 jenkins repository로 안내한다.

LTS를 받으려면 docker pull jenkins/jenkins:lts-jkd11
최신버전을 받으려면 docker pull jenkins/jenkins:jdk11 또는 docker pull jenkins/jenkins 을 사용하여 해결할 수 있다.

 

참고