Skip to content

Commit

Permalink
fix: 升级redis安全版本
Browse files Browse the repository at this point in the history
  • Loading branch information
liuruibin committed Nov 14, 2024
1 parent 7aed056 commit a636bed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ pipeline {
script {
def images = ['mysql:8.0.38',
'kafka:3.7.1',
'redis:7.2.5-alpine',
'redis:7.2.6-alpine',
'minio:RELEASE.2024-05-07T06-41-25Z',
"metersphere-ce:${RELEASE}",
"metersphere-ee:${RELEASE}"
Expand All @@ -320,7 +320,7 @@ pipeline {
docker save ${IMAGE_PREFIX}/metersphere-ce:${RELEASE} \\
${IMAGE_PREFIX}/kafka:3.7.1 \\
${IMAGE_PREFIX}/mysql:8.0.38 \\
${IMAGE_PREFIX}/redis:7.2.5-alpine \\
${IMAGE_PREFIX}/redis:7.2.6-alpine \\
${IMAGE_PREFIX}/minio:RELEASE.2024-05-07T06-41-25Z > metersphere.tar
cd ..
Expand All @@ -329,7 +329,7 @@ pipeline {
docker save ${IMAGE_PREFIX}/metersphere-ee:${RELEASE} \\
${IMAGE_PREFIX}/kafka:3.7.1 \\
${IMAGE_PREFIX}/mysql:8.0.38 \\
${IMAGE_PREFIX}/redis:7.2.5-alpine \\
${IMAGE_PREFIX}/redis:7.2.6-alpine \\
${IMAGE_PREFIX}/minio:RELEASE.2024-05-07T06-41-25Z > metersphere.tar
cd ..
'''
Expand Down
2 changes: 1 addition & 1 deletion metersphere/docker-compose-redis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
redis:
image: ${MS_IMAGE_PREFIX}/redis:7.2.5-alpine
image: ${MS_IMAGE_PREFIX}/redis:7.2.6-alpine
container_name: redis
healthcheck:
test: ["CMD", "redis-cli", "ping"]
Expand Down

0 comments on commit a636bed

Please sign in to comment.