Skip to main content
Version: Latest

Docker

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.
tip

To persist data, always mount a volume at /usr/app/data/. Without this, your data will be lost when the container is removed.

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