this post was submitted on 25 Dec 2024
18 points (90.9% liked)
Jellyfin: The Free Software Media System
5885 readers
4 users here now
Current stable release: 10.10.3
Matrix (General Information & Help)
Matrix (Off-Topic) - Come get to know the team and blow off steam!
Matrix Space - List of all the available rooms on Matrix.
Discord - Bridged to our Matrix rooms
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Cannot recommend container approach enough. The learning curve isn't too bad, initially it can be daunting but best way is to jump straight in and try it.
Few things I recommend:
Please use Dockge instead of Portainer.
Dockge makes it much easier to actually see what's happening in the deployment process and debug any issues, instead of presenting the error on a small popup that vanishes after 0.3 seconds, and it gives you much better feedback when you misconfigure something in your compose file. It also makes it much easier to interact with your setup from the command line once you feel comfortable doing that. And the builtin docker run to docker compose feature is really handy.
Newbies will find Dockge much friendlier, and experienced users will find that it respects their processes and gets out of the way when you want it out of the way.
When you say "Backup your docker config folders". Are you talking about the directory were you would store the dockerfile / docker compose file?
That too, but no, I was referring to the data/config folders for each container.
For example, radarr it would be the config volume you mounted. Generally, the *arrs use a volume called 'config', but other containers will differ.
I've only had to recover from backups twice in 5 years, once was my fault after fiddling with databases. But if you're using the development/nightly branches, it's best to be cautious and avoid having to reconfigure.
oh, gotcha. Thanks, and good point. I was thinking of using bind mounts instead of volumes so I can access them easier. That should make backing them up to the NAS easier as well.