NocoDB
Turn any database into a smart spreadsheet. Open source alternative to Airtable with automatic REST API.
Getting started
- Go to https://my.cubepath.com/deploy
- Select a VPS plan
- Under Operating System, choose "NocoDB"
- 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