docker-compose
docker-compose copied to clipboard
Manage Docker-Compose via Node.js
https://pdmlab-oss.slack.com and https://gitter.im/pdmlab/ should be closed in favor of GitHub discussions
Use case: I'm implementing a wait-for-logs strategy to determine container readiness. I could do polling and repeatedly call logs at some interval, but this is inefficient as I end up...
I am using this library to run browser tests in a dockerized environment. This works well, but I have another scenario when the browser tests themselves need to run in...
I'm having difficulty using compose.exec. Part of this is because I think the docs are wrong. Here's what docs say: `exec(container, command, options)` However, you definitely have to include information...
This PR Implaments Streaming API and class API ``` const cwd = process.cwd() const dockerCompose = require('docker-compose/class') const compose = new dockerCompose({ cwd }) compose.upAll() compose.upAllStream() compose.logsStream() ``` Will Write...
I'm using this project to create a CLI that wraps some docker-compose stuff to spin up a local environment. It would be nice to be able to have a command...
When I run tests(jest) for the application inside Gitlab CI this error is manifested: spawn docker-compose ENOENT at node_modules/testcontainers/dist/docker-compose/functions/docker-compose-up.js:37:15 at Generator.throw () at rejected (node_modules/testcontainers/dist/docker-compose/functions/docker-compose-up.js:6:65) I have some docker-compose file...
I'm using docker-desktop on windows and having issues when trying to pass an env object to any compose command.\ Happens even if env is just an empty object Its not...
Hi, might it be feasable to support `watch` as a subcommand in the future? See here: https://docs.docker.com/compose/file-watch/ KR
## Context We have a Docker Compose cluster that we're using to run some tests over night. Our application logs quite a bit to stdout and stderr. After an hour...