2024-09-12, 08:06 PM
(2024-09-12, 07:45 PM)JonnyGators Wrote: Is there a version of this that doesn't disappear every time I reboot? My server rebooted, and now my TV is broken again.
As we said earlier, this is because you didn't map the /config, /recordings, /buffer directories in your docker compose file. If you don't map these to directories that live outside of the docker container, then they effectively get deleted any time you delete the container.
In my earlier example, I created directories of the same names in my OMV, and included this in my docker compose file:
Code:
volumes:
- /config:/config
- /recordings:/recordings
- /buffer:/buffer