Sets whether Docker-in-Docker support is enabled. When enabled, container security is relaxed to allow nested container builds. Uses `Option ` so `None` defers to config-file defaults.
(mut self, enabled: Option<bool>)
| 192 | /// When enabled, container security is relaxed to allow nested container builds. |
| 193 | /// Uses `Option<bool>` so `None` defers to config-file defaults. |
| 194 | pub fn dind(mut self, enabled: Option<bool>) -> Self { |
| 195 | self.dind = enabled; |
| 196 | self |
| 197 | } |
| 198 | |
| 199 | /// Sets whether the container runs in privileged mode. |
| 200 | /// When enabled, the container has full access to host devices. |
no outgoing calls