Documentation

Docker

Complete guide to deploying your project with Docker

This deployment method requires you to be familiar with basic Docker usage and have production environment variables ready (database and third-party services). The project includes a built-in Dockerfile — just follow these steps to deploy.

Build the image
docker build -t next-vibe-ai .
Run the container
docker run -p 3000:3000 next-vibe-ai
Run in detached mode (background)
docker run -d -p 3000:3000 --name next-vibe-ai next-vibe-ai