Skip to content

Root Folders

Root folders define where Servarr stores media files. Each Servarr instance needs at least one root folder.

{
path: string // Filesystem path inside the container
accessible: boolean // Whether the path is accessible (default: true)
}
{
"rootFolders": [
{ "path": "/tv", "accessible": true }
]
}
{
"rootFolders": [
{ "path": "/tv/shows", "accessible": true },
{ "path": "/tv/anime", "accessible": true }
]
}
{
"rootFolders": [
{ "path": "/movies", "accessible": true },
{ "path": "/movies/4k", "accessible": true }
]
}
  • Paths must exist inside the Servarr container (mounted via Docker volumes or PVCs)
  • The accessible field 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