running mariadb und podman
I am trying to create a mariadb under podman with the following command
"docker run --detach --name radius --env MARIADB_USER=radius --env MARIADB_PASSWORD=dalodbpass --env MARIADB_ROOT_PASSWORD=josef#1911 mariadb:latest"
but get the following error
Error: short-name "mariadb:latest" did not resolve to an alias and no unqualified-search registries are defined in "/etc/containers/registries.conf"
i would appriciate any help greatly
Sepp
Answer Answered by Daniel Black in this comment.
While mariadb is referred to the short name, the real url for docker official images (that docker) abbreviates is docker.io/library/mariadb, so use this as the base url for podman to avoid ambiguity.
Running podman in an interactive terminal will normally give a choice of a few repositories to retrieve this from.