Go to file
2019-05-10 11:45:20 +02:00
assets fix docker testing 2017-10-13 16:44:25 +02:00
test@0d623adeab fix(core): update 2019-05-10 11:45:20 +02:00
ts fix(core): update 2019-05-10 11:45:20 +02:00
.gitignore fix(core): update 2019-05-10 11:45:20 +02:00
.gitlab-ci.yml update ci 2017-10-07 16:48:44 +02:00
cli.js fix(update to latest standards): update 2018-07-21 13:32:51 +02:00
cli.ts.js fix(update to latest standards): update 2018-07-21 13:32:51 +02:00
Dockerfile update 2017-10-13 17:50:31 +02:00
npmextra.json fix(core): update 2019-05-10 11:45:20 +02:00
package-lock.json fix(core): update 2019-05-10 11:45:20 +02:00
package.json fix(core): update 2019-05-10 11:45:20 +02:00
README.md fix(core): update 2019-05-10 11:45:20 +02:00
tslint.json fix(core): update 2019-05-10 11:45:20 +02:00

npmdocker

develop npm modules cross platform with docker

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

Why does this package exist?

Sometimes you want a clean and fresh linux environment everytime you test your package. Usually this is the default i CI, but locally behaviour tends to defer.

Where does it work

The npmdocker package works in everywhere where the docker cli is available. e.g.:

  • docker toolbox
  • native docker application
  • docker in docker
  • mounted docker.sock

How do I use it?

create a npmextra.json in the project's root directory

{
  "npmdocker": {
    "baseImage": "hosttoday/ht-docker-node:npmts",
    "command": "npmci test stable",
    "dockerSock": false
  }
}
option description
baseImage the base image that is the context for your project
command the cli command to run within the the project's directory inside the docker container
dockersSock wether or not the testcontainer will have access to the docker.sock of the host

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