https://github.com/johnufo/dockerize-nodejs
This project demonstrates how to Dockerize a simple Node.js service and deploy it to a remote server using GitHub Actions.
https://github.com/johnufo/dockerize-nodejs
cicd docker dockerfile github-actions js
Last synced: 7 months ago
JSON representation
This project demonstrates how to Dockerize a simple Node.js service and deploy it to a remote server using GitHub Actions.
- Host: GitHub
- URL: https://github.com/johnufo/dockerize-nodejs
- Owner: JohnUfo
- Created: 2025-06-12T16:12:46.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-06-29T15:37:42.000Z (7 months ago)
- Last Synced: 2025-06-29T16:37:22.468Z (7 months ago)
- Topics: cicd, docker, dockerfile, github-actions, js
- Language: JavaScript
- Homepage:
- Size: 733 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dockerized Node.js Service Deployment
This project demonstrates how to Dockerize a simple Node.js service and deploy it to a remote server using GitHub Actions.
👉 Project Page: [https://roadmap.sh/projects/dockerized-service-deployment](https://roadmap.sh/projects/dockerized-service-deployment)
## Features
- `/` route returns `Hello, world!`
- `/secret` route protected with Basic Auth, returns secret message
## Running Locally
```bash
git clone https://github.com/JohnUfo/dockerize-nodejs.git
cd dockerize-nodejs
npm install
node index.js