Docker apps (sonarr and Radarr) both lost all config after update

I didn’t notice until today but both Sonarr and Radarr have lost all configs after the update. This means I would have to reload all of my items back into it.

Have any of you had this issue? If so how did you fix it?

Any suggestions are welcome.

Keep your config in a persistent volume e.g. /shares/Volume_1/docker, not in /home/root.
Usually I do this

docker volume create someapp_config
docker volume create someapp_data
docker run -v someapp_config:/config -v someapp_data:/data someone/someapp

I know this is an old post but I still have no idea how to change the config to a persistent volume.

I am using portainer to run my apps. Is there a way I can move all of my apps to a persistent volume in that software?

I have both Sonarr and Radarr running in portainer.

My pr2100 just updated again and I lost my settings.

Have a look at this post.
See here for more options: Bind mounts | Docker Documentation