1podman-system-connection-add(1)() podman-system-connection-add(1)()
2
3
4
6 podman-system-connection-add - Record destination for the Podman ser‐
7 vice
8
9
11 podman system connection add [options] name destination
12
13
15 Record ssh destination for remote podman service(s). The ssh destina‐
16 tion is given as one of:
17 - [user@]hostname[:port]
18 - ssh://[user@]hostname[:port]
19 - unix://path
20 - tcp://hostname:port
21
22
23 The user will be prompted for the remote ssh login password or key file
24 pass phrase as required. The ssh-agent is supported if it is running.
25
26
28 --default=false, -d
29 Make the new destination the default for this user.
30
31
32 --identity=path
33 Path to ssh identity file. If the identity file has been encrypted,
34 Podman prompts the user for the passphrase. If no identity file is
35 provided and no user is given, Podman defaults to the user running the
36 podman command. Podman prompts for the login password on the remote
37 server.
38
39
40 --port=port, -p
41 Port for ssh destination. The default value is 22.
42
43
44 --socket-path=path
45 Path to the Podman service unix domain socket on the ssh destination
46 host
47
48
50 $ podman system connection add QA podman.example.com
51
52 $ podman system connection add --identity ~/.ssh/dev_rsa production ssh://root@server.example.com:2222
53
54 $ podman system connection add testing unix:///run/podman/podman.sock
55
56 $ podman system connection add debug tcp://localhost:8080
57
58
59
61 podman-system(1) , podman-system-connection(1) , containers.conf(5)
62
63
65 June 2020, Originally compiled by Jhon Honce (jhonce at redhat dot com)
66
67
68
69 podman-system-connection-add(1)()