1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-02-13 16:00:38 +00:00

Add redis-to-valkey migratior

This commit is contained in:
FreddleSpl0it
2025-02-28 15:49:28 +01:00
parent c27000215e
commit 0698159f07
3 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
FROM python:3.13.2-alpine3.21
WORKDIR /app
COPY migrate.py /app/migrate.py
RUN pip install --no-cache-dir redis
CMD ["python", "/app/migrate.py"]