-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Description
I am trying to run this code but it's not working,
I can run docker-compose.yml with docker cli without any problem.
var Dockerode = require('dockerode');
var DockerodeCompose = require('dockerode-compose');
var docker = new Dockerode();
var compose = new DockerodeCompose(docker, 'docker-compose.yml', 'test_hello');
(async () => {
await compose.pull();
var state = await compose.up();
console.log(state);
})();
if I do like that
await compose.pull(null, { verbose: true });
it's working.
what is the problem ??
Metadata
Metadata
Assignees
Labels
No labels