Selfhosted
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:
-
Be civil.
-
No spam.
-
Posts are to be related to self-hosting.
-
Don't duplicate the full text of your blog or readme if you're providing a link.
-
Submission headline should match the article title.
-
No trolling.
-
Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the link in Rule 8 for details.
-
AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post. )
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
I always use docker-compose. It is very handy if you ever want to have a good backup or move the whole server to another. Copy over files -> docker compose up -d and you are done For beginners, they should use docker compose from the start. Easier than docker run
If you ever want to convert those one-liner to a proper .yml then use this converter
That is one
docker compose up -dfor each file you copied over, right.. Or are you doing something even smarter?I have one docker-compose.yml for each service. You can use
docker compose -f /path/to/docker-compose.yml up -din scriptsI would never use "one big" file for all. You only get various problems imo
You use a separate file for each service? Why? I use one file for each stack, and if anything, breaking them out would give me issues.
I meant stack 😸
My structure is like
/docker/immich/docker-compose /docker/synapse/docker...
But I read that some people make one big file for everything
I have all services in one compose file. Up -d starts them all. Servicename up -d is more selective.