| category | Introduction |
|---|
docker-compose is a small library that allows you to run docker-compose (which is still required) using Node.js. This is useful to bootstrap test environments.
npm install --save-dev docker-composeTo import commands, please use this import statement:
import * as compose from 'docker-compose'You can also import only the required commands:
import { run, upAll } from 'docker-compose'- During testing we noticed that
docker composeseems to send it's exit code also commands don't seem to have finished. This doesn't occur for all commands, but for example withstopordown. We had the option to wait for stopped / removed containers using third party libraries but this would make bootstrappingdocker-composemuch more complicated for the users. So we decided to use asetTimeout(500)workaround. We're aware this is not perfect but it seems to be the most appropriate solution for now. Details can be found in the v2 PR discussion (we're happy to get help here).