JSPM

  • Created
  • Published
  • Downloads 70
  • Score
    100M100P100Q82348F
  • License MIT

Utilities to run commands in local docker containers.

Package Exports

  • @goldstack/utils-docker
  • @goldstack/utils-docker/dist/src/utilsDocker.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@goldstack/utils-docker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

npm version

Goldstack Docker Utils

This library contains tools to run Docker images locally or as part of a CI/CD build process.

This utility has been developed for the Goldstack starter project builder. Check it out for starting your next project ❤️

Installation

npm install @goldstack/utils-docker

Usage

import { runDocker } from '@goldstack/utils-docker';

await runDocker({
  image: 'my-image',
  command: 'echo hello',
});

See utilsDocker.ts.