i’ve a centos 7.9 machine
i am able to pull images e.g. python, debian, … but not the ubuntu
[rootocalhost f]# docker pull ubuntu:latest
Trying to pull repository docker.io/library/ubuntu ...
manifest for docker.io/ubuntu:latest not found
[rootlocalhost f]#
rimelek
(Ákos Takács)
March 26, 2023, 8:38pm
2
francesco64:
docker.io/ubuntu:latest
Please, share the outout of the following commands
docker version
docker info
and try to pull the image without the tag:
docker pull ubuntu
But I guess you have probably the same error I explained here:
You searched for the version tag in the official repository, but rokago used jenkins/jenkins, the OSS repository.
https://hub.docker.com/r/jenkins/jenkins/tags?page=1&name=2.386
The repo works well for me, I could even pull v2.394, but my Docker version is newer, not the old 18.02-ce. Since I tried on macOS from Docker Desktop.
Using hub-tool to compare the images I can see that the new image has different format:
hub-tool tag inspect jenkins/jenkins:2.386 --format json
{
"schemaVersion…
The Ubuntu images has different manifest format than the python images. Old Docker versions are not compatible with it.