Interface HostPathVolume

A volume mounted from a path on the host machine.

Note: This is an emphemeral volume which will not persist across container restarts or across different hosts. This is not something that most containers will need, but it offers a powerful escape hatch for some applications.

interface HostPathVolume {
    kind: "HostPathVolume";
    path: string;
}

Properties

Properties

kind: "HostPathVolume"
path: string

Generated using TypeDoc