| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-03-18 | 1.4 kB | |
| Release v0.21.1 source code.tar.gz | 2026-03-18 | 3.0 MB | |
| Release v0.21.1 source code.zip | 2026-03-18 | 3.4 MB | |
| Totals: 3 Items | 6.4 MB | 0 | |
š Bug Fixes
Docker / Container
- Docker container initialization fixes for
PUID/PGIDhandling ā Thanks @CodeBormen: - Missing
/data/backupsdirectory: Backups were failing on existing installations because/data/backupswas missing from the init script's ownership migration list, causing it to be skipped and left with incorrect permissions. - Crash on upgrade with external mounts: When data directories are hosted on NFS, SMB/CIFS, or FUSE mounts, a
chownfailure would abort container startup entirely underset -e, breaking setups that worked fine on the previous image with no configuration changes. The init script now tolerates these failures gracefully ā affected directories are collected and reported in a single consolidated warning with remediation steps, and the container continues to start normally. - Upgrading users running as UID 102: The PUID/PGID auto-detect introduced in v0.21.0 read ownership from
/data/db, which held UID 102 (the internal PostgreSQL system user) in pre-v0.21.0 images. This caused host-side file access (SSH, WinSCP, etc.) to break, existing data files to become unwritable, and comskip to fail on recordings created before the upgrade.PUID/PGIDnow default to1000ā matching the UID Django ran as in all previous releases ā when not explicitly set.