/** * **docker-clean** - A script that cleans docker containers, images, volumes, and networks. * * @domain `github.com/ZZROTDesign/docker-clean` * @programs `docker-clean` * @version `2.0.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/ZZROTDesign/docker-clean` * @dependencies `gnu.org/bash`, `docker.com/cli` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomzzrotdesigndockerclean * console.log(pkg.name) // "docker-clean" * console.log(pkg.description) // "A script that cleans docker containers, images,..." * console.log(pkg.programs) // ["docker-clean"] * console.log(pkg.versions[0]) // "2.0.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/ZZROTDesign/docker-clean.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dockercleanPackage: { /** * The display name of this package. */ name: 'docker-clean'; /** * The canonical domain name for this package. */ domain: 'github.com/ZZROTDesign/docker-clean'; /** * Brief description of what this package does. */ description: 'A script that cleans docker containers, images, volumes, and networks. '; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/ZZROTDesign/docker-clean/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/ZZROTDesign/docker-clean'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/ZZROTDesign/docker-clean'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/ZZROTDesign/docker-clean -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/ZZROTDesign/docker-clean'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['docker-clean']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnu.org/bash', 'docker.com/cli']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.4']; aliases: readonly [] }; export type DockercleanPackage = typeof dockercleanPackage