From 5e0c098758b739906692d15bc733d4320e762d78 Mon Sep 17 00:00:00 2001 From: loparev Date: Wed, 14 May 2025 17:50:55 +0500 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20Je?= =?UTF-8?q?nkinsfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 91d6a7e..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,23 +0,0 @@ -pipeline { - agent any - - stages { - stage('Stop and Remove Existing Container') { - steps { - sh ''' - docker stop open_sesam || true - docker rm open_sesam || true - docker-compose down || true - ''' - } - } - - stage('Build and Run Container') { - steps { - sh ''' - docker-compose up --build -d - ''' - } - } - } -}