NocoDB
Docs
Getting Started/Self Hosting/Installation

Docker

Docker installation - takes about three minutes!

Docker installation - takes about three minutes!

Docker provides an easy way to install and run NocoDB. Follow these steps to get NocoDB up and running using Docker.

Prerequisites

Installation Steps

  1. Choose your preferred database:
docker run -d --name nocodb \
-v "$(pwd)"/nocodb:/usr/app/data/ \
-p 8080:8080 \
nocodb/nocodb:latest
  1. Once the container is running, you can access NocoDB by opening http://localhost:8080 in your web browser.

For versions prior to 0.10.6, mount the volume at /usr/src/app.

Troubleshooting

  • If you can't access NocoDB after installation, check if the Docker container is running:
docker ps
  • If the container is not running, check the logs for any errors:
docker logs nocodb

Installation Video

On this page