Skip to content

Commit

Permalink
Add version 8
Browse files Browse the repository at this point in the history
  • Loading branch information
csandanov committed Sep 26, 2024
1 parent 9f1c5a0 commit e4932e7
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,31 @@ on:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
VALKEY72: '7.2.6'

jobs:
valkey80:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
with:
platforms: amd64,arm64
- uses: docker/setup-buildx-action@v3
- uses: ./.github/actions
with:
version: '8.0.0'
tags: 8.0,8,latest
platform: linux/amd64,linux/arm64
valkey72:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/setup-qemu-action@v1
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
with:
platforms: amd64,arm64
- uses: docker/setup-buildx-action@v1
- uses: docker/setup-buildx-action@v3
- uses: ./.github/actions
with:
version: ${{ env.VALKEY72 }}
tags: 7,7.2,latest
version: '7.2.6'
tags: 7.2,7
platform: linux/amd64,linux/arm64
1 change: 1 addition & 0 deletions .valkey
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
8.0.0#2024-09-15T23:15:03.220244Z
7.2.6#2024-09-15T23:15:03.220244Z
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
ARG VALKEY_VER
ARG VALKEY_VER=8.0.0

FROM valkey/valkey:${VALKEY_VER}-alpine

ARG TARGETPLATFORM
ARG VALKEY_VER

ENV VALKEY_VER="${VALKEY_VER}"

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-include env_make

VALKEY_VER ?= 7.2.6
VALKEY_VER ?= 8.0.0

TAG ?= $(shell echo "${VALKEY_VER}" | grep -oE '^[0-9]+\.[0-9]+')

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Docker Images

❗For better reliability we release images with stability tags (`wodby/valkey:7-X.X.X`) which correspond to [git tags](https://github.com/wodby/valkey/releases). We strongly recommend using images only with stability tags.
❗For better reliability we release images with stability tags (`wodby/valkey:8-X.X.X`) which correspond to [git tags](https://github.com/wodby/valkey/releases). We strongly recommend using images only with stability tags.

Overview:

Expand All @@ -19,7 +19,8 @@ Overview:

Supported tags and respective `Dockerfile` links:

- `7.2`, `latest` [_(Dockerfile)_]
- `8.0`, `8`, `latest` [_(Dockerfile)_]
- `7.2`, `7` [_(Dockerfile)_]

All images built for `linux/amd64` and `linux/arm64`

Expand Down

0 comments on commit e4932e7

Please sign in to comment.