/** * **docker/cli** - Pack, ship and run any application as a lightweight container * * @domain `docker.com/cli` * @programs `docker` * @version `29.1.2` (68 versions available) * @versions From newest version to oldest. * * @install `launchpad install docker.com/cli` * @homepage https://www.docker.com/ * @buildDependencies `go.dev` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.dockercomcli * console.log(pkg.name) // "docker/cli" * console.log(pkg.description) // "Pack, ship and run any application as a lightwe..." * console.log(pkg.programs) // ["docker"] * console.log(pkg.versions[0]) // "29.1.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/docker-com/cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dockercomcliPackage: { /** * The display name of this package. */ name: 'docker/cli'; /** * The canonical domain name for this package. */ domain: 'docker.com/cli'; /** * Brief description of what this package does. */ description: 'Pack, ship and run any application as a lightweight container'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/docker.com/cli/package.yml'; homepageUrl: 'https://www.docker.com/'; githubUrl: 'https://github.com/docker/cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install docker.com/cli'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +docker.com/cli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install docker.com/cli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['docker']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['29.1.2', '29.1.1', '29.1.0', '29.0.4', '29.0.3', '29.0.2', '29.0.1', '28.5.2', '28.5.1', '28.5.0', '28.4.0', '28.3.3', '28.3.2', '28.3.1', '28.3.0', '28.2.2', '28.2.1', '28.2.0', '28.1.1', '28.1.0', '28.0.4', '28.0.3', '28.0.2', '28.0.1', '28.0.0', '27.5.1', '27.5.0', '27.4.1', '27.4.0', '27.3.1', '27.3.0', '27.2.1', '27.2.0', '27.1.2', '27.1.1', '27.1.0', '27.0.3', '27.0.2', '27.0.1', '26.1.5', '26.1.4', '26.1.3', '26.1.2', '26.1.1', '26.1.0', '26.0.2', '26.0.1', '26.0.0', '25.0.7', '25.0.6', '25.0.5', '25.0.4', '25.0.3', '25.0.2', '25.0.1', '25.0.0', '24.0.9', '24.0.8', '24.0.7', '24.0.6', '24.0.5', '23.0.15', '23.0.10', '23.0.9', '23.0.8', '23.0.7', '20.10.27', '20.10.26']; aliases: readonly [] }; export type DockercomcliPackage = typeof dockercomcliPackage