this post was submitted on 10 Nov 2024
41 points (93.6% liked)

Selfhosted

40347 readers
341 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Thanks for all the great replies!

top 19 comments
sorted by: hot top controversial new old
[–] [email protected] 28 points 2 weeks ago (2 children)

Retag and push to a local registry. Lots of options out there for setting one up.

Honestly, you already have the image locally if you've pulled it. You don't really need to run a registry unless you're dead set on it. You can also flatten and export containers for backup if you really want.

[–] [email protected] 16 points 2 weeks ago (1 children)

Two good points here OP. Type docker image ls to see all the images you currently have locally - you'll possibly be surprised how many. All the ones tagged <none> are old versions.

If you're already using github, it includes an package repository you could push retagged images to, or for more self-hosty, a local instance of Forgejo would be a good option.

[–] [email protected] 9 points 2 weeks ago

I'd also like to add that you can save an image to a local file using docker image save and load them back using docker image load. So, along with the options mentioned above, you have plenty of options to backup images for offline use.

[–] [email protected] 6 points 2 weeks ago (2 children)

Honestly, you already have the image locally if you've pulled it.

I guess not everyone treats their PC as an ephemeral storage, huh? I don't trust anything that's available only locally to survive.

[–] [email protected] 6 points 2 weeks ago

Well the question is about a container disappearing from a public registry, in which case nothing would happen if it's already pulled locally. Figuring where to go from there is the other half of that problem.

[–] [email protected] 1 points 1 week ago

Then backup whatever you set your docker local storage to?

[–] [email protected] 11 points 2 weeks ago

The vast majority of selfhosters probably don't but if you want its called a private repository

https://www.digitalocean.com/community/tutorials/how-to-set-up-a-private-docker-registry-on-ubuntu-20-04

[–] timbuck2themoon 4 points 2 weeks ago (1 children)

Just use a sonatype nexus 3 image and proxy docker hub, etc. Then you pull images through it.

[–] [email protected] 3 points 1 week ago

We run this at work so we have forever copies of image tags and to reduce dockerhub rate limit issues. Works well even for a large dev team.

[–] [email protected] 4 points 2 weeks ago* (last edited 2 weeks ago)
[–] [email protected] 3 points 1 week ago* (last edited 1 week ago) (2 children)

For most of you suggesting hosting a repository - yes but,

Host forgejo. Just host the git mirror. It comes with a package repo out of the box. Then you have the source code and the docker images

[–] [email protected] 2 points 1 week ago (1 children)

An alternative method is to run an actions workflow that syncs from upstream images directly, like what Forgejo actually do.

https://code.forgejo.org/forgejo/oci-mirror

[–] [email protected] 2 points 1 week ago

oh freaking awesome, this looks amazing! Thank you so much for this!

[–] [email protected] 1 points 1 week ago

Host forgejo.

Or Gitea if you want to run the upstream.

[–] DasFaultier 3 points 1 week ago

At my job, we run goharbor.io and use its Replications feature to do just that.

[–] [email protected] 2 points 2 weeks ago

I mean you have the current image cached on the local server when you use it.

[–] [email protected] 2 points 1 week ago (1 children)

I don't know if this will help you, but I wrote a tutorial on how to setup a local registry on the LAN on a Fedora Server or RHEL-compatible server. https://techne.hyperreal.coffee/tutorials/setup-a-lan-container-registry-with-podman-and-self-signed-certs/

But anyway, it's unlikely docker.io or quay.io or ghcr.io will go completely offline. If anything they might experience a DDoS, in which case I imagine they have competent devops employees who would ensure they become functional again within a matter of hours.

[–] [email protected] 1 points 1 week ago

Very interesting thanks!

[–] [email protected] 0 points 2 weeks ago

Isn’t a Docker registry just HTTP? Would a caching proxy be too hard to use for this?