manifest for apache/zeppelin:latest not found
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
- type "docker pull apache/zeppelin" in the docker terminal.
- ...
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/
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