I have a node JS application which i run on EC2.
This app runs fine on EC2 machine and when i do
https://domain-name-of-ec2:3000
It loads the application.
Now i am trying to containerize this application and created a docker file,image and ran container.
It shows container ran success and docker ps shows container running. I used below command
docker run -d image-id -p 3001:3000
Now when i try to load page its done not work.I am using below url
https://domain-name-of-ec2:3001
