1podman-remote.conf(5)()                                podman-remote.conf(5)()
2
3
4

NAME

6       podman-remote.conf - configuration file for the podman remote client
7
8

DESCRIPTION

10       The  libpod.conf  file  is the default configuration file for all tools
11       using libpod to manage containers.
12
13
14       The podman-remote.conf file is the default configuration file  for  the
15       podman  remote client.  It is in the TOML format.  It is primarily used
16       to keep track of the user's remote connections.
17
18

CONNECTION OPTIONS

20       destination = ""
21         The hostname or IP address of the remote system
22
23
24       username = ""
25         The username to use when connecting to the remote system
26
27
28       default = bool
29         Denotes whether the connection is  the  default  connection  for  the
30       user.  The default connection
31         is  used  when  the user does not specify a destination or connection
32       name to podman.
33
34
35       port = int
36         Use an alternative port for the ssh connections.  The default port is
37       22.
38
39
40       identity_file = ""
41         Use an alternative location for the ssh private key
42
43
44       ignore_hosts = bool
45         Don't match the remote ssh host key with known hosts
46
47

EXAMPLE

49       The  following  example  depicts  a configuration file with two connec‐
50       tions.  One of the connections is designated as the default connection.
51
52
53              [connections]
54                  [connections.host1]
55                  destination = "host1"
56                  username = "homer"
57                  default = true
58
59                  [connections.host2]
60                  destination = "192.168.122.133"
61                  username = "fedora"
62                  port = 2222
63
64
65

FILES

67       /$HOME/.config/containers/podman-remote.conf, default location for  the
68       podman remote configuration file
69
70

HISTORY

72       May   2019,   Originally   compiled   by  Brent  Baudebbaude@redhat.com
73       ⟨mailto:bbaude@redhat.com⟩
74
75
76
77                                                       podman-remote.conf(5)()
Impressum