1podman-varlink(1)() podman-varlink(1)()
2
3
4
6 podman-varlink - Runs the varlink backend interface
7
8
10 podman varlink [options] uri
11
12
14 Starts the varlink service listening on uri that allows varlink clients
15 to interact with podman. If no uri is provided, a default URI will be
16 used depending on the user calling the varlink service. The default
17 for the root user is unix:/run/podman/io.podman. Regular users will
18 have a default uri of $XDG_RUNTIME_DIR/podman/io.podman. For example,
19 unix:/run/user/1000/podman/io.podman The varlink service should gener‐
20 ally be done with systemd. See Configuration below.
21
22
24 --help, -h
25
26
27 Print usage statement
28
29
30 --timeout, -t
31
32
33 The time until the varlink session expires in milliseconds. The default
34 is 1 second. A value of 0 means no timeout and the session will not
35 expire.
36
37
39 Run the podman varlink service accepting all default options.
40
41
42 $ podman varlink
43
44
45
46 Run the podman varlink service with an alternate URI and accept the
47 default timeout.
48
49
50 $ podman varlink unix:/tmp/io.podman
51
52
53
54 Run the podman varlink service manually with a 5 second timeout.
55
56
57 $ podman varlink --timeout 5000
58
59
60
62 Users of the podman varlink service should enable the io.podman.socket
63 and io.podman.service. This is the preferred method for running the
64 varlink service.
65
66
67 You can do this via systemctl.
68
69
70 $ systemctl enable --now io.podman.socket
71
72
73
75 podman(1), systemctl(1)
76
77
79 April 2018, Originally compiled by Brent Baudebbaude@redhat.com
80 ⟨mailto:bbaude@redhat.com⟩
81
82
83
84 podman-varlink(1)()