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.