Go to file
2019-09-08 19:22:20 +02:00
.vscode fix(core): update 2019-08-15 18:50:13 +02:00
test fix(core): update 2019-09-08 19:22:20 +02:00
ts fix(core): update 2019-09-08 19:22:20 +02:00
.gitignore fix(core): update 2019-08-14 20:56:57 +02:00
.gitlab-ci.yml fix(core): update 2019-08-16 21:45:21 +02:00
.npmignore start Dockerfile for tests 2016-06-14 08:49:13 +02:00
docker-compose.yml fix(core): shift to new style 2018-07-16 23:52:50 +02:00
LICENSE Initial commit 2016-04-12 12:40:06 +02:00
npmextra.json fix(core): update 2019-08-14 20:56:57 +02:00
package-lock.json 1.0.53 2019-09-08 19:22:20 +02:00
package.json 1.0.53 2019-09-08 19:22:20 +02:00
README.md fix(core): update 2019-08-15 18:50:13 +02:00
tslint.json fix(core): update 2019-01-10 00:24:35 +01:00

@mojoio/docker

unofficial docker engine api abstraction package written in TypeScript

Status for master

build status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

import { DockerHost } from '@mojoio/docker'; // require Dockersock class

const run = async () => {
  const myDockerHost = new DockerHost(); // optional: you can pass a domain to the contructor, defaults to  /var/run/docker.sock

  const containers = await myDockerHost.getContainers(); // promise, resolve with an array of DockerContainers
};

For further information read the linked docs at the top of this readme.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer