this post was submitted on 12 May 2026
201 points (100.0% liked)

Selfhosted

59110 readers
594 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.

  7. No low-effort posts. This is subjective and will largely be determined by the community member reports.

Resources:

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

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

Lots of layoffs ("re-evaluating our operational footprint") and switching to "agentic" processes. Target user is AI.

Anyone still hosting Gitlab?

you are viewing a single comment's thread
view the rest of the comments
[–] Fizz@lemmy.nz 53 points 11 hours ago (7 children)

Oh god that is so cringe. Just getting into coding i have no idea what to use as an online repo. I dont want to use github because microsoft but i want the basic repo collaboration features to be available cloning, pull requests, issues etc.

[–] warmaster@lemmy.world 31 points 8 hours ago

Codeberg for hosted, Forgejo for selfhosted.

They are great.

[–] tofu@lemmy.nocturnal.garden 99 points 11 hours ago (1 children)

If you don't want to host something yourself, check codeberg

[–] pluge@piefed.social 10 points 7 hours ago (3 children)

I like codeberg and have no plans on migrating away from it, but their codeberg Pages product is...weak to say the least. There's very frequent downtime. I had multiple users reach out to me letting me know my site was down... embarrassing. I set up kuma uptime checks on it, and now I see when the outages happen.

Forget "four 9's" or anything close to that....my 30 day uptime is a measley 91%...

[–] sonstwas@sh.itjust.works 10 points 5 hours ago* (last edited 4 hours ago) (1 children)

They communicate that openly tho:

Regular maintenance window: We're meeting every Tuesday starting 18.00 Berlin time (currently 17.00 UTC), lasting up to 8 hours. While we announce large scheduled downtimes in advance, there might be minor interruptions due to maintenance work happening during the meeting. Please be patient in this case.

https://status.codeberg.org/status/codeberg

Not sure if that's also for the Pages feature, but in general having a weekly 8hr maintenance window is not optimal.

[–] pluge@piefed.social 1 points 29 minutes ago

That's true, but even at worst case (full 8 hour outage per week) that's still 96% uptime.

Most of my outages have been out of that window.

[–] ell1e@leminal.space 2 points 4 hours ago

Github seems to be down a lot, too, although perhaps not their pages part. Perhaps you could try to have just the pages in some other place?

[–] vogi@piefed.social 1 points 5 hours ago

Thats rough. Check out https://grebedoc.dev/ I believe codeberg itself also wants to migrate to that as well, I cant tell you how reliable it is though (I am using hetzner managed for 1.90€/m) is but I dig its simplicity.

[–] Legianus@programming.dev 64 points 11 hours ago (1 children)
[–] Fizz@lemmy.nz 2 points 11 hours ago* (last edited 11 hours ago) (6 children)

Isnt codeberg centralized? I worry it will run into the same issue as github. I was checking out Radicle but its cryptic and hard to search for other projects.

[–] ozoned@piefed.social 38 points 11 hours ago (3 children)

Codeberg is supporting forgejo which Codeberg is built on. Forgejo is ActivityPub powered git repositories. So imagine regular git, but everyone can have their own repos on their own sites and you can still interact with each other. So yes, Codeberg is centealized FOR NOW. But they're working on opening it up to EVERYONE to run their own and be able to access all the repos you use over the Fediverse.

[–] oce@jlai.lu 6 points 11 hours ago* (last edited 11 hours ago) (2 children)

Will it be possible to have decentralized pull requests? Like I open a PR on my site, my friend reviews my PR on his site, and I get his reviews on my site?

[–] ballmerpeaking@programming.dev 8 points 8 hours ago (3 children)

This was always baked into basic git from the beginning if you review your code in E-Mail chains or mailing lists.

[–] cecilkorik@piefed.ca 1 points 5 hours ago

Email chains and mailing lists are not really a practical way to develop anymore, and it is increasingly anachronistic (as is the idea of tying your identity to an email which is also baked into basic git). This was the only realistic democratic and federated option when git was designed, but it was never the ideal one. Forgejo is trying to build a better, more ideal, also-federated alternative that is really designed for code collaboration from the ground up. Once the design is stabilized, there's no reason it couldn't get built into git also. I would love to be able to create a PR with git itself and have it automatically submitted to the origin repository.

[–] null@piefed.nullspace.lol 5 points 8 hours ago

So not really baked in at all then?

[–] oce@jlai.lu 1 points 5 hours ago

That's nowhere near as convenient as current web based PR.

[–] Anafabula@discuss.tchncs.de 18 points 11 hours ago (1 children)

That's the plan, but it's still far away

[–] oce@jlai.lu 2 points 10 hours ago
[–] Fizz@lemmy.nz 2 points 11 hours ago

That sounds like the dream.

[–] FishFace@piefed.social 0 points 11 hours ago (1 children)

Just like bluesky is centralised "for now" i.e. forever

[–] ozoned@piefed.social 9 points 8 hours ago

Except bluesky is funded by VC and they created their own protocol and federation design.

Codeberg is an open source repo only place, they're building in AP, they have monthly updates. So nothing like Bluesky.

But I understand the trepidation.

[–] realitaetsverlust@piefed.zip 8 points 11 hours ago* (last edited 11 hours ago) (2 children)

Even if, switching your used repo hosting service is a matter of minutes if you're using git. You register on the other site, add your SSH key, update the remote URL of your repository which is just a git remote set-url origin <new url> and then hit git push, probably with something like --force or another option, kinda forgot the exact name. So that's something you could easily automate in like 10 lines of bash script for all your repositories.

It's super hard to "trap" people in something like github because git is so open and decentralized. Switching is super easy. Most people who stay on github or gitlab do it because they need the CI/CD pipelines or because they're lazy and/or stupid.

