You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
969 B
38 lines
969 B
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage ('Create MongoDB Container') {
|
|
steps {
|
|
mkdir -p /home/ubuntu/mongo
|
|
}
|
|
}
|
|
|
|
stage ('Running MongoDB Container') {
|
|
steps {
|
|
sudo docker run -d --name mongo-db -v /home/ubuntu/mongo:/data/db -p 27017:27017 mongo:latest
|
|
}
|
|
}
|
|
}
|
|
|
|
post {
|
|
always {
|
|
|
|
}
|
|
success {
|
|
// office365ConnectorSend webhookUrl: "${env.TEAMS_URL}"
|
|
// message: 'Alerts created and updated.',
|
|
// status: 'Success',
|
|
// color: '#00FF00'
|
|
// cleanWs()
|
|
echo "Success"
|
|
}
|
|
failure {
|
|
// office365ConnectorSend webhookUrl: "${env.TEAMS_URL}",
|
|
// message: 'Alert create and update failed',
|
|
// status: 'Failure',
|
|
// color: '#FF0000'
|
|
echo "Failure"
|
|
}
|
|
}
|
|
} |