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 └────────────┴────────────────────────────────┘
46
47 --help
48 Print usage statement.
49
50
51 --noheading
52 Omit the table headings from the listing of pods.
53
54
56 $ podman machine list
57
58 $ podman machine ls --format {{.Name}}\t{{.VMType}}\t{{.Created}}\t{{.LastUp}}\n
59
60
61
63 podman-machine(1)
64
65
67 March 2021, Originally compiled by Ashley Cui acui@redhat.com
68 ⟨mailto:acui@redhat.com⟩
69
70
71
72 podman-machine-ls(1)()