/** * **docker-machine** - Create Docker hosts locally and on cloud providers * * @domain `docker.com/machine` * @programs `docker-machine` * @version `0.16.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install docker.com/machine` * @homepage https://docs.gitlab.com/runner/executors/docker_machine.html * @buildDependencies `gnu.org/automake`, `go.dev`, `linux:curl.se` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.dockercommachine * console.log(pkg.name) // "docker-machine" * console.log(pkg.description) // "Create Docker hosts locally and on cloud providers" * console.log(pkg.programs) // ["docker-machine"] * console.log(pkg.versions[0]) // "0.16.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/docker-com/machine.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dockercommachinePackage: { /** * The display name of this package. */ name: 'docker-machine'; /** * The canonical domain name for this package. */ domain: 'docker.com/machine'; /** * Brief description of what this package does. */ description: 'Create Docker hosts locally and on cloud providers'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/docker.com/machine/package.yml'; homepageUrl: 'https://docs.gitlab.com/runner/executors/docker_machine.html'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install docker.com/machine'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +docker.com/machine -- $SHELL -i'; launchpadInstallCommand: 'launchpad install docker.com/machine'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['docker-machine']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['gnu.org/automake', 'go.dev', 'linux:curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.16.2']; aliases: readonly [] }; export type DockercommachinePackage = typeof dockercommachinePackage