Skip to content

Commit

Permalink
ci: 修改jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
liuruibin committed Oct 13, 2023
1 parent 45c5d34 commit e2bb296
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ pipeline {
def images = ['jmeter:${JMETER_TAG}',
'kafka:3.5.1',
'mysql:8.0.34',
'redis:7.0.12-alpine',
'redis:7.2.0-alpine',
'minio:RELEASE.2023-08-09T23-30-22Z',
'prometheus:v2.42.0',
'node-chromium:4.10.0',
Expand All @@ -293,7 +293,7 @@ pipeline {
${IMAGE_PREFIX}/jmeter:${JMETER_TAG} \\
${IMAGE_PREFIX}/kafka:3.5.1 \\
${IMAGE_PREFIX}/mysql:8.0.34 \\
${IMAGE_PREFIX}/redis:7.0.12-alpine \\
${IMAGE_PREFIX}/redis:7.2.0-alpine \\
${IMAGE_PREFIX}/minio:RELEASE.2023-08-09T23-30-22Z \\
${IMAGE_PREFIX}/prometheus:v2.42.0 \\
${IMAGE_PREFIX}/node-firefox:4.10.0 \\
Expand Down
1 change: 1 addition & 0 deletions metersphere/docker-compose-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ services:
environment:
MYSQL_DATABASE: ${MS_MYSQL_DB}
MYSQL_ROOT_PASSWORD: ${MS_MYSQL_PASSWORD}
TZ: "Asia/Shanghai"
ports:
- ${MS_MYSQL_PORT}:3306
volumes:
Expand Down
6 changes: 4 additions & 2 deletions metersphere/docker-compose-prometheus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ services:
prometheus:
image: ${MS_IMAGE_PREFIX}/prometheus:v2.42.0
container_name: ms-prometheus
environment:
TZ: "Asia/Shanghai"
volumes:
- ms-prometheus-conf:/etc/prometheus/
- ms-prometheus-data:/prometheus
- ms-prometheus-conf:/etc/prometheus/
- ms-prometheus-data:/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
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.0.12-alpine
image: ${MS_IMAGE_PREFIX}/redis:7.2.0-alpine
container_name: redis
healthcheck:
test: ["CMD", "redis-cli", "ping"]
Expand Down

0 comments on commit e2bb296

Please sign in to comment.