Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Answer to your question is. Nginx expose port on 8080 and Dockerfile has port 4200 to solve problem map the port to localhost port.
docker run -p 4200:8080 --name ng-nexct-approval-ui-container ng-nexct-approval-ui
Answer to your question is
docker run -p 4200:8080--name ng-nexct-approval-ui-container ng-nexct-approval-ui
docker run -p 8080:4200 :8080--name ng-nexct-approval-ui-container ng-nexct-approval-ui
docker run -p 8080:4200 --name ng-nexct-approval-ui-container ng-nexct-approval-ui
Answer to your questionsquestion is
Answer to your questions is