From 56415a21c7700f7cdb3b1eb48fd71617080c0647 Mon Sep 17 00:00:00 2001 From: weissmall Date: Thu, 12 Mar 2026 11:49:37 +0300 Subject: [PATCH] feat: dind container template --- vars/containers.groovy | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 vars/containers.groovy diff --git a/vars/containers.groovy b/vars/containers.groovy new file mode 100644 index 0000000..898d5aa --- /dev/null +++ b/vars/containers.groovy @@ -0,0 +1,3 @@ +def containersGetDindTemplate(String containerName) { + return containerTemplate(name: containerName, image: 'docker:24.0-dind', ttyEnabled: true, command: 'cat', privileged: true) +}