Root Folders
Root folders define where Servarr stores media files. Each Servarr instance needs at least one root folder.
Schema
Section titled “Schema”{ path: string // Filesystem path inside the container accessible: boolean // Whether the path is accessible (default: true)}Example
Section titled “Example”{ "rootFolders": [ { "path": "/tv", "accessible": true } ]}Multiple Root Folders
Section titled “Multiple Root Folders”{ "rootFolders": [ { "path": "/tv/shows", "accessible": true }, { "path": "/tv/anime", "accessible": true } ]}Radarr
Section titled “Radarr”{ "rootFolders": [ { "path": "/movies", "accessible": true }, { "path": "/movies/4k", "accessible": true } ]}- Paths must exist inside the Servarr container (mounted via Docker volumes or PVCs)
- The
accessiblefield indicates whether PrepArr should verify the path is accessible - Root folders are managed with full CRUD: folders in your config are created, folders not in your config are removed