harbormaster VS swarmpit

Compare harbormaster vs swarmpit and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
harbormaster swarmpit
27 8
- 2,919
- 2.1%
- 4.2
- 14 days ago
Clojure
- Eclipse Public License 1.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

harbormaster

Posts with mentions or reviews of harbormaster. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-19.
  • Harbormaster: The Tiniest Container Orchestrator
    1 project | news.ycombinator.com | 30 Jul 2023
  • Ask HN: What hardware are you running for your home server?
    2 projects | news.ycombinator.com | 19 Jul 2023
    I use an HP ProLiant Microserver with four drives in a ZFS RAIDZ array and an SSD for the OS. For software, I mostly run it in Docker using a very small container orchestration program I wrote:

    https://gitlab.com/stavros/harbormaster

  • MRSK vs. Fly.io
    7 projects | news.ycombinator.com | 22 Mar 2023
  • I am a one-man show: Deployment and infrastructure for a 150k/m visits webapp
    2 projects | news.ycombinator.com | 26 Sep 2022
    I needed something that would restart containers automatically when I pushed to a branch, so I wrote a few lines of code to do it:

    https://gitlab.com/stavros/harbormaster

    As far as PaaSes go, it's probably the simplest, and works really well.

  • My VM is Lighter (and Safer) than your Container
    5 projects | news.ycombinator.com | 8 Sep 2022
    I was in the same boat as you and built something simple that I really like:

    https://gitlab.com/stavros/harbormaster

    It'll just pull some repos, make sure the containers are up, and make your configuration simple and discoverable. It really works great at that.

  • Exposing a web service with Cloudflare Tunnel
    9 projects | news.ycombinator.com | 8 Feb 2022
    I do this for our services, it works great and we can easily put SSO in front of them with CF Access. I publish a Docker container that you can use as a sidecar for your Compose deployments:

    https://gitlab.com/stavros/docker-cloudflared

    I use this with Harbormaster (https://gitlab.com/stavros/harbormaster) so I can expose containerized stuff without ever forwarding any ports outside of Docker.

  • I Miss RSS
    17 projects | news.ycombinator.com | 5 Jan 2022
    I use Dokku for that (I can share my Bitwarden repo if you want, the entire thing is four lines or something). I also made https://gitlab.com/stavros/harbormaster for things that weren't so "web server -> app -> database" and love it.
  • Self-Hosting Dozens of Web Applications and Services on a Single Server
    15 projects | news.ycombinator.com | 31 Dec 2021
    I had the same problem and didn't want to manage things by hand, so I wrote Harbormaster:

    https://gitlab.com/stavros/harbormaster

    It basically pulls Compose apps from the git repositories you specify, builds the containers and makes sure they're running. Pretty simple and works really well for me.

  • Setting Up Cloudflare Argo and Access on a Raspberry Pi
    3 projects | news.ycombinator.com | 29 Nov 2021
    (This post should read "Argo tunnel" instead of just "Argo")

    I did the same to enable secure access to services via SSO at work. I used Harbormaster[1] to deploy Compose files, but it's otherwise the same setup.

    One of the big advantages this has is that the services can't be accessed any other way (not even from the same host, as they only listen inside the Docker network). That makes it hard to forget some port exposed because you listened to 0.0.0.0 instead of localhost.

    Cloudflare access is very easy to set up SSO with, as well. I'd recommend this setup if you need it, though for home usage I usually just set up Caddy as a reverse proxy with basic auth, as I'll be the only person using this and I don't want Cloudflare MITMing my personal stuff.

    [1]: https://gitlab.com/stavros/harbormaster

  • What is the cleanest way to deploy a docker-compose stack to a remote server?
    3 projects | /r/devops | 31 Oct 2021
    Something like harbormaster? https://gitlab.com/stavros/harbormaster

swarmpit

Posts with mentions or reviews of swarmpit. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-15.
  • Docker Storm ā€“ Container Visualizaiton
    2 projects | news.ycombinator.com | 15 Dec 2022
    So I need to setup prometheus, granfana, node exporter, and cadvisor before running this? All of the above give me everything I need to monitor a swarmcluster. And if I want multi-user access to the graphs, Iā€™d configure auth in Grafana.

    Further, if I were to monitor Swarm without the Prom+Grafana stack, Iā€™d be looking at:

    https://github.com/swarmpit/swarmpit

    What is the value-add of Storm?

  • Show HN: SetOps ā€“ Run containers, databases and more in your own AWS account
    7 projects | news.ycombinator.com | 7 Jun 2022
  • Is Docker swarm visualizer viable on-premises?
    1 project | /r/docker | 9 Mar 2022
    And then also look at Swarmpit https://github.com/swarmpit/swarmpit. It was last updated Aug 28, 2020 as well, so I don't know how active it is, but I also used it for a while before sticking with Portainer ultimately.
  • I self-host around 15 projects, should I use docker-compose, kubernetes or something else?
    4 projects | /r/selfhosted | 4 Oct 2021
    Kubernetes is a bit overkill. For my homegrown usage i use docker swarm. And use https://swarmpit.io to manage it
  • Portainer alternative
    1 project | /r/docker | 26 Aug 2021
    Specific to swarm but it might help soneone in a way https://github.com/swarmpit/swarmpit
  • Harbormaster: The anti-Kubernetes for your personal server
    20 projects | news.ycombinator.com | 19 Aug 2021
    > There is gap in the market between VM oriented simple deployments and kubernetes based setup.

    In my experience, there are actually two platforms that do this pretty well.

    First, there's Docker Swarm ( https://docs.docker.com/engine/swarm/ ) - it comes preinstalled with Docker, can handle either single machine deployments or clusters, even multi-master deployments. Furthermore, it just adds a few values to Docker Compose YAML format ( https://docs.docker.com/compose/compose-file/compose-file-v3... ) , so it's incredibly easy to launch containers with it. And there are lovely web interfaces, such as Portainer ( https://www.portainer.io/ ) or Swarmpit ( https://swarmpit.io/ ) for simpler management.

    Secondly, there's also Hashicorp Nomad ( https://www.nomadproject.io/ ) - it's a single executable package, which allows similar setups to Docker Swarm, integrates nicely with service meshes like Consul ( https://www.consul.io/ ), and also allows non-containerized deployments to be managed, such as Java applications and others ( https://www.nomadproject.io/docs/drivers ). The only serious downsides is having to use the HCL DSL ( https://github.com/hashicorp/hcl ) and their web UI being read only in the last versions that i checked.

    There are also some other tools, like CapRover ( https://caprover.com/ ) available, but many of those use Docker Swarm under the hood and i personally haven't used them. Of course, if you still want Kubernetes but implemented in a slightly simpler way, then there's also the Rancher K3s project ( https://k3s.io/ ) which packages the core of Kubernetes into a smaller executable and uses SQLite by default for storage, if i recall correctly. I've used it briefly and the resource usage was indeed far more reasonable than that of full Kubernetes clusters (like RKE).

  • Docker management
    1 project | /r/docker | 4 Jan 2021
  • Help finding a UI Solution
    1 project | /r/docker | 1 Jan 2021
    I believer Portainer and Swarmpit would have this capabilties https://www.portainer.io/ https://github.com/swarmpit/swarmpit

What are some alternatives?

When comparing harbormaster and swarmpit you can also consider the following projects:

ufw-docker - To fix the Docker and UFW security flaw without disabling iptables

Portainer - Making Docker and Kubernetes management easy.

nixos-infect - [GPLv3+] install nixos over the existing OS in a DigitalOcean droplet (and others with minor modifications)

swarmlet - A self-hosted, open-source Platform as a Service that enables easy swarm deployments, load balancing, automatic SSL, metrics, analytics and more.

docker-box - A lightweight docker application platform for single servers.

Dokku - A docker-powered PaaS that helps you build and manage the lifecycle of applications

https-portal - A fully automated HTTPS server powered by Nginx, Let's Encrypt and Docker.

neural-hash-collider - Preimage attack against NeuralHash šŸ’£

watchtower - A process for automating Docker container base image updates.

levant - An open source templating and deployment tool for HashiCorp Nomad jobs

k3s - Lightweight Kubernetes