Hacker News new | ask | show | jobs
by imglorp 1279 days ago
In case not everyone knows, it's super easy to host your own container registry, for public or private use. It's basically just this

    docker run -d -p 5000:5000 --name registry registry:2
with more options like auth and certs. Infra might include backing disk and LB; if you need to scale, run several and keep them in sync with one of many open tools eg regclient.

Also plenty of cloud services now have registries like GHCR, ECR, etc. which are basically pay per Gb.

https://docs.docker.com/registry

https://github.com/regclient/regclient

1 comments

Yeah. All of our proprietary images are on GHCR, so we also rehost the public ones on it as well. We have GitHub Actions that repull and republish, whether on cron or on trigger.