Updating clear out channels and sources? #1012
Answered
by
chrisbenincasa
techno-mike-git
asked this question in
Q&A
-
Hi! |
Beta Was this translation helpful? Give feedback.
Answered by
chrisbenincasa
Dec 13, 2024
Replies: 1 comment 4 replies
-
Can you paste in your docker command / compose file? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are correct that seeing the environment variable was incorrect. That variable value is relative to the inside of the container. It should not really ever be necessary to set that environment variable in a docker scenario.
Assuming you keep restarting the container... there is probably no backup to restore from. Tunarr was saving everything to /docker/tunarr within the container and never your mapped volume, so nothing ever made it out of the container context.
If you do happen to have a backup file outside of your container, you'd move it to the location on the host where you mount the volume, in your case /docker/tunarr. Otherwise, I think you'll have to start fresh once more (and no…