All checks were successful
install — Successful
build — Successful
test — Successful
4 lines
183 B
Groovy
4 lines
183 B
Groovy
def containersGetDindTemplate(String containerName) {
|
|
return containerTemplate(name: containerName, image: 'docker:24.0-dind', ttyEnabled: true, command: 'cat', privileged: true)
|
|
}
|