Sha256: f76683588c644f92389b34507573dfdac954d4a4bb64c3976d9d0eb15f182269
Contents?: true
Size: 618 Bytes
Versions: 45
Compression:
Stored size: 618 Bytes
Contents
require_relative 'containers/list_command' require_relative 'containers/exec_command' require_relative 'containers/inspect_command' require_relative 'containers/logs_command' class Kontena::Cli::ContainerCommand < Kontena::Command subcommand ["list", "ls"], "List grid containers", Kontena::Cli::Containers::ListCommand subcommand "exec", "Execute command inside a container", Kontena::Cli::Containers::ExecCommand subcommand "inspect", "Inspect the container", Kontena::Cli::Containers::InspectCommand subcommand "logs", "Show container logs", Kontena::Cli::Containers::LogsCommand def execute end end
Version data entries
45 entries across 45 versions & 1 rubygems