Skip to content

theakashshukla/next_app

Repository files navigation

Next.js App with Docker & CI/CD

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

Running the Application on Docker

  1. Clone this repository to your local machine:
git clone https://github.com/theakashshukla/next_app.git
  1. Navigate to the project directory:
 cd next_app
  1. Start the application using Docker Compose:
docker-compose up --build
  1. Open your browser and navigate to http://localhost:3000 to view the application.

  2. Stop the application using Docker Compose:

docker-compose down
  1. Remove the application using Docker Compose:
docker-compose down --volumes