Merge pull request #313 from pelican-eggs/redis-8

Redis 8
This commit is contained in:
Michael (Parker) Parker
2025-07-10 07:50:38 -05:00
committed by GitHub
3 changed files with 21 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ jobs:
- 5 - 5
- 6 - 6
- 7 - 7
- 8
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3 - uses: docker/setup-qemu-action@v3

View File

@@ -291,6 +291,8 @@ is tagged correctly.
* `ghcr.io/parkervcp/yolks:redis_6` * `ghcr.io/parkervcp/yolks:redis_6`
* [`Redis 7`](/redis/7) * [`Redis 7`](/redis/7)
* `ghcr.io/parkervcp/yolks:redis_7` * `ghcr.io/parkervcp/yolks:redis_7`
* [`Redis 8`](/redis/8)
* `ghcr.io/parkervcp/yolks:redis_8`
### [Rust](/rust) ### [Rust](/rust)

18
redis/8/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# ----------------------------------
# Environment: redis
# ----------------------------------
FROM --platform=$TARGETOS/$TARGETARCH redis:8-bookworm
ENV DEBIAN_FRONTEND=noninteractive
RUN apt -y update && \
apt -y upgrade && \
apt -y install iproute2 && \
useradd -d /home/container -m container -s /bin/bash
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]