1
.github/workflows/redis.yml
vendored
1
.github/workflows/redis.yml
vendored
@@ -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
|
||||||
|
@@ -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
18
redis/8/Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user