Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazu69/docker-ndenv
Docker image based on centos with multi version node.js (ndenv)
https://github.com/kazu69/docker-ndenv
Last synced: 19 days ago
JSON representation
Docker image based on centos with multi version node.js (ndenv)
- Host: GitHub
- URL: https://github.com/kazu69/docker-ndenv
- Owner: kazu69
- Created: 2014-04-10T07:18:15.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-13T06:35:10.000Z (over 10 years ago)
- Last Synced: 2023-03-23T22:15:08.416Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-ndenv
============Create a dokcer container that can take advantage of multiple versions of node.js using ndenv.
## Usage
Add to ```project/.node-version``` multiple versions.
For example below```text
v0.10.25
v0.10.26
v0.11.0
```You can dcoker provisioning in VM using Vagrant
```sh
# provisioning
vagrant up
```You can use docker in VM.
```
vagrant ssh
sudo docker run -i -t kazu69/node_versions (or you container tag) /bin/bash
```if not using Vagrant
```
cd project && docker build -t TAG .
```