container-images
container-images copied to clipboard
Fix docker pull information on the Docker Hub
The Docker Hub page for Oracle Linux guides the user to issue this command: docker pull oraclelinux
without any tag. This is interpreted by docker cli as using the latest
tag, which does not exist as mentioned lower in the README.
Yet, when using the suggested command, the user gets the error output below:
❯ docker pull oraclelinux
Using default tag: latest
Error response from daemon: manifest for oraclelinux:latest not found: manifest unknown: manifest unknown
It would be a better user experience if the first command a user execute do not fail. I would prefer to get an opinionated suggestion to use oraclelinux:8
for example and look at existing tags later if this doesn't work for my particular requirements, rather than having to enter troubleshooting mode right at the beginning.
@Djelibeybi - is this something you can address?
Unfortunately not: that line is auto-generated by Docker Hub and multiple requests to fix or even suppress it have not yielded any results. We do call out the fact that there is no latest tag in the actual docs on that page, though we should probably make that a bit more obvious.
I'll tinker with the docs and submit something accordingly, if I can make it work.
I've submitted https://github.com/docker-library/docs/pull/2166 to the docs repo