mirror of
https://github.com/containers/podman.git
synced 2025-08-23 17:22:30 +08:00

The driver is now hardcoded again, and there can only be one type of mounts at a time (which one changes over time) Revert "Make it possible to select the volume driver" This reverts commit 6630e5cf66cf76aefcfe9caebe5df4f37dd0bdd5. Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
23 lines
600 B
Go
23 lines
600 B
Go
package define
|
|
|
|
import "net/url"
|
|
|
|
type InitOptions struct {
|
|
CPUS uint64
|
|
DiskSize uint64
|
|
IgnitionPath string
|
|
Image string
|
|
Volumes []string
|
|
IsDefault bool
|
|
Memory uint64
|
|
Name string
|
|
TimeZone string
|
|
URI url.URL
|
|
Username string
|
|
ReExec bool
|
|
Rootful bool
|
|
UID string // uid of the user that called machine
|
|
UserModeNetworking *bool // nil = use backend/system default, false = disable, true = enable
|
|
USBs []string
|
|
}
|