arti-angular-app/deploy-this/create-and-start-aaa.jenkin...

21 lines
471 B
Plaintext
Executable File

pipeline {
agent any
stages{
stage('create arti-angular-app') {
steps {
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);
}
}
}
}
}
}