I Like GitLab

https://news.ycombinator.com/rss Hits: 2
Summary

I’ve been using GitLab for my private projects for years now. I just started using it at some point and never had a reason to switch.How I ended up hereBack when GitHub still charged for private repositories, GitLab offered them for free. That was the initial hook. I had a bunch of small projects and experiments that I didn’t want to publish but also didn’t want to pay for. GitLab was the obvious choice.GitHub eventually made private repos free too, but by then my workflow was already built around GitLab. All my CI pipelines, Docker images, deployment scripts - everything pointed there.The Docker registry thingEvery GitLab project comes with a Container Registry. This is probably the feature I use most.The workflow is simple. Build an image locally or in CI, push it to the registry, pull it wherever you need it.No separate Docker Hub account. No thinking about pull rate limits (remember when Docker Hub introduced those and broke half the internet’s CI pipelines?). No managing access tokens for yet another service.For my private projects this is perfect. I don’t need the discoverability of Docker Hub. I just need a place to store images that integrates with my existing authentication.The 10GB limit per project sounds small on paper but I’ve never come close to hitting it. Old tags get cleaned up, base layers are shared, and most of my images aren’t that big anyway.CI/CDGitLab CI was one of the earlier “CI config as code” implementations that I used. You drop a .gitlab-ci.yml in your repo and things start happening. The config is versioned with everything else, which means you can see exactly what your pipeline looked like six months ago.Nothing fancy. Build the image, push it, optionally deploy. The manual trigger on deploy is nice - I can build automatically but still control when things go to production.The shared runners GitLab provides handle most of my workloads. They’re not fast, but they’re free and reliable. For the times when I needed something specific - li...

First seen: 2026-01-24 12:51

Last seen: 2026-01-24 13:51