Add container log path.
(path string)
| 497 | |
| 498 | // Add container log path. |
| 499 | func WithLogPath(path string) ContainerOpts { |
| 500 | return func(c *runtime.ContainerConfig) { |
| 501 | c.LogPath = path |
| 502 | } |
| 503 | } |
| 504 | |
| 505 | // WithRunAsUser sets the uid. |
| 506 | func WithRunAsUser(uid int64) ContainerOpts { |
no outgoing calls
no test coverage detected
searching dependent graphs…