azure-nodejs-webapp
Created a NodeJS app and deployed it on Azure Also contaizerized the app using docker
check this : http://rptr-nodejs-webapp.azurewebsites.net/ code : https://github.com/rptrcode/azure-nodejs-webapp
deployment steps:
docker run -p 49160:3001 -d rptr/nodets
Test :
curl -i localhost:49160
Print the output of your app:
# get container id
docker ps
#print logs
docker logs container_id
docker ps
# enter inside docker container
docker exec -it container_id /bin/bash