Skip to content

Instantly share code, notes, and snippets.

View DoctrineDark's full-sized avatar

Alexander Kapakly DoctrineDark

View GitHub Profile
@jgaskins
jgaskins / Dockerfile
Created February 12, 2023 13:09
KeyDB with RedisJSON and RediSearch
FROM ubuntu:20.04 AS redisjson
RUN apt-get update
RUN apt-get upgrade -y git
RUN apt-get install -y curl gcc
RUN apt-get install -y libclang-dev
WORKDIR /
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o install-rust.sh && sh ./install-rust.sh -y
RUN git clone https://github.com/RedisJSON/RedisJSON.git --branch v2.4.4