#7023 -- Revert to upstream Redis (the last usable version) until Redict is available.

This commit is contained in:
Buster Neece 2024-03-26 13:25:00 -05:00
parent 89c7e3663b
commit 2ce2b0916a
No known key found for this signature in database
2 changed files with 6 additions and 2 deletions

View File

@ -48,7 +48,7 @@ mkdir -p /etc/my_init.d
# Install other common scripts.
apt-get install -y --no-install-recommends \
tini gosu curl wget tar zip unzip xz-utils git rsync tzdata gnupg gpg-agent openssh-client
lsb-release tini gosu curl wget tar zip unzip xz-utils git rsync tzdata gnupg gpg-agent openssh-client
# Add scripts
cp -rT /bd_build/scripts/ /usr/local/bin

View File

@ -2,7 +2,11 @@
set -e
set -x
apt-get install -y --no-install-recommends redis-server
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
apt-get update
apt-get install -y --no-install-recommends redis-server=6:7.2.4-1rl1~bookworm1
cp /bd_build/redis/redis/redis.conf /etc/redis/redis.conf
chown redis:redis /etc/redis/redis.conf