jenkins: add name to container on deploy

This commit is contained in:
Trianta 2024-09-17 19:14:33 -05:00
parent 98149cae07
commit bda79f51a6

2
Jenkinsfile vendored
View File

@ -15,7 +15,7 @@ pipeline {
}
stage('Deploy') {
steps {
sh 'docker run -d -p 3466:80 test.trianta.dev'
sh 'docker run -d -p 3466:80 --name test test.trianta.dev'
}
}
}