alt.hn

6/27/2026 at 11:05:33 PM

Codeberg Is Down

https://social.anoxinon.de/@codebergstatus/116824443563698727

by sscaryterry

6/28/2026 at 12:19:46 AM

I can't take it anymore, I'm moving all my projects to github!

by analogpixel

6/28/2026 at 1:07:51 AM

Sounds like we have the basics of an oscillating system now!

I wonder what it's resonant frequency is.

by CoastalCoder

6/28/2026 at 12:28:08 AM

Is Github free of problems? I don't know. Maybe an option would be hosting gitea and sync projects to an online account.

by roscas

6/28/2026 at 12:29:56 AM

I believe analogpixel is being facetious

by m4xm4n

6/28/2026 at 12:30:13 AM

The GP is joking.

by cinntaile

6/28/2026 at 12:30:42 AM

Sarcasm is a thing.

by loloquwowndueo

6/28/2026 at 12:22:55 AM

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

"Power Outage

Since Sunday 00:18 CEST, Codeberg.org is offline. From our investigation, our primary location lost power in our racks, leaving the majority of our servers and some network switches offline. We're waiting for a fix from the datacenter operator. " from that status page.

by roscas

6/28/2026 at 12:32:25 AM

Maybe related to the heatwave? I've heard some European data centres are having trouble with their cooling systems.

by muglug

6/28/2026 at 12:54:52 AM

That, or the massive lightning that's going through the region, (due to the heatwave). Since it's quite late at night, heat wouldn't be my first guess.

by sigio

6/28/2026 at 12:37:20 AM

I'll put my money on AI software contributions...

by xedrac

6/28/2026 at 2:23:14 AM

Has anyone used the Repository Mirroring Feature [1] to mirror repos across self-hosted Forgejo/Codeberg/Github? How effortless is it? Ideally, I'd like to only ever push repos/branches to my self-hosted Forgejo, and have those changes automatically reflected on Codeberg/GH without thinking about it.

[1] https://forgejo.org/docs/v15.0/user/repo-mirror/

by kevinfiol

6/28/2026 at 7:08:11 AM

I use it to sync projects that I mainly host on Codeberg up to GitHub. It was a "set it and forget it" kind of thing.

by TranquilMarmot

6/28/2026 at 3:25:44 AM

I am using it to backup my public and private repositories to Github and it's effortless, indeed. I am using ssh protocol and a read/write deployment key. Also, I anticipated `git push --force` could be an issue, it's not.

by melomac

6/28/2026 at 12:58:42 AM

A large chunk of companies I've worked for or consulted for had their own on-prem Gitlab. I think they chose correctly.

by DarkNova6

6/28/2026 at 1:28:49 AM

Codeberg runs open source Forgejo, and you could on-prem that too (for no license cost), if it suits your needs.

GitLab is more powerful in some ways, but early startups might want to look at Forgejo first.

by neilv

6/28/2026 at 1:30:06 AM

> but early startups might want to look at Forgejo first.

Sorry, but there are a million things to do. Paying someone to self-host Forgejo isn't even on that list. We'll just pay someone at the moment.

by OptionOfT

6/28/2026 at 4:34:15 AM

Depends on the nature of your startup, and if you have significant infrastructure/architrcture for your workload or not. If you have significant scale you likely have a DevOps / SysAdmin type.

by esseph

6/28/2026 at 4:34:46 PM

Yeah, and if you're early, like a few-person startup, you hopefully have someone who can do ops things as needed.

When I was the one-person eng and ops departments for a few-person seed-stage startup, which already had a major customer in critical production... even when we bought SaaSes (e.g., GitLab), I still needed to spend significant time on the recurring manual steps of backup processes for everywhere we put data we couldn't afford to lose, even after I'd spent time to automate everything that was worthwhile to automate.

For my last side-startup, I just self-hosted Forgejo myself (Git, Issues & Boards, Wiki), and it's less work than when I was doing the same with paid GitLab SaaS.

It depends on the case-by-case circumstances, but sometimes self-hosting an open source package, on your laptop, random PC in the corner, or your existing AWS account, takes less of your valuable time than a paid SaaS does.

by neilv

6/28/2026 at 7:07:10 AM

This seems like a weird comment since Codeberg is only for open source projects, you literally cannot use it for private code. On-prem Forgejo would be the equivalent to on-prem GitLab, both of which are unrelated to this outage.

by TranquilMarmot

6/28/2026 at 1:14:02 AM

On perm Gitlab has a ton of problems too.

by veber-alex

6/28/2026 at 1:26:40 AM

