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)
- Host: GitHub
- URL: https://github.com/null-none/docker-nextjs
- Owner: null-none
- License: mit
- Created: 2024-01-17T19:43:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-10T04:20:20.000Z (almost 2 years ago)
- Last Synced: 2025-01-26T09:28:30.835Z (about 1 year ago)
- Topics: docker, nextjs, react, react-nextjs
- Language: CSS
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```