From b2a9a1245df6fe3c6f3a37e44f1c199315ad6c85 Mon Sep 17 00:00:00 2001 From: Junghoon Ban Date: Fri, 10 Nov 2023 16:49:48 +0900 Subject: [PATCH] Update CI.adoc to support JDK 17. --- CI.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CI.adoc b/CI.adoc index 58d9169e21..5fd7fc2638 100644 --- a/CI.adoc +++ b/CI.adoc @@ -16,7 +16,7 @@ All of these use cases are great reasons to essentially run what the CI server d IMPORTANT: To do this you must have Docker installed on your machine. -1. `docker run -it --mount type=bind,source="$(pwd)",target=/spring-data-redis-github springci/spring-data-openjdk8-with-redis-6.0:latest /bin/bash` +1. `docker run -it --mount type=bind,source="$(pwd)",target=/spring-data-redis-github springci/spring-data-openjdk17-with-redis-6.2:latest /bin/bash` + This will launch the Docker image and mount your source code at `spring-data-redis-github`. + @@ -30,7 +30,7 @@ Since the container is binding to your source, you can make edits from your IDE If you need to package things up, do this: -1. `docker run -it --mount type=bind,source="$(pwd)",target=/spring-data-redis-github adoptopenjdk/openjdk8:latest /bin/sh` +1. `docker run -it --mount type=bind,source="$(pwd)",target=/spring-data-redis-github openjdk:17 /bin/sh` + This will launch the Docker image and mount your source code at `spring-data-redis-github`. +