Struct lal::DockerRunFlags [] [src]

pub struct DockerRunFlags {
    pub interactive: bool,
    pub privileged: bool,
}

Flags for docker run that vary for different use cases

interactive should be on by default, but machine accounts should turn this off privileged is needed on some setups for gdb and other low level tools to work

NB: The derived default should only be used by tests (all false/zero)

Fields

Pass --interactive (allows ctrl-c on builds/scripts/shell commands)

Pass --privileged (situational)

Trait Implementations

impl Default for DockerRunFlags
[src]

[src]

Returns the "default value" for a type. Read more