feat: dind container template
All checks were successful
install — Successful
build — Successful
test — Successful

This commit is contained in:
Daniel Weissmall 2026-03-12 11:49:37 +03:00
parent fd47c1858a
commit 56415a21c7

3
vars/containers.groovy Normal file
View File

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