This is a simple Node.js application used for Docker and Kubernetes exercises.
app.js
: The main Node.js application file.package.json
: Defines project metadata and dependencies.
-
Install Dependencies:
npm install
-
Start the Application:
npm start
The application will be accessible at http://localhost:3000
.
This application is designed to be containerized using Docker. You will typically create a Dockerfile
in this directory to build a Docker image for this application.