mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00:00
Alias podman --context -> podman --connection podman context use -> podman system connection default podman context rm -> podman system connection rm podman context create -> podman system connection add podman context ls ->podman system connection ls podman context inspect ->podman system connection ls --json (For specified connections) Podman context is a hidden command, but can be used for existing scripts that assume Docker under the covers. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
28 lines
856 B
Go
28 lines
856 B
Go
package system
|
|
|
|
import (
|
|
"github.com/containers/podman/v4/cmd/podman/registry"
|
|
"github.com/containers/podman/v4/cmd/podman/validate"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
// ContextCmd skips creating engines (PersistentPreRunE/PersistentPostRunE are No-Op's) since
|
|
// sub-commands will obtain connection information to said engines
|
|
ContextCmd = &cobra.Command{
|
|
Use: "context",
|
|
Short: "Manage remote API service destinations",
|
|
Long: `Manage remote API service destination information in podman configuration`,
|
|
PersistentPreRunE: validate.NoOp,
|
|
RunE: validate.SubCommandExists,
|
|
PersistentPostRunE: validate.NoOp,
|
|
Hidden: true,
|
|
TraverseChildren: false,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: ContextCmd,
|
|
})
|
|
}
|