Getting started
- Go to https://my.cubepath.com/deploy
- Select a VPS plan
- Under Operating System, choose "NextCloud"
- 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