21 lines
413 B
Plaintext
21 lines
413 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('Checkout') {
|
||
|
steps {
|
||
|
checkout scm
|
||
|
}
|
||
|
}
|
||
|
stage('Build') {
|
||
|
steps {
|
||
|
script {
|
||
|
docker.build('test.trianta.dev:latest')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
stage('Deploy') {
|
||
|
sh 'docker run -p 3466:3466 test.trianta.dev'
|
||
|
}
|
||
|
}
|
||
|
}
|