Skip to content

Update to Redis v7 based on Bookworm release #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: main
ref: 'v7'
fetch-depth: 100

- name: Determine latest version
Expand Down Expand Up @@ -105,12 +105,12 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: 'main'
ref: 'v7'
fetch-depth: 100

- name: Determine latest version
id: latest_version
uses: flownative/action-git-latest-release@main
uses: flownative/action-git-latest-release@v1

- name: Configure Git
run: |
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM europe-docker.pkg.dev/flownative/docker/base:bullseye
FROM europe-docker.pkg.dev/flownative/docker/base:bookworm

LABEL org.opencontainers.image.authors="Robert Lemke <[email protected]>"

Expand All @@ -8,10 +8,10 @@ LABEL org.label-schema.vendor="Flownative GmbH"

# -----------------------------------------------------------------------------
# Redis
# Latest versions: https://packages.debian.org/bullseye/redis-server
# Latest versions: https://packages.debian.org/bookworm/redis-server

ENV FLOWNATIVE_LIB_PATH=/opt/flownative/lib \
REDIS_VERSION="5:6.0.16-1+deb11u2" \
REDIS_VERSION="5:7.0.15-1~deb12u1" \
REDIS_BASE_PATH=/opt/flownative/redis \
PATH="/opt/flownative/redis/bin:$PATH" \
LOG_DEBUG=false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ deploy Redis using this Docker image.

Check the latest stable release on the tool's respective websites:

- Redis: https://packages.debian.org/bullseye/redis-server
- Redis: https://packages.debian.org/bookworm/redis-server

## Security

Expand Down