i have a node js angular application which i am trying to containerize it.
- i am using Docker file to build the image and run the docker
- i am not getting any error and the build is success Node.js build
i have a node js angular application which i am trying to containerize it.
Since your node.js angular application is running on port 4100. You need expose that port using port mapping.
docker run -itd -p 4100:4100 myimage:v1
NOTE: -p option will expose container port on to the host port.
Now you can access your application at http://host-ip:4100
Hope this helps.