You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 ??
The text was updated successfully, but these errors were encountered:
I am trying to run this code but it's not working,
I can run docker-compose.yml with docker cli without any problem.
if I do like that
await compose.pull(null, { verbose: true });
it's working.
what is the problem ??
The text was updated successfully, but these errors were encountered: