我在Jenkins中使用以下管道阶段。 如何在调用apitestimage.inside? p>时公开端口5800
stage('build Dockerimage and run API-tests') {
steps{
script {
def apitestimage = docker.build('apitestimage', '--no-cache=true dockerbuild')
apitestimage.inside {
dir('testing'){
sh 'ctest'
}
}
sh 'docker rmi --force apitestimage'
}
}
}