Comment on Plex Users Fear New Feature Will Leak Porn Habits to Their Friends and Family
Kusimulkku@lemm.ee 11 months agoI’ve never had issues with their data. Logs, configs or media. Just set up the volumes and you’re done afaik.
Updating single container can be done with a simple pull and recreate or with compose by having a single docker thing on that particular compose file. Not that I’ve chosen to do that, many services are simpler since a lot of them work together anyway.
Backing up should be as easy as backing up anything. Put all your docker configs in the same location, save the compose file(s), check that the paths are same in new system and you’ll be up and running.
AtariDump@lemmy.world 11 months ago
It’s tough when the directions leave out making a folder outside of the container to store configs. That’s burned me once.
I’m not looking to update a single container but a single project’s container; just because I want to update project A’s containers doesn’t mean I also want to update project B’a containers. The only instructions I’ve found update all projects at the same time.
I’m not so worried about the config files as I am worried about backing up the data inside the containers being created from data outside the containers.
Kusimulkku@lemm.ee 11 months ago
It seems to be step #3 here jellyfin.org/docs/general/…/container/
If you’re using docker compose, put them into a different compose file. Then you can manage them separately.
Data inside the containers? All the important and necessary data should be outside of them. That’s sorta one of the big points. You shouldn’t have anything changing inside them.
AtariDump@lemmy.world 11 months ago
I appreciate that; I wasn’t talking about Jellyfin. A different project.
It was a general gripe about Docker in general.