Recorder - Home Assistant
https://www.home-assistant.io/integrations/recorderHome Assistant uses SQLAlchemy, which is an Object Relational Mapper (ORM).This makes it possible to use a number of database solutions. The supported database solutions are: MariaDB ≥ 10.3; MySQL ≥ 8.0; PostgreSQL ≥ 12; SQLite ≥ 3.31.0; Although SQLAlchemy supports additional database solutions, it will behave differently on different databases, and features relied on by …
MariaDB Setup : homeassistant
www.reddit.com › r › homeassistantYou'll need to create your own image via Dockerfile because the HA image doesn't contain the libraries for connecting to MariaDB. FROM homeassistant/home-assistant:latest RUN apt-get -y update RUN apt-get -y install libmariadbclient-dev libssl-dev RUN pip3 install mysqlclient RUN pip3 install pymysql