• 0 Posts
  • 7 Comments
Joined 2 years ago
cake
Cake day: July 22nd, 2023

help-circle




  • It’s great to give your brain daily workouts on the ins and outs of systems, but if you’re feeling burnt out, you’re doing that too much, probably, and my guess is, it’s coming in at moments when you were trying to solve some other, more interesting/relevant problem.

    It comes down to whether you’re trying to self-host, or trying to learn Linux at a level where you could get a job doing it. Often it’s a bit of both, so don’t feel like you need to make that decision right now.

    But my advice: whatever you’re hosting, use their recommended easy way to host it. In most cases, this means running a container. In most cases, Docker. If you can wrap your head around using docker compose files, your practical problems are reduced by an insane amount, and idiocy at the developer level becomes your only concern. For instance, I used to run Tandoor, but the dev pushed changes into their “stable” docker container that failed to properly migrate my data, and the whole thing cacked. But that wasn’t a system problem on my end, it was a case of a dev who was more interested in playing around with data than with providing a stable app.

    So, if you take this approach, which I absolutely do recommend, the one thing you need to be sure of is that you have a good backup strategy, and that you backup before you do any pulls of new images. Docker allows you to select old versions so if you don’t like changes that get pushed on something, likely you can just rebuild the old version, but the changes might mess with your database migrations, so you need those backups. Other than that, you cannot go wrong with Docker, if you just want the damn thing to work, rather than get daily aggravating lessons in esoteric systems problems which are above your paygrade.


  • Bad week for me. Tandoor had become the home of quite a lot of recipes, and well, I’m never gonna just pull a docker container again without a backup, cause I did a pull and the bastard stopped working.

    So I setup Django and got started doing my own recipe server cause I was never very enthused about Tandoor, too much netflix-like Presentation bullshit and did not allow for the very simple thing I wanted, which was, a compact list of my recipes by alphabet that I can swiftly click on the one I want.

    I also need to get my Python chops back cause I think there will be jobs again, soon enough.

    Meanwhile, anyone got any suggestions of a better recipe app? Needs to run as a Linux server, that’s about it. I can go Tailscale if it has no security. If I get mine to something usable I’ll make it available.