NAME
podman-system-connection-add - Record destination for the Podman serviceSYNOPSIS
podman system connection add [options] name destinationDESCRIPTION
Record ssh destination for remote podman service(s). The ssh destination is given as one of:- [user@]hostname[:port]
- ssh://[user@]hostname[:port]
- unix://path
- tcp://hostname:port
OPTIONS
--default, -d
Make the new destination the default for this user. The default is false.--identity=path
Path to ssh identity file. If the identity file has been encrypted, Podman prompts the user for the passphrase. If no identity file is provided and no user is given, Podman defaults to the user running the podman command. Podman prompts for the login password on the remote server.--port, -p=port
Port for ssh destination. The default value is 22.--socket-path=path
Path to the Podman service unix domain socket on the ssh destination hostEXAMPLE
$ podman system connection add QA podman.example.com $ podman system connection add --identity ~/.ssh/dev_rsa production ssh://[email protected]:2222 $ podman system connection add testing unix:///run/podman/podman.sock $ podman system connection add debug tcp://localhost:8080