semantic/vars/containers.groovy
weissmall 56415a21c7
All checks were successful
install — Successful
build — Successful
test — Successful
feat: dind container template
2026-03-12 11:49:37 +03:00

4 lines
183 B
Groovy

def containersGetDindTemplate(String containerName) {
return containerTemplate(name: containerName, image: 'docker:24.0-dind', ttyEnabled: true, command: 'cat', privileged: true)
}