@@ -32,7 +32,7 @@ This guide explains how to bootstrap and manage a test environment for Jedis usi
3232
3333## Workflow Steps
34341 . ** Start the test environment** by running the following command (examples below).
35- - For instance, to start the environment with Redis 8.0-M02 , use ` make start-test-env ` .
35+ - For instance, to start the environment with Redis 8.0-M01 , use ` make start-test-env ` .
36362 . ** Run tests** through your IDE, Maven, or other testing tools as needed.
37373 . ** Stop the test environment** by running the following command:
3838 - ` make stop-test-env `
@@ -43,9 +43,9 @@ This guide explains how to bootstrap and manage a test environment for Jedis usi
4343You can bootstrap the test environment for supported versions of Redis using the provided ` make ` targets.
4444
4545## Option 1: Using ` make ` Targets
46- To bring up the test environment for a specific Redis version (8.0-M02 , 7.4.1, 7.2.6, or 6.2.16), use the following command:
46+ To bring up the test environment for a specific Redis version (8.0-M01 , 7.4.1, 7.2.6, or 6.2.16), use the following command:
4747``` bash
48- make start-test-env version=8.0-M02 # Replace with desired version
48+ make start-test-env version=8.0-M01 # Replace with desired version
4949```
5050To stop test environment:
5151``` bash
@@ -58,10 +58,10 @@ make test-on-docker
5858
5959## Option 2: Using docker compose commands directly
6060Docker compose file can be found in ` src/test/resources/env ` folder.
61- - ** Redis 8.0-M02 **
61+ - ** Redis 8.0-M01 **
6262``` bash
6363rm -rf /tmp/redis-env-work
64- export REDIS_VERSION=8.0-M02
64+ export REDIS_VERSION=8.0-M01
6565docker compose up
6666```
6767- ** Redis 7.4.1, 7.2.6, 6.2.16,**
0 commit comments