[–] Fizz@lemmy.nz 3 points 11 hours ago

When I read this discussion on HackerNews they act like they're trapped and it would require moving the sun and the earth to switch over.

[–] FishFace@piefed.social 1 points 11 hours ago (1 children)

And the open issues, tasks and pull requests?

Right.

[–] Strit@lemmy.linuxuserspace.show 5 points 10 hours ago (1 children)

Those are all part of the forge, not git.

  • A git migration is easy.
  • Forge migration usually requires some form of migration tool to get all the forge specific stuff (like issues, PR's and todos).

The 2 are very different things.

[–] FishFace@piefed.social 0 points 9 hours ago (1 children)

And what kind of service is gitlab, which we are discussing here, or github which was brought up in the comment, or codeberg?

[–] Strit@lemmy.linuxuserspace.show 5 points 9 hours ago

They are forges.

I think the comment of migrating git, was more for smaller and maybe private projects. Not large collaborations. So only the git part, not the forge part.

[–] belazor@lemmy.zip 8 points 11 hours ago (2 children)

It’s funny coming from the Plex thread into this; ~100% of people who keep using Plex do so because it’s centralised and it makes sharing their library with their network of family and friends easier.

The truth is; a lot of us feel like we need more internet accounts about as much as we need genital warts. Part of the reason GitHub got successful was the fact that you only needed to register once and you had access to fork and PR all the repos on there.

Decentralisation is great for self hosting things for, well, yourself and your household, but it’s got hefty downsides. Account creation is a friction point for others to join and collab.

[–] surewhynotlem@lemmy.world 3 points 5 hours ago

At least with federation a single account gets you access to all the systems. So a truly federated git system would be great.

[–] TAG@lemmy.world 4 points 8 hours ago (1 children)

The truth is; a lot of us feel like we need more internet accounts about as much as we need genital warts.

You are confusing decentralized and fragmented (or self hosted). The promise of fragmented software (like Lemmy) is that there are many instances but an agreed upon protocol. You create one account on one site and then use it to pull and push data to any other site that uses the same communication protocol. Like you and I for example. You created an account on lemmy.zip, I created one on lemmy.world, and we are both discussing a post created by a user on lemmy.nocturnal.garden (an instance I have never heard of).

[–] belazor@lemmy.zip 1 points 17 minutes ago

The problem is, I have an account on lemmy.world but switched off during a time it had major problems with downtime and broken images. When I wanted to switch to another provider, my account was not portable. I hadn’t posted or commented an overwhelming amount, but it’s still not associated with this account.

So let’s say someone creates a federated Git hosting platform and feature matches GitHub with Actions/CI etc, so there’s no reason not to switch. Let’s then say git.world starts acting up, but you can create an account on git.zip instead.

Now you have given up your commit history and any commits you make from your git.zip account is not neatly linked with your git.world account.

I’m sure this problem can be solved, but it’s vastly more important for it to be solved before federated Git hosting can replace the “security” of GitHub. We do have to consider the fact that some people point to their GitHub profile when job searching, so git contributions and commit history is more valuable than Lemmy posts.

[–] vogi@piefed.social 3 points 11 hours ago* (last edited 11 hours ago)

Its centralized, but they (forgejo, the underlying software) are building on standards wherever possible so it should be easy enough to move things around. I also don't really see them breaking bad anytime soon, at some point you have stop worrying and start to build shit.

[–] tofu@lemmy.nocturnal.garden 3 points 11 hours ago

It is but they're working on federation for forgejo (which powers Codeberg).

[–] Legianus@programming.dev 2 points 11 hours ago* (last edited 11 hours ago)

Oh sorry, I might have misunderstood your question. Yes, Codeberg is centralised, but it is registered at a public e.V. in Germany making it more open (not a company).

But then you could use what they use, Forgejo to self host.

Or Gittea as suggested by somebody else.

[–] Slotos@feddit.nl 12 points 11 hours ago (1 children)

Codeberg or sourcehut.

Gitlab was always cringe.

[–] tehciolo@lemmy.world 3 points 3 hours ago

Even cringe as it always was, still a better product than GitHub. Microsoft drove it into the ground, but it was quite bad before as well, comparatively.

[–] dan@upvote.au 7 points 11 hours ago

For a beginner, I'd probably stick to Github initially, just because there's so many guides and tutorials on how to use it, and their free plan is still pretty generous.

A lot of the knowledge is transferable though. If you do want to try something else, Codeberg is pretty good for open-source.

To just learn about Git, you don't even need a host like Github or Codeberg. You can have a Git repo just on your computer, and still get a bunch of the benefits of source control - a full history of everything, separate branches and worktrees so you can have multiple incomplete changes and switch between them, etc.

[–] Domino@quokk.au 6 points 11 hours ago
[–] unitedwithme@lemmy.today 2 points 11 hours ago* (last edited 11 hours ago) (1 children)

~~Host a Gitea?~~

See reply comment below

[–] dan@upvote.au 15 points 11 hours ago* (last edited 11 hours ago) (1 children)

Or Forgejo, which is a fork of Gitea and is what Codeberg uses. They explain their advantages over Gitea here: https://forgejo.org/compare-to-gitea/

The tl;dr is that Forgejo is maintained by a non-profit whereas Gitea is maintained by a for-profit company, and Forgejo is completely open-source whereas Gitea is open-core with some features only available in their hosted service. Forgejo also has better testing and a bigger focus on security.

[–] unitedwithme@lemmy.today 3 points 11 hours ago* (last edited 11 hours ago)

Oh dang I didn't realize! Thank you!! I was just starting to look at those things myself and wanted to also avoid GH. Plus Gitea was available on Yunohost too. I've heard of Codeberg, I'll see if I can host that instead. It's too bad other companies don't move away from GH...