docker-based wrapper for quick nodejs experiments based on alpine+node image
- Docker (known working versions:
19.03.12)
If you decide to clone the repo, you can first build the docker image:
make build
Then you should be able to open a noddy container with bash session
noddy run
Note: Alternatively, you can use
make setupand instead of doing the local docker build, you pull latest image from Docker Hub.
You can afterwards use node and npm or run any .js files on src folder (like example.js).
If you don't wish to clone the repo, you can spin up a noddy container with:
docker run \
--name noddy \
-v $(pwd)/src:/var/src \
--rm -ti \
filfreire/noddy:latest \
/bin/bash
You can use the following tools inside noddy:
- bash
- node
- npm
- vim
- tmux
- jq
- curl
- wget
- coreutils
This tiny project was done for personal use, and still needs some minor things to be properly finished. Feel free to open an issue or submit a pull-request!
You can run make build to build the image locally.
noddy's logo was designed by Inês Freire (@inestfreire)