feat(13): 配置prod、dev环境

This commit is contained in:
2025-10-08 20:58:17 +08:00
parent a921536f76
commit dfde255b3d
3 changed files with 10 additions and 10 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
pipeline {
agent none // 全局不指定,局部自己声明
environment {
IMAGE_NAME = 'lpt:0.0'
CONTAINER_NAME = 'LPT'
HOST_PORT = '5157'
CONTAINER_PORT = '5157'
IMAGE_NAME = 'lpt-dev:0.0'
CONTAINER_NAME = 'LPT-dev'
HOST_PORT = '5156'
CONTAINER_PORT = '5156'
}
stages {
stage('Build') {