How to Keep Docker App Settings After Restart?

0
1
Asked By CuriousNinja74 On

I'm a Docker newbie and I successfully got my first app running (Jellyseer), but I'm facing a frustrating issue. Every time the computer reboots, the app loses all its settings and resets back to default. Does anyone have tips on how I can keep the data persistent across restarts?

1 Answer

Answered By HelpfulPenguin32 On

It sounds like you're having trouble with data persistence. I recommend using Docker Compose, which allows you to map a local directory to the app's working directory. This way, your settings would be saved outside the container and remain intact even if the container is restarted.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.