Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,36 +68,6 @@ jobs:
- NODE_VERSION: "10"
- VARIANT: "wheezy"

- stage: Build
env:
- NODE_VERSION: "4"
- VARIANT: "default"

- stage: Build
env:
- NODE_VERSION: "4"
- VARIANT: "alpine"

- stage: Build
env:
- NODE_VERSION: "4"
- VARIANT: "onbuild"

- stage: Build
env:
- NODE_VERSION: "4"
- VARIANT: "slim"

- stage: Build
env:
- NODE_VERSION: "4"
- VARIANT: "stretch"

- stage: Build
env:
- NODE_VERSION: "4"
- VARIANT: "wheezy"

- stage: Build
env:
- NODE_VERSION: "6"
Expand Down
62 changes: 0 additions & 62 deletions 4/Dockerfile

This file was deleted.

68 changes: 0 additions & 68 deletions 4/alpine/Dockerfile

This file was deleted.

6 changes: 0 additions & 6 deletions 4/architectures

This file was deleted.

12 changes: 0 additions & 12 deletions 4/onbuild/Dockerfile

This file was deleted.

67 changes: 0 additions & 67 deletions 4/slim/Dockerfile

This file was deleted.

62 changes: 0 additions & 62 deletions 4/stretch/Dockerfile

This file was deleted.

58 changes: 0 additions & 58 deletions 4/wheezy/Dockerfile

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ complete `Dockerfile`. In such cases, you can run a Node.js script by using the
Node.js Docker image directly:

```console
$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/app -w /usr/src/app node:4 node your-daemon-or-script.js
$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/app -w /usr/src/app node:8 node your-daemon-or-script.js
```

## Verbosity

Prior to 8.7.0, 6.11.4 and 4.8.4 the docker images overrode the default npm log
Prior to 8.7.0 and 6.11.4 the docker images overrode the default npm log
level from `warn` to `info`. However due to improvements to npm and new Docker
patterns (e.g. multi-stage builds) the working group reached a [consensus](https://github.com/nodejs/docker-node/issues/528)
to revert the log level to npm defaults. If you need more verbose output, please
Expand Down
Loading