Skip to content

Instantly share code, notes, and snippets.

@aminusia
Created February 11, 2023 17:39
Show Gist options
  • Save aminusia/eabebd4c89e5339a29f8518b18177657 to your computer and use it in GitHub Desktop.
Save aminusia/eabebd4c89e5339a29f8518b18177657 to your computer and use it in GitHub Desktop.
Alpine Install Redis CLI
export REDIS_VERSION="6.0.4"
export REDIS_DOWNLOAD_URL="http://download.redis.io/releases/redis-${REDIS_VERSION}.tar.gz"
apk add --update --no-cache --virtual build-deps gcc make linux-headers musl-dev tar openssl-dev pkgconfig
wget -O redis.tar.gz "$REDIS_DOWNLOAD_URL"
mkdir -p /usr/src/redis
tar -xzf redis.tar.gz -C /usr/src/redis --strip-components=1
cd /usr/src/redis/src
make BUILD_TLS=yes MALLOC=libc redis-cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment