Skip to content

Commit

Permalink
Merge pull request #2 from zero-team-pro/update7
Browse files Browse the repository at this point in the history
Update7
  • Loading branch information
SemperPeritus committed Jul 10, 2022
2 parents e5de92c + e69cfb0 commit f5d6a34
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG REDIS_VERSION=6.2.6
ARG BUILDER_RUST_VERSION=1.60.0
ARG REDIS_VERSION=7.0.2
ARG BUILDER_RUST_VERSION=1.62.0

FROM redis:${REDIS_VERSION} AS redis
FROM rust:${BUILDER_RUST_VERSION} AS moduleBuilder
Expand All @@ -13,7 +13,7 @@ COPY --from=redis /usr/local/ /usr/local/

# https://github.com/RediSearch/RediSearch
ARG MODULE=RediSearch
ARG VERSION=v2.2.10
ARG VERSION=v2.4.9
WORKDIR /modules
RUN git clone --depth 1 --branch ${VERSION} https://github.com/${MODULE}/${MODULE}.git
WORKDIR /modules/${MODULE}
Expand All @@ -26,7 +26,7 @@ RUN cp "$(ls -d /modules/${MODULE}/bin/linux-*-release)/search/redisearch.so" ${

# https://github.com/RedisJSON/RedisJSON
ARG MODULE=RedisJSON
ARG VERSION=v2.0.6
ARG VERSION=v2.0.9
WORKDIR /modules
RUN git clone --depth 1 --branch ${VERSION} https://github.com/${MODULE}/${MODULE}.git
WORKDIR /modules/${MODULE}
Expand All @@ -37,7 +37,7 @@ RUN cp /modules/${MODULE}/target/release/librejson.so ${MODULE_PATH}/rejson.so

# https://github.com/RedisTimeSeries/RedisTimeSeries
ARG MODULE=RedisTimeSeries
ARG VERSION=v1.6.8
ARG VERSION=v1.6.16
WORKDIR /modules
RUN git clone --recursive --branch ${VERSION} https://github.com/${MODULE}/${MODULE}.git
WORKDIR /modules/${MODULE}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Default redis.conf can be enriched from environment variables.
Latest stable version.

## v* (Recommended)
Specific stable version. `v6.2.6` for example.
Specific stable version. `v7.0.2` for example.

## main
Latest `main` branch build. Should be stable, but doesn't have to be.
Expand All @@ -33,7 +33,7 @@ Do not use if you don't know what you do.
```
$ docker run -d --name redis zeroteampro/redis
# Alternative regsitry
$ docker run -d --name redis ams.ocir.io/ax4e0xrv7kjj/redis
$ docker run -d --name redis registry.zero-team.pro/redis
```

## Start instance with mounted storage
Expand Down

0 comments on commit f5d6a34

Please sign in to comment.