This message was deleted.
# k3s
a
This message was deleted.
c
this isn’t k3s specific, but rather how container images are named by convention
if you don’t specify a registry, the default is
<http://docker.io|docker.io>
and for docker.io, if you don’t specify a repository in the registry, it defaults to
library
and the default tag is always
latest
so when you ask for
nginx
what you are really getting is
<http://index.docker.io/library/nginx:latest|index.docker.io/library/nginx:latest>
h
@creamy-pencil-82913 Thank you 👏