From 2f686bdd0e7ca63e883ceea4603b9472c384c8f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B5=D1=80=D0=B3=D0=B5=D0=B9=20=D0=A2=D0=BE=D0=BB?= =?UTF-8?q?=D1=81=D1=82=D1=8B=D1=85?= Date: Sun, 5 Apr 2026 21:55:20 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20Jenkinsfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 8e4a1bd..d0fbba8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -49,6 +49,11 @@ pipeline { sh "cp build/rdbDocker5/ncore-<%%RESERVED_NAME%%>.fdb /docker-projects/${params.STAND_ID}/db/<%%RESERVED_NAME%%>.fdb" sh "chown -R :312 /docker-projects/${params.STAND_ID}" sh "chmod -R g+w /docker-projects/${params.STAND_ID}" + script { + def content = readFile "/docker-projects/${params.STAND_ID}/docker-compose.yml" + def updatedContent = content.replaceAll('', params.STAND_ID) + writeFile file: "/docker-projects/${params.STAND_ID}/docker-compose.yml", text: updatedContent + } } }