redis-shake is a tool for Redis data migration and data filtering.
208
Clean container with redis-shake
Source code: https://github.com/alibaba/RedisShake
FROM golang:1.19 as builder
RUN mkdir /app && \
cd /app && \
git clone https://github.com/alibaba/RedisShake --depth 1 --branch v3.1.9 && \
cd RedisShake && \
sh build.sh
FROM golang:1.19
COPY --from=builder /app/RedisShake/bin/ /app/
ENTRYPOINT [ "/app/redis-shake" ]
Content type
Image
Digest
sha256:1c83f2f9d…
Size
349.3 MB
Last updated
over 3 years ago
docker pull tops1/redis-shake:3.1.9-amd64