Skip to content

Commit

Permalink
Raised version for the new release
Browse files Browse the repository at this point in the history
  • Loading branch information
mabrarov committed Nov 13, 2020
1 parent 5746fab commit 60f6cb1
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ mvnw.cmd clean package -Ddocker-maven-plugin.version=0.34-SNAPSHOT
1. Redis version

```bash
docker run --rm abrarov/redis:6.0.9-1.0.4
docker run --rm abrarov/redis:6.0.9-1.0.5
```

Expected output looks like:
Expand All @@ -53,7 +53,7 @@ mvnw.cmd clean package -Ddocker-maven-plugin.version=0.34-SNAPSHOT
1. [Redis CLI](https://github.com/redis/redis#playing-with-redis)

```bash
container_id="$(docker run -d abrarov/redis:6.0.9-1.0.4 redis-server)" && \
container_id="$(docker run -d abrarov/redis:6.0.9-1.0.5 redis-server)" && \
docker exec "${container_id}" redis-cli ping && \
docker rm -fv "${container_id}" > /dev/null
```
Expand All @@ -67,7 +67,7 @@ mvnw.cmd clean package -Ddocker-maven-plugin.version=0.34-SNAPSHOT
1. j2cli version

```bash
docker run --rm abrarov/j2cli:0.3.10-1.0.4
docker run --rm abrarov/j2cli:0.3.10-1.0.5
```

Expected output is:
Expand All @@ -89,7 +89,7 @@ Assuming the current directory is a directory where this repository is cloned.
* Test connection to Redis

```bash
docker run --rm --network redis_default abrarov/redis:6.0.9-1.0.4 redis-cli -h redis ping
docker run --rm --network redis_default abrarov/redis:6.0.9-1.0.5 redis-cli -h redis ping
```

Expected output is:
Expand All @@ -101,7 +101,7 @@ Assuming the current directory is a directory where this repository is cloned.
* Put some data into Redis

```bash
docker run --rm --network redis_default abrarov/redis:6.0.9-1.0.4 redis-cli -h redis set foo bar
docker run --rm --network redis_default abrarov/redis:6.0.9-1.0.5 redis-cli -h redis set foo bar
```

Expected output is:
Expand All @@ -125,7 +125,7 @@ Assuming the current directory is a directory where this repository is cloned.
* Test persistence of stored data

```bash
docker run --rm --network redis_default abrarov/redis:6.0.9-1.0.4 redis-cli -h redis get foo
docker run --rm --network redis_default abrarov/redis:6.0.9-1.0.5 redis-cli -h redis get foo
```

Expected output is:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ volumes:

services:
helper:
image: '${IMAGE_REGISTRY:-abrarov}/redis-helper:${PROJECT_VERSION:-1.0.4}'
image: '${IMAGE_REGISTRY:-abrarov}/redis-helper:${PROJECT_VERSION:-1.0.5}'
read_only: true
volumes:
- *helper-dir

init:
image: '${IMAGE_REGISTRY:-abrarov}/redis-init:${PROJECT_VERSION:-1.0.4}'
image: '${IMAGE_REGISTRY:-abrarov}/redis-init:${PROJECT_VERSION:-1.0.5}'
command: *helper-wrapper-script
environment:
INIT_COMMAND: '/run.sh'
Expand All @@ -38,7 +38,7 @@ services:
- 'helper:ro'

redis:
image: '${IMAGE_REGISTRY:-abrarov}/redis:${REDIS_VERSION:-6.0.9}-${PROJECT_VERSION:-1.0.4}'
image: '${IMAGE_REGISTRY:-abrarov}/redis:${REDIS_VERSION:-6.0.9}-${PROJECT_VERSION:-1.0.5}'
command:
- *helper-dockerize
- '-wait'
Expand Down
2 changes: 1 addition & 1 deletion helper-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<artifactId>helper-image</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion j2cli-builder-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<artifactId>j2cli-builder-image</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion j2cli-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<artifactId>j2cli-dist</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion j2cli-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<artifactId>j2cli-image</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
<packaging>pom</packaging>

<scm>
Expand Down
2 changes: 1 addition & 1 deletion redis-builder-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<artifactId>redis-builder-image</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion redis-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<artifactId>redis-dist</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion redis-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<artifactId>redis-image</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion redis-init-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.fabric8.dmp.samples</groupId>
<artifactId>redis-builder-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<artifactId>redis-init-image</artifactId>
Expand Down

0 comments on commit 60f6cb1

Please sign in to comment.