Project Solution: Running the App
View the project running in development and production mode.
We'll cover the following...
Launch in development mode
Launch the quiz in development mode with auto-building, source maps, and application restarts using the docker-compose.yml configuration in the ./usercode project root:
cd quiz
docker-compose up
The application is accessible via NGINX at http://{nginx_container_IP}:80.
Additionally, you can access:
- The Node.js application directly at port
http://{nodejs_container_IP}:8000. - The Node.js debugger at port
{nodejs_container_IP}:9229.
You can find the containerās IP using: ...
Ask