Join Our Discord Community!

Click the button below to join our new Discord community.

Join Discord
NocoDB

NocoDB

Turn any database into a smart spreadsheet. Open source alternative to Airtable with automatic REST API.

Version latest Database 5 minutos 1-Click Install
Deploy Now

Getting started

  1. Go to https://my.cubepath.com/deploy
  2. Select a VPS plan
  3. Under Operating System, choose "NocoDB"
  4. Click Deploy

Once the deployment is complete (~5 minutes, may vary depending on machine size), access http://your-server-ip:8080 to start using NocoDB.

Deploy via CubePath Cloud API

Via CubeCLI

pipx install git+https://github.com/CubePathInc/cubecli.git

cubecli vps create \
  --name nocodb-server \
  --plan gp.micro \
  --template "NocoDB" \
  --location us-mia-1 \
  --project <project-id>

Via API

curl -X POST https://api.cubepath.com/v1/vps \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "nocodb-server",
    "plan": "gp.micro",
    "template": "nocodb",
    "location": "us-mia-1"
  }'

Technical information

Access credentials:
- URL: http://YOUR-IP:8080
- Email: [email protected]
- Password: PathOfCubes (change it at: Account Settings > Password)

Installed software:
- Docker + NocoDB (latest)

Locations:
- Installation: /opt/nocodb/
- Data: /opt/nocodb/data/

Ports:
- 22 (SSH)
- 8080 (HTTP - NocoDB)

Useful commands

# Check status
docker ps

# View logs
docker logs nocodb

# Restart NocoDB
docker restart nocodb

# Update NocoDB
cd /opt/nocodb
docker compose pull
docker compose up -d