diff --git a/README.md b/README.md
index 86b0b17..d2a4463 100644
--- a/README.md
+++ b/README.md
@@ -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:
@@ -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
```
@@ -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:
@@ -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:
@@ -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:
@@ -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:
diff --git a/docker-compose.yml b/docker-compose.yml
index 51bdb79..d076056 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -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'
@@ -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'
diff --git a/helper-image/pom.xml b/helper-image/pom.xml
index c6adbb3..b143152 100644
--- a/helper-image/pom.xml
+++ b/helper-image/pom.xml
@@ -5,7 +5,7 @@
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
helper-image
diff --git a/j2cli-builder-image/pom.xml b/j2cli-builder-image/pom.xml
index bb000e7..cf05883 100644
--- a/j2cli-builder-image/pom.xml
+++ b/j2cli-builder-image/pom.xml
@@ -5,7 +5,7 @@
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
j2cli-builder-image
diff --git a/j2cli-dist/pom.xml b/j2cli-dist/pom.xml
index 2234bcc..bf58002 100644
--- a/j2cli-dist/pom.xml
+++ b/j2cli-dist/pom.xml
@@ -5,7 +5,7 @@
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
j2cli-dist
diff --git a/j2cli-image/pom.xml b/j2cli-image/pom.xml
index 93a8ba1..508c504 100644
--- a/j2cli-image/pom.xml
+++ b/j2cli-image/pom.xml
@@ -5,7 +5,7 @@
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
j2cli-image
diff --git a/pom.xml b/pom.xml
index 00d4fea..b4fb9c1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
pom
diff --git a/redis-builder-image/pom.xml b/redis-builder-image/pom.xml
index 285cdf2..c43e8ac 100644
--- a/redis-builder-image/pom.xml
+++ b/redis-builder-image/pom.xml
@@ -5,7 +5,7 @@
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
redis-builder-image
diff --git a/redis-dist/pom.xml b/redis-dist/pom.xml
index fbc0052..c884b1f 100644
--- a/redis-dist/pom.xml
+++ b/redis-dist/pom.xml
@@ -5,7 +5,7 @@
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
redis-dist
diff --git a/redis-image/pom.xml b/redis-image/pom.xml
index 2763b7b..c340a44 100644
--- a/redis-image/pom.xml
+++ b/redis-image/pom.xml
@@ -5,7 +5,7 @@
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
redis-image
diff --git a/redis-init-image/pom.xml b/redis-init-image/pom.xml
index 48e908e..6f1d9d0 100644
--- a/redis-init-image/pom.xml
+++ b/redis-init-image/pom.xml
@@ -5,7 +5,7 @@
io.fabric8.dmp.samples
redis-builder-parent
- 1.0.4
+ 1.0.5
redis-init-image