21 lines
483 B
Plaintext
Executable File
21 lines
483 B
Plaintext
Executable File
pipeline {
|
|
agent any
|
|
|
|
stages{
|
|
stage('create arti-angular-app') {
|
|
steps {
|
|
dir( '.' ){
|
|
script{
|
|
def nxinx_build ="docker build --file deploy-this/angular.dockerfile -t arti-angular-app ."
|
|
sh(nxinx_build);
|
|
def start_aaa ="docker compose --file deploy-this/deploy-dc.yml up --detach "
|
|
sh(start_aaa);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
} |