• 0 Posts
  • 17 Comments
Joined 3 years ago
cake
Cake day: July 12th, 2023

help-circle

  • Recently switched to ucore. While I cannot for the life of me get SELinux to let my containers run without Permissive mode (my server was previously Endeavour OS and either didn’t have it or I disabled it long ago), I’ve otherwise had great success.

    The config is a single yaml file that gets converted into a json file for Ignition, which sets everything up on first boot. It’s an OCI-based immutable distro with automatic updating, so I can mostly just leave it to its own devices and everything has been smooth for the first week I’ve been using it.

    My Docker root directory is on a separate drive with plenty of space, so setting up involves directing Docker to that new root directory and basically being done (which my Ignition config handles for me).






  • I had a few metadata issues with Jellyfin until I changed the primary metadata source to be the same as what Radarr/Sonarr use so they all the file names match up and I’ve had no issues since.

    I also don’t have a notable issues with subtitles in Jellyfin, but maybe your requirements have more friction. Have you tried the (iirc included by default) Jellyfin plugin to automatically download subtitles for your stuff? Or the *arr program that handles subtitles (I forget its name)?


  • If you use the public instance you don’t need to set up or host or install anything. You can selfhost it if you want, but the public instance works just fine.

    One person goes to the web page and starts a room. The other can join the same room by knowing the name of the room. (It will generate a link when you create a room to make it easy to send to someone so they can join by just clicking the link.)



  • I use Watchtower and haven’t had any major issues in the two(?) years I’ve been using it. Make sure you use persistent volumes for your containers and make sure you back up those volumes. If anything breaks, you can roll back to before the update.

    If you don’t use persistent volumes, you’ll lose data when Watchtower takes down the image and replaces it with the newer one (which doesn’t copy over ephemeral volumes).

    I also recommend for database containers to use an image tag that won’t update with breaking changes. Don’t use postgres:latest, use postgres:15.2 or something like that (whatever the image you’re using the database for recommends).



  • Portainer does store compose files though? I’ve manually used docker compose commands from the folders Portainer saves them in. They’re labeled with numbers instead of project names which makes it difficult to know which one you’re looking for, but I use rga so that wasn’t as much of an issue for me as it would have been otherwise. It was tedious, but the compose files very much exist on your hard drive.