1. Home
  2. Running a Next.js App with Docker Compose: A Step-by-Step Guide

Running a Next.js App with Docker Compose: A Step-by-Step Guide

Reading TIme:4 min
Published on:October 19, 2023
nextjsdockerdocker-composeweb developmentcontainers

Header image showing Docker setup with Next.js

Introduction

Dockerizing your Next.js application can revolutionize your development workflow, enabling you to build, test, and deploy applications in consistent environments. By containerizing your app, you ensure it runs seamlessly across all platforms, whether you're working locally or deploying to the cloud. In this guide, we'll walk you through the process of setting up Docker for your Next.js app, exposing it on port 4000, and synchronizing your local files for efficient development.

Prerequisites

Before getting started, ensure you have the following installed on your system:

  • Docker (latest version)
  • Node.js (compatible with your Next.js app)
  • A basic understanding of Next.js and Docker

Step-by-Step Guide

1. Create a Dockerfile

Start by creating a Dockerfile in the root of your Next.js project. This file defines how your application will be containerized.

Dockerfile
# Use the official Node.js image as the base image
FROM node:18-alpine
 
# Set the working directory
WORKDIR /app
 
# Copy package.json and package-lock.json to the container
COPY package*.json ./
 
# Install dependencies
RUN npm install
 
# Copy the rest of the application files
COPY . .
 
# Build the Next.js application
RUN npm run build
 
# Expose the application on port 4000
EXPOSE 4000
 
# Start the application
CMD ["npm", "start"]
Dockerfile should not contain any extention.

Understanding This Step:

  • Base image selection: Uses node:18-alpine for a lightweight and efficient Node.js runtime.
  • Working directory setup: Ensures all commands execute inside the /app directory in the container.
  • Dependency installation: Installs app dependencies using npm install.
  • File addition: Copies application files to the container.
  • Build process: Builds the Next.js application for production.
  • Port setup: Configures port 4000 for external access.
  • Application start: Runs the app automatically when the container starts.

To optimize your Docker image, create a .dockerignore file in the root of your project. This file prevents unnecessary files and directories from being included in the Docker image.

.dockerignore
node_modules
npm-debug.log
dist
.next
.DS_Store
.env
.git
.dockerignore should not have any other name.

Key Benefits of This Step:

  • Reduces image size: Avoids including large or irrelevant files, such as node_modules.
  • Improves security: Keeps sensitive files like .env out of the Docker image.
  • Speeds up builds: Minimizes the time needed to create Docker images.

Adding a .dockerignore file helps reduce image size and speeds up the build process by excluding unnecessary files.

3. Create a docker-compose.yml File

For easier management, use Docker Compose to define and run multi-container Docker applications. Create a docker-compose.yml file:

docker-compose.yml
version: "3.8"
services:
  nextjs-app:
    build: .
    ports:
      - "4000:4000"
    volumes:
      - .:/app
    command: npm run dev

Advantages of Using Docker Compose:

  • Service management: Simplifies the process of defining and running containerized applications.
  • Port mapping: Connects the container’s port 4000 to your local machine’s port 4000.
  • Real-time updates: Links local files to the container for seamless development.
  • Ease of use: Allows for quick and consistent setup with minimal commands.

4. Build the Docker Image

Use the following command to build the Docker image:

terminal
# Build the Docker image
docker-compose build
Run this command in terminal or command prompt.

Breaking Down This Command:

  • Image creation: Docker reads the docker-compose.yml file and the Dockerfile to build the application image.
  • Layered build: Ensures each step in the Dockerfile is executed efficiently.

5. Run the Docker Container

Start the Docker container with the following command:

terminal
# Run the Docker container
docker-compose up
Run this command in terminal or command prompt.

How This Works:

  • Starts your app: Launches the container and runs the Next.js application.
  • Access your app: Visit http://localhost:4000 in your browser to see it live.

Your Next.js app should now be accessible at http://localhost:4000.

6. Synchronize Local Changes

To ensure that changes to your local files are reflected in the container, Docker volumes are used. This is configured in the docker-compose.yml file under the volumes section.

Benefits of Using Volumes:

  • Automatic updates: Lets you edit local files and immediately see changes in the container.
  • Boosts productivity: Removes the need for frequent rebuilds during development.

7. Stop and Remove Containers

When you're done, stop and remove the running containers using:

terminal
docker-compose down
Run this command in terminal or command prompt.

Importance of This Step:

  • Clean shutdown: Stops all running containers cleanly.
  • Resource management: Frees up system resources by removing temporary networks and volumes.

Common Issues and Troubleshooting

Issue: Container Fails to Start

  • Debugging logs: Run docker logs <container_id> to check for errors.
  • Dependency checks: Verify all required modules are listed in package.json.

Issue: Changes Not Reflecting

  • Volume setup: Ensure proper configuration in the docker-compose.yml file.
  • Container restarts: Occasionally, restarting the container can resolve syncing problems.

Conclusion

Dockerizing your Next.js application offers a streamlined and efficient workflow for both development and deployment. By following this guide, you can confidently set up a robust containerized environment for your Next.js projects. Start leveraging the power of Docker to enhance your development experience today!

Additional Resources

nextjsdockerdocker-composeweb developmentcontainers
More like this