(hostPath, containerPath string)
| 377 | } |
| 378 | |
| 379 | func WithVolumeMount(hostPath, containerPath string) ContainerOpts { |
| 380 | return WithIDMapVolumeMount(hostPath, containerPath, nil, nil) |
| 381 | } |
| 382 | |
| 383 | func WithIDMapVolumeMount(hostPath, containerPath string, uidMaps, gidMaps []*runtime.IDMapping) ContainerOpts { |
| 384 | return func(c *runtime.ContainerConfig) { |
no test coverage detected
searching dependent graphs…