1podman-machine-ls(1)() podman-machine-ls(1)()
2
3
4
6 podman-machine-list - List virtual machines
7
8
10 podman machine list [options]
11
12
13 podman machine ls [options]
14
15
17 List Podman managed virtual machines.
18
19
20 Podman on macOS requires a virtual machine. This is because containers
21 are Linux - containers do not run on any other OS because containers'
22 core functionality is tied to the Linux kernel.
23
24
26 --format=format
27 Format list output using a Go template.
28
29
30 Valid placeholders for the Go template are listed below:
31
32
33 ┌────────────┬────────────────────────────────┐
34 │Placeholder │ Description │
35 ├────────────┼────────────────────────────────┤
36 │.Name │ VM name │
37 ├────────────┼────────────────────────────────┤
38 │.Created │ Time since VM creation │
39 ├────────────┼────────────────────────────────┤
40 │.LastUp │ Time since the VM was last run │
41 ├────────────┼────────────────────────────────┤
42 │.VMType │ VM type │
43 └────────────┴────────────────────────────────┘
44
45 --help
46 Print usage statement.
47
48
49 --noheading
50 Omit the table headings from the listing of pods.
51
52
54 $ podman machine list
55
56 $ podman machine ls --format {{.Name}}\t{{.VMType}}\t{{.Created}}\t{{.LastUp}}\n
57
58
59
61 podman-machine(1)
62
63
65 March 2021, Originally compiled by Ashley Cui acui@redhat.com
66 ⟨mailto:acui@redhat.com⟩
67
68
69
70 podman-machine-ls(1)()