1podman-start(1)() podman-start(1)()
2
3
4
6 podman-start - Start one or more containers
7
8
10 podman start [options] container ...
11
12
13 podman container start [options] container ...
14
15
17 Start one or more containers. You may use container IDs or names as
18 input. The attach and interactive options cannot be used to override
19 the --tty and --interactive options from when the container was cre‐
20 ated. If you attempt to start a running container with the --attach
21 option, podman will simply attach to the container.
22
23
25 --attach, -a
26
27
28 Attach container's STDOUT and STDERR. The default is false. This
29 option cannot be used when starting multiple containers.
30
31
32 --detach-keys=sequence
33
34
35 Override the key sequence for detaching a container. Format is a single
36 character [a-Z] or a comma separated sequence of ctrl-<value>, where
37 <value> is one of: a-z, @, ^, [, \\, ], ^ or _.
38
39
40 --interactive, -i
41
42
43 Attach container's STDIN. The default is false.
44
45
46 --latest, -l
47
48
49 Instead of providing the container name or ID, use the last created
50 container. If you use methods other than Podman to run containers such
51 as CRI-O, the last started container could be from either of those
52 methods.
53
54
55 The latest option is not supported on the remote client.
56
57
58 --sig-proxy=true|false
59
60
61 Proxy received signals to the process (non-TTY mode only). SIGCHLD,
62 SIGSTOP, and SIGKILL are not proxied. The default is true when attach‐
63 ing, false otherwise.
64
65
67 podman start mywebserver
68
69
70 podman start 860a4b231279 5421ab43b45
71
72
73 podman start --interactive --attach 860a4b231279
74
75
76 podman start -i -l
77
78
80 podman(1), podman-create(1)
81
82
84 November 2018, Originally compiled by Brent Baude bbaude@redhat.com
85 ⟨mailto:bbaude@redhat.com⟩
86
87
88
89 podman-start(1)()