jenkins: detach container on deploy

This commit is contained in:
Trianta 2024-09-17 19:03:13 -05:00
parent 0e34226b43
commit e0c09898ae

2
Jenkinsfile vendored
View File

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