Skip to content

Files

Latest commit

ef1f561 · Mar 30, 2024

History

History

nodejs-cicd-pipeline

Project: NodeJS project with CICD

This project aims to develop a Node.js application with CI/CD integration.

Overview

Introduction

  • Tech stack: Node.js, Docker
  • To gain a basic understanding of Docker, you could visit: Docker and devops-basic/docker repository

Prerequisite

  • Basic knowledge about Docker
  • Tools: docker, curl

1-Setup Environment

1.1-Build Docker Image

  • Run docker build -t node-backend .

1.2-Run Docker Container

  • Run docker run -d -p 3001:3001 node-backend

1.3-Verify Installation

2-Continuous Integration (CI) Pipeline Setup