dir( './deploy-this' )

This commit is contained in:
Artur 2024-10-03 06:14:19 +02:00
parent 4ba348bf60
commit 419ecdf1cb
1 changed files with 11 additions and 7 deletions

View File

@ -4,13 +4,17 @@ pipeline {
stages{
stage('create arti-angular-app') {
steps {
script{
def nxinx_build ="docker build --file angular.dockerfile -t arti-angular-app ."
sh(nxinx_build);
def start_aaa ="docker compose --file deploy-dc.yml up --detach "
sh(start_aaa);
}
dir( './deploy-this' ){
script{
def nxinx_build ="docker build --file angular.dockerfile -t arti-angular-app ."
sh(nxinx_build);
def start_aaa ="docker compose --file deploy-dc.yml up --detach "
sh(start_aaa);
}
}
}
}
}