We had zero in the last 7 years. But we are only a small team of 8.

by Kelteseth

6/28/2026 at 1:24:21 AM

For examples? Never ran into them myself but I don't do ops.

by DarkNova6

6/28/2026 at 1:37:33 AM

I don't do ops myself so I don't know the exact details but sometimes Gitlab is down or there are strange issues with CI/CD breaking.

by veber-alex

6/28/2026 at 2:32:18 AM

I suppose this is a good opportunity to ask, why do people get so affected by DVCS hosts going down? You can work locally with Git without uploading every change. Despite the constant reported GitHub downtime, I have not ever been adversely affected even once, since pushing and pulling are done every few days and I can freely branch/commit/merge locally.

by Ferret7446

6/28/2026 at 2:38:53 AM

Nowadays, these code forges have also become a centralized place for issue tracking, kanban boards, wiki editing and, specially, as CI/CD servers, in the case of GitHub Actions, which are, sometimes, the only for you to deploy software to package repositories. The same limitations apply to GitLab CI or Codeberg's Forgejo Runners/Woodpecker.

Whenever GitLab, Codeberg, BitBucket and, mostly, GitHub goes down, a lot of the software and websites you use can't be updated, including dependencies of your software that you're pulling from npm, for instance.

Finally, companies use code forges mostly for the ease of doing code reviews through Pull Requests/Merge Requests. Developers rarely, if ever, actually merge branches locally, before having it reviewed by peers in one of these code forges.

by doodlesdev

6/28/2026 at 2:51:56 AM

Git is a DVCS, but many companies have a build server/cluster that depends on Github or Codeberg being available.

Teams I've worked on for the last several decades aim to push 10-20 builds per day to external alpha testers, so any downtime in Github is going to be an impediment.

by netcoyote

6/28/2026 at 2:37:06 AM

Do you not spend much time writing and discussing issues or reviewing code?

by ItsHarper

6/28/2026 at 3:33:54 AM

You could use separate tools for those tasks. JIRA/Bugzilla/etc. for issue tracking, Sublime Merge or equivalent for comparing a dev branch to a main branch, and CI/CD with Azure Pipelines or whatever the “modern” equivalent of Jenkins is.

That isn’t as convenient as an all-in-one tool, and might not be what the user you’re responding to is doing. But it’s doable.

by scared_together

6/28/2026 at 6:35:53 AM

Mailman provides decentralized issue tracking.

by tosti

6/28/2026 at 12:33:47 AM

> For the time being, it appears that all three servers are without power.

This strikes me as odd, only three servers?

by matt_daemon

6/28/2026 at 12:38:48 AM

3 physical servers can power a ton of requests.

by stackskipton

6/28/2026 at 6:33:25 AM

From what I understand, Codeberg is a pretty small nonprofit group.

by arcanemachiner

6/28/2026 at 7:40:17 AM

Codeberg is smaller than GitHub and, you know, Go is slightly more efficient than Ruby :)

by nasretdinov

6/28/2026 at 12:50:28 AM

[dead]

by Gualdrapo

6/28/2026 at 1:15:24 AM

Only well known project on Codeberg that comes to mind is Zig

by linzhangrun

6/28/2026 at 1:25:02 AM

That's because most of what you can see of a Codeberg is actually underwater.

by DarkNova6

6/28/2026 at 1:25:54 AM

Does Forgejo count?

by doubled112

6/28/2026 at 2:50:37 PM

Guix?

by iamnothere

6/28/2026 at 6:52:26 AM

Comaps too.

by jraph

6/28/2026 at 1:05:54 AM

Never heard of it. And it makes HN?

by assimpleaspossi

6/28/2026 at 1:22:07 AM

Consider that maybe you haven’t heard of all the things that HN readers find interesting.

by velcrovan

6/28/2026 at 12:42:56 PM

I am VERY active in technology and that I haven't heard of it means something, too. I notice--far too often--that obscure things like this get posted here and elsewhere which can confuse others into thinking they have to get involved or learn about it cause they saw it on <this site> so they have to learn it, too, when it's only a niche case among few.

by assimpleaspossi

6/28/2026 at 1:09:00 PM

I see it mentioned any time GitHub is shitting the bed (frequent enough) and someone asks for self hostable alternatives or when someone ask for a European GitHub alternative. I think you just might not be paying enough attention.

by NekkoDroid

6/28/2026 at 1:09:34 AM

There are a couple of very vocal people who are generally liked here who wrote angry blog posts about moving from Github to Codeberg.

This is why it's getting traction.

by veber-alex