Join Our Discord Community!

Click the button below to join our new Discord community.

Join Discord
NextCloud

NextCloud

Your own private cloud for storing, syncing, and sharing files. Includes calendar, contacts, video calls, and office suite.

Version latest Storage 10 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 "NextCloud"
  4. Click Deploy

Once the deployment is complete (~10 minutes, may vary depending on machine size), access http://your-server-ip and complete the NextCloud configuration wizard.

Deploy via CubePath Cloud API

Via CubeCLI

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

cubecli vps create \
  --name nextcloud-storage \
  --plan gp.micro \
  --template "NextCloud" \
  --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": "nextcloud-storage",
    "plan": "gp.micro",
    "template": "nextcloud",
    "location": "us-mia-1"
  }'

Technical information

Access credentials:
- URL: http://YOUR-IP
- Username: Set during web installation
- Password: Set during web installation

Installed software:
- Docker + NextCloud (latest)
- MySQL 5.7

Locations:
- Installation: /opt/nextcloud/
- Files: /opt/nextcloud/html/
- Database: /opt/nextcloud/db/

Ports:
- 22 (SSH)
- 80 (HTTP)

Useful commands

# Check status
docker ps

# View logs
docker logs nextcloud
docker logs nextcloud-db

# Restart
docker restart nextcloud

# Run occ commands (NextCloud CLI)
docker exec -u www-data nextcloud php occ status