Simple Docker image running a Node.js server with nodejs-info
Create and run the new container as you would normally do:
docker run -d \
--name nodejs-info \
--net=host \
ei99070/docker-nodejs-infoBy default the server runs on port 3000, but this can be changed by specifying the PORT environment variable.
docker run -d \
--name nodejs-info \
--net=host \
-e PORT=<alternative port> \
ei99070/docker-nodejs-infoMIT