https://github.com/datencia/docker-nodejs
Docker image for Node.js v6.x, npm v5.6.0 & Yarn v1.3.2
https://github.com/datencia/docker-nodejs
docker dockerfile nodejs npm yarn
Last synced: 3 months ago
JSON representation
Docker image for Node.js v6.x, npm v5.6.0 & Yarn v1.3.2
- Host: GitHub
- URL: https://github.com/datencia/docker-nodejs
- Owner: datencia
- License: mit
- Created: 2018-02-25T19:53:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-07T19:00:46.000Z (over 8 years ago)
- Last Synced: 2025-07-26T12:47:07.980Z (11 months ago)
- Topics: docker, dockerfile, nodejs, npm, yarn
- Homepage: https://hub.docker.com/r/datencia/nodejs/
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/datencia/docker-nodejs) [](https://microbadger.com/images/datencia/nodejs) [](https://microbadger.com/images/datencia/nodejs)
# Docker image for Node.js v6.x, npm v5.6.0 & Yarn v1.3.2
> based on [datencia/base](https://hub.docker.com/r/datencia/base/)
## Inspired by
- https://github.com/beevelop/docker-nodejs
## Features
- Node 6
- Npm 5.6.0
- Yarn 1.3.2
## Usage
### Pull from Docker Hub
```bash
docker pull datencia/nodejs:latest
```
### Build from Dockerfile
```bash
docker build -t datencia/nodejs .
```
### Build from GitHub
```bash
docker build -t datencia/nodejs github.com/datencia/docker-nodejs
```
### Run image
```bash
docker run -it datencia/nodejs bash
```
### Use as base image
```Dockerfile
FROM datencia/nodejs:latest
```