GitHub Container Registry is a decent option for orgs, open source and private. I believe it's free to host public images and private images are just tied into your GitHub billing.
Then there are namespaced things, for example your new product, mattrick/awome-flobbergator
How to install? Docker.
docker pull mattrick/awome-flobbergator
Using default tag: latest
Error response from daemon: pull access denied for mattrick/awome-flobbergator, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
Every time someone needs to prefix it with ghcr.io to make it pull from GitHub.
We shouldn't do
1) default registries
2) when we post documentation online we should be explicit as to what the registry is
Meaning if you do
it'll get it from https://hub.docker.com/_/rustThen there are namespaced things, for example your new product, mattrick/awome-flobbergator
How to install? Docker.
Every time someone needs to prefix it with ghcr.io to make it pull from GitHub.We shouldn't do
1) default registries
2) when we post documentation online we should be explicit as to what the registry is