An open API service indexing awesome lists of open source software.

https://github.com/null-none/docker-nextjs

Dockerise React Application (Next.js)
https://github.com/null-none/docker-nextjs

docker nextjs react react-nextjs

Last synced: about 1 month ago
JSON representation

Dockerise React Application (Next.js)

Awesome Lists containing this project

README

          

# Docker Nextjs

## Getting Started

First, run the development server:

```bash
docker build -t docker_nextjs:developement .

# Docker publish example onto port 3000
docker run --publish 3000:3000 docker_nextjs:developement

# List your containers
docker container ls -a
```