0.0.1 • Published 4 years ago

nocker-engine v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

About

this implementation of docker engine still under Constructions , only the container api is working now,it's strongly typed

example

import DockerApi from 'docker-engine';
const dockerApi = new DockerApi('/var/run/docker.sock');
dockerApi.container.list()
.then((containersList) => {
  console.log(containersList.length);
});