this post was submitted on 12 May 2026
83 points (96.6% liked)

Selfhosted

59623 readers
902 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 3 years ago
MODERATORS
 

What to people use and recommend for this? I've read a bit about portainer, but I'm still learning - and don't know what the best solutions are.

Today I have a handful of selfhosted services running on my home machine - mostly installed directly, but a couple running as docker containers. As the scale of my selfhosting has grown, I've realized that things would be a lot easier to manage if each service was run as its own container, so that installed services are isolated.

The solution I'm looking for would make it easy (possibly a web UI) for me to monitor, modify, update, and remove containerized services, including networking and storage.

Edit: Also I would only want a FOSS solution.

you are viewing a single comment's thread
view the rest of the comments
[–] K3can@lemmy.radio 9 points 3 weeks ago (2 children)

I'll second podman quadlets. Good security, full integration with systemd, pods allow applications to easily share a namespace, and you can manage graphically through Cockpit if you really want to.

[–] valar@lemmy.ca 3 points 3 weeks ago

systemd integration would be nice

[–] motruck@lemmy.zip 2 points 2 weeks ago (1 children)

Do you have an example of quadlets you defined that share a namespace?

[–] K3can@lemmy.radio 4 points 2 weeks ago (1 children)

It's a function of a "pod" within podman.

I wrote the podman examples for AudioMuseAI using a pod: https://github.com/NeptuneHub/AudioMuse-AI/tree/main/deployment/podman-quadlets

And I have an example *arr suite on my GitHub page: https://github.com/K3CAN/podman-arr-quadlets

[–] silver@das-eck.haus 1 points 6 days ago (1 children)

This is pretty sweet. My docker-compose config is working perfectly and I have no reason to fuck with it, but you've got me tempted

[–] K3can@lemmy.radio 2 points 6 days ago (1 children)

Podman quadlets can also auto-update and auto rollback, if needed.

[–] Andres4NY@social.ridetrans.it 0 points 6 days ago (1 children)

@K3can @silver How do you handle running as other users? I like to run services as their own user, so currently I create a new user and (as them) run podman compose.

[–] K3can@lemmy.radio 1 points 6 days ago (1 children)

Quadlets work like any other systemd service.

You create the user/group you want to run as on the underlying system, then just specify that user/group in the quadlet file.

If you look at my *arr examples, you can see the user and groups they're running as.

[–] Andres4NY@social.ridetrans.it 0 points 6 days ago (1 children)

@K3can So you're running the systemd services as root, and letting systemd change them to their relevant users? Or are you running the systemd services as a non-privileged user, and using container subuid/subgids?

[–] K3can@lemmy.radio 1 points 5 days ago

The first one. The service is owned by root, but the application is running as an unprivileged system user.