CompreFace Add-on broken?

Dear Community,

I’m currently using Double Take along with Frigate and CompreFace for facial recognition. I’ve been running CompreFace successfully for about a year without any issues. However, after updating to Home Assistant Core 2025, CompreFace stopped working. Frigate and Double Take are still functioning correctly.

I’m seeing a lot of log entries.

When I try to access the CompreFace web interface via its IP address on port 8000, I get the following error message.

Any help or suggestions would be greatly appreciated!

Kind thanks in advance,

Senne

Have you checked in the repo where the software came from? Also you could check here…
blakeblackshear/frigate · Discussions · GitHub is another good place to get help with Frigate.

1 Like

fixed this by creating a local addon

here is how to do it:
open terminal from inside HA

mkdir -p /addons/local/compreface
cd /addons/local/compreface

create file README.md

CompreFace is a free and open-source face recognition service hosted via Docker.

This add-on runs the official exadel/compreface image and exposes the web interface on port 8000.

Access: http://<home_assistant_ip>:8000

Note: Data is stored in /data inside the container.

create file config.yaml
name: CompreFace
version: “1.0.0”
slug: compreface
description: “Free and open-source face recognition service by Exadel”
startup: services
boot: auto
ports:
80/tcp: 8000
arch:

  • amd64
  • aarch64
  • armv7
    map:
  • data:rw
    image: “exadel/compreface”

create file Dockerfile
FROM exadel/compreface

ENV POSTGRES_DATA_DIR=/data

after creating those files in that directory created first:

reload addons and refresh all browser cache or just restart HA
after that add local addon compreface and start it.