dockerode-compose
dockerode-compose copied to clipboard
Cannot read properties of undefined (reading 'indexOf')
Cannot read properties of undefined (reading 'indexOf')
Here's my docker-compose file:
version: '3'
services:
lucidlink:
container_name: lucidlink
build:
context: ../../
dockerfile: Dockerfile
target: lucidlink
ports:
- "7778:7778"
Init code:
const dockerCompose = new DockerodeCompose(this.docker, this.options.dockerComposePath, 'wats-test');
await dockerCompose.pull();
await dockerCompose.up({
verbose: true
});