Access denied with podman

joliver@mmjoliver:~$ podman login
Username: mmjoliver
Password:
Login Succeeded!
joliver@mmjoliver:~$ !202
podman pull postgres/postgres:latest
Resolving “postgres/postgres” using unqualified-search registries (/etc/containers/registries.conf)
Trying to pull docker.io/postgres/postgres:latest
Error: initializing source docker://postgres/postgres:latest: reading manifest latest in docker.io/postgres/postgres: errors:
denied: requested access to the resource is denied
unauthorized: authentication required

There is no postgres/postgres repo on Docker Hub.

me@docker:~$ docker pull  docker.io/postgres/postgres:latest
Error response from daemon: pull access denied for postgres/postgres, repository does not exist or may require 'docker login': denied: requested access to the resource is denied

You can pull the image from Docker Hub using either docker.io/postgres:latest or docker.io/library/postgres:latest.

Repos without a user or group name can be addressed directly, or by adding library as group name.