I want to spin up a test dvr server in a container. The host machine already has channels running on it. Linux Ubuntu desktop with docker and portainer installed. I have other containers running and all is well but they don’t have large storage requirements like a dvr.
My question stems on storage and docker compose layout. I have multiple drives attached and I would like the dvr software to run on the host os drive but I want the recordings stored at a different drive. lets say the path to that drive is
/mnt/blaablaablaa/piggy
What do I need to change create or whatever to accomplish this. Or don’t change anything and I’ll just be able to choose that location in the dvr setup. Here is the compose I’m starting with.
channels-dvr:
image: fancybits/channels-dvr:tve
container_name: channels-dvr
network_mode: host
ports:
- "8088:8089"
restart: on-failure:10
devices:
- /dev/dri:/dev/dri
volumes:
- /mnt/disk/dvr/config:/channels-dvr
- /mnt/disk/dvr/recordings:/shares/DVR