Paweł Niedzielski
Paweł Niedzielski
> Not sure if this is an issue (never tried this) but you're using `await` and `then` together. Technically this should not change much, `await` is basically a `Generator` wrapper...
It should be already possible to do using the `env` option. I just didn't find it documented in the actual docs (in contrast to `cwd` option and alike).
Highly possible that's how it would behave. Since we expect that we receive a "normal" output from the command, there is no error handling. I guess we could both take...
@jeremygiberson-at-privoro This comes up now and then, see #33 and #80. PR will definitely be welcome.
`docker-compose.dev.yml` is definitely not a standard name for configuration file. This library doesn't do anything fancy with configuration files and relies on normal execution of `docker-compose` binary. This means that...
Depending on the actual code we might be able to circumvent the issue by using `Buffer.slice` instead. But we would need to pinpoint the exact location where is happens in...
As far as I know, we are not performing any pre-processing for the service declaration file (configuration). We pass the file name as-is as a parameter to the `docker-compose` binary...
TypeScript is similar to JavaScript. After all, it's a superset of it. Commands being split like that help detect issues while writing code. While one could argue that `One` is...
@AlexZeitler I've read through the code and noticed that `--follow` flag will probably not work when one asks for a container that simply does not end. After all, promises are...
For anyone that stumbles upon this: build works fine even without the attached PR if `-wError` flags are removed. They are "just" warnings after all.