mahnunchik/nodejs-runtime is a docker image for easily running nodejs application by providing URL to its repository.
It is based on official nodejs base image.
mahnunchik/nodejs-runtime image assumes that you provide while running:
GIT_REPO environment variable that contains the path to git repositoryThe image assumes that your node application:
package.json the attribute: "scripts": {"start": "node <entrypoint_script_js>"}PORT environment variableInteractive mode:
docker run -i -t -p 8080:8080 -e "GIT_REPO=https://github.com/your-git-repo" mahnunchik/nodejs-runtime
Daemon mode:
docker run -d -p 8080:8080 -e "GIT_REPO=https://github.com/your-git-repo" mahnunchik/nodejs-runtime
Content type
Image
Digest
sha256:28402f97a…
Size
237.7 MB
Last updated
over 8 years ago
docker pull mahnunchik/nodejs-runtime