dockerode-compose icon indicating copy to clipboard operation
dockerode-compose copied to clipboard

Cannot read properties of undefined (reading 'indexOf')

Open ffMathy opened this issue 1 year ago • 0 comments

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
});

ffMathy avatar Jun 03 '24 07:06 ffMathy