kitematic icon indicating copy to clipboard operation
kitematic copied to clipboard

manifest for apache/zeppelin:latest not found

Open jc9080 opened this issue 7 years ago • 2 comments

Expected behavior

I was trying to download zeppelin by using "docker pull apache/zeppelin" command in my docker terminal but failed and got this error:

"Using default tag: latest Error response from daemon: manifest for apache/zeppelin:latest not found"

So I tried downloading zeppelin image in Kitematic but it gave me the same error saying:

"(HTTP code 404) unexpected - manifest for apache/zeppelin:latest not found"

Actual behavior

Information about the Issue

Steps to reproduce the behavior

  1. type "docker pull apache/zeppelin" in the docker terminal.
  2. ...

jc9080 avatar Mar 12 '19 22:03 jc9080

You can visit: https://hub.docker.com/r/apache/zeppelin/tags and manually download the lastest: docker pull apache/zeppelin:0.8.2

Take a look to this link... it explains why latest is not a good idea: https://vsupalov.com/docker-latest-tag/

a10pepo avatar Jan 13 '20 15:01 a10pepo

You can visit: https://hub.docker.com/r/apache/zeppelin/tags and manually download the lastest: docker pull apache/zeppelin:0.8.2

Take a look to this link... it explains why latest is not a good idea: https://vsupalov.com/docker-latest-tag/

Right @a10pepo, it helped, use the tags link to get hold of latest release available. Good point to get the latest release number, I had similar issues running :0.8.2, I rather pulled 0.9.0 which is the latest now.

pramodvasista@pramodvasista-mac ~ % docker pull apache/zeppelin:0.9.0

which should succeed and run the container following https://zeppelin.apache.org/download.html#using-the-official-docker-image docker run -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.9.0

Regards, Pramod

pvasista avatar May 31 '21 17:05 pvasista