this post was submitted on 10 Feb 2025
65 points (94.5% liked)

Selfhosted

42055 readers
549 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.

Resources:

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

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

Hi c/selfhosted,

I have another project idea. However, before I start I want to make sure there is interest in the community and a similar project does not exist yet.

I was thinking about a "compose" website that contains the compose files and basic information of the projects listed in the awesome-selfhosted list. Users can search for projects, browse by categories, etc. In my opinion when finding a new project you want to try out it, is a bit cumbersome to find the corresponding compose file to get started.

Let me know if there is any interest in such a project. Also I have no idea how I would name the project, so give me your best suggestions :). Thanks!

top 28 comments
sorted by: hot top controversial new old
[–] Kng@feddit.rocks 1 points 4 hours ago

Not sure how many people would directly seek out a website like this but if it shows up in google searches its probably useful. You could also probably also source compose files from github automatically (obviously with a disclaimer) to help quickly get examples for containers.

[–] node815@lemmy.world 6 points 7 hours ago

I'm not the host or author of this one, but I know it already covers what you are wanting to do. ;)

https://awesome-docker-compose.com/apps

[–] BlindFrog@lemmy.world 2 points 14 hours ago

I run synology, so I usually refer to this guy's website first to compare projects https://mariushosting.com/docker/

Although, some guides he posts require an environment variables file, of which he requires a donation for before downloading. I just scour the internet for the original projects' compose at that point.

[–] PunkiBas@lemmy.world 15 points 1 day ago (1 children)
[–] EasternLettuce@lemm.ee 3 points 19 hours ago (1 children)
[–] ikidd@lemmy.world 2 points 18 hours ago (1 children)
[–] Jakeroxs@sh.itjust.works 3 points 14 hours ago

The website has one of those cringe nft monkeys, but otherwise the site looks good

[–] Obelix@feddit.org 13 points 1 day ago (1 children)

You might want to take a look at https://community-scripts.github.io/ProxmoxVE/ . That's exactly what you want, but without Docker. It uses Proxmox / LXC / VMs and is really, really awesome for selfhosting.

[–] SidewaysHighways@lemmy.world 5 points 23 hours ago (1 children)
[–] Obelix@feddit.org 6 points 23 hours ago (1 children)

I'm really happy that the community stepped up and continued his great work.

[–] non_burglar@lemmy.world 4 points 22 hours ago (1 children)

It's not actually going that great, there is already infighting on the direction of the scripts.

[–] SidewaysHighways@lemmy.world 1 points 15 hours ago

that's really disappointing!

[–] Appoxo@lemmy.dbzer0.com 7 points 1 day ago (1 children)

I'd assume the projects either have a docker-compose example in the readme or in the repository files alongside the actual project.
Is that so uncommon?

[–] fine_sandy_bottom@discuss.tchncs.de 3 points 22 hours ago (2 children)

It's not that it's uncommon, but slightly different for each project.

I collated library would be kinda cool.

That said, I don't know how much utility this project would have.

[–] AbidanYre@lemmy.world 3 points 20 hours ago (1 children)

It might be cool, but it seems like it would be missing the context and documentation that would be present in it's project repo.

If only there were some way you could kind of refer viewers to the primary documentation for the project.

[–] Appoxo@lemmy.dbzer0.com 1 points 22 hours ago

Yeah, that's fair. Very convoluted and difficult documented.

[–] Tiritibambix@lemmy.ml 4 points 1 day ago

I know of these:

https://github.com/bitnami/containers/tree/main/bitnami/

https://github.com/docker/awesome-compose

They're not specific to projects listed in the awesome-selfhosted list though.

While most have examples in their readme's on Docker hub and Github, not all of them do, so I sometimes have to hunt down an example buried in their git repo somewhere. So a searchable page for popular self-hosted app docker compose files would be welcome.

I don't think I've seen such a page anywhere else.

[–] x00z@lemmy.world 0 points 23 hours ago (1 children)

Why compose and not just containers?

[–] 4am@lemm.ee 5 points 21 hours ago (3 children)

Why would anyone use containers without compose?

Especially people who are newer? It’s far easier.

[–] JollyGreen_sasquatch@sh.itjust.works 1 points 17 hours ago (1 children)

Compose doesn't have a versioned standard, it did for a bit iirc, which also means you can't always just grab a compose file and know it will always just work.

Most self hosted works fine with giant all in one containers, even for complex apps, it's when you need to scale you usually hit problems with an all in one container approach and have to change.

[–] lambda@programming.dev 1 points 11 hours ago (1 children)

Huh? They officially support it and there is no need for a version any more. It's standardised. As a matter of fact, if you try to start a compose stack that starts with a version number it gives you a warning that it's not needed.

The lack of version is the problem. Syntax has changed over time, so when someone finds or has an older compose file, there is no hint it won't work with the current version of docker-compose until you get errors and no graceful way to handle it.

[–] x00z@lemmy.world 1 points 20 hours ago

You answer my question with a question... But I'll answer it.

Compose is meant for multi-container applications or development. It's good for custom applications where you need to manage every service yourself so you mostly see them used for stuff like web stacks.

Single container applications are much easier to run and manage for the end-user and most of the awesome-selfhosted apps are already served as single container images on the docker hub. There is absolutely no need to use compose for any of those because you are not managing every service of the app yourself.

I have a big server with lots of containers running for apps. For example, I have a container for my blog, one for FreshRSS, and even one for Teamspeak. But I only use Compose for one application and that's my own custom one. That one consists of an nginx container, php container, etc. I don't need to dive into the different services of FreshRSS for example, but I do need to for my own custom app.

[–] tripflag@lemmy.world 1 points 20 hours ago (2 children)

for a selfhosted service which is a single self-contained process in a single container, is there still a benefit to using compose, and if so, what would that be? genuine question since I'm not providing a compose example for a foss service I made.

[–] lambalicious@lemmy.sdf.org 4 points 19 hours ago

Persistence of "mental state" mostly. By setting up a compose, you have a written down notion of things like volumes, environment variables and other elements stored somewhere for the behaviour of the container, that can not be ignored or defaulted if you don't wish it, for when you need to undo and redo a container and default behaviours are important.

While sure, those elements can be set in a loooong ${engine} run... command, it's easy to forget to set up something important or copy and paste an accidental endline. A compose file (plus a sample envfile, if you so wish) helps keep the way to set up variables and state under control. Made much easier now that we have both docker-compose run and podman-compose run.

[–] catloaf@lemm.ee 4 points 20 hours ago

I find it a lot easier to write out the yaml and save it in a file than to run a command every time, and I hate yaml.