Getting started
- Go to https://my.cubepath.com/deploy
- Select a VPS plan
- Under Operating System, choose "WordPress"
- Click Deploy
Once the deployment is complete (~5 minutes), access http://your-server-ip and complete the WordPress installation wizard.
Deploy via CubePath Cloud API
Via CubeCLI
pipx install git+https://github.com/CubePathInc/cubecli.git
cubecli vps create \
--name wordpress-site \
--plan gp.micro \
--template "WordPress" \
--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": "wordpress-site",
"plan": "gp.micro",
"template": "wordpress",
"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 + WordPress (latest)
- MariaDB 11.7.2
Locations:
- Installation: /opt/wordpress/
- Files: /opt/wordpress/html/
- Database: /opt/wordpress/db/
Ports:
- 22 (SSH)
- 80 (HTTP)
Useful commands
# Check status
docker ps
# View logs
docker logs wordpress
docker logs wordpress-db
# Restart
docker restart wordpress