Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theakashshukla/next_app
https://github.com/theakashshukla/next_app
cicd devops docker docker-template git githu-action github github-workflows nextjs nextjs-docker nextjs-template
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/theakashshukla/next_app
- Owner: theakashshukla
- Created: 2024-03-20T18:06:23.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-03-21T15:01:18.000Z (11 months ago)
- Last Synced: 2024-11-30T23:14:47.256Z (2 months ago)
- Topics: cicd, devops, docker, docker-template, git, githu-action, github, github-workflows, nextjs, nextjs-docker, nextjs-template
- Language: TypeScript
- Homepage:
- Size: 57.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Next.js App with Docker & CI/CD
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Running the Application on Docker
1. Clone this repository to your local machine:
```bash
git clone https://github.com/theakashshukla/next_app.git
```2. Navigate to the project directory:
```bash
cd next_app
```3. Start the application using Docker Compose:
```bash
docker-compose up --build
```4. Open your browser and navigate to `http://localhost:3000` to view the application.
5. Stop the application using Docker Compose:
```bash
docker-compose down
```6. Remove the application using Docker Compose:
```bash
docker-compose down --volumes
```