# Docker-NodeJS-Ubuntu **Repository Path**: mirrors_killme2008/Docker-NodeJS-Ubuntu ## Basic Information - **Project Name**: Docker-NodeJS-Ubuntu - **Description**: Build a docker image that runs node.js application in ubuntu. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Intro Build a docker image to run node.js application in ubuntu. # Build ``` git clone https://github.com/killme2008/Docker-NodeJS-Ubuntu.git cd Docker-NodeJS-Ubuntu.git docker build -t dennis/node-js . docker run -p 47516:8080 -d dennis/node-js ``` Test it: ``` curl -X GET http://localhost:47516/ ``` It should out put: ``` Hello World ``` Or you can put the link into browser to see it.