Refactored redis component to use a centralized postgres database with coordinator instead of descentralized sqlite shitty databases

This commit is contained in:
2026-06-30 18:07:47 -03:00
parent bae8712f3b
commit e81211c88e
10 changed files with 854 additions and 193 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ RUN cargo build --release
FROM debian:bookworm-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates ffmpeg redis-tools sqlite3 \
&& apt-get install -y --no-install-recommends ca-certificates ffmpeg redis-tools \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app