Skip to content
Discussion options

You must be logged in to vote

Losing users after every update is typically caused by the Frigate SQLite database file being deleted or not persisted between container updates. This usually happens if your Docker configuration does not correctly map a persistent volume for the Frigate database file (frigate.db). When the database is missing or reset, all user accounts are lost and need to be recreated(1).

To solve this, make sure your Docker setup mounts a persistent host directory to /media/frigate (or wherever your frigate.db is configured to be stored, according to your database.path). This ensures the database—and thus your users—persist across updates(1).

For example, in your Docker Compose or Unraid configuration…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Lecso11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment