Join Our Discord Community!

Click the button below to join our new Discord community.

Join Discord
Easypanel

Easypanel

Modern control panel for managing servers with Docker. Deploy applications, databases, and services with an intuitive interface.

Version latest Platform 5-7 minutos 1-Click Install
Deploy Now

Getting started

  1. Go to https://my.cubepath.com/deploy
  2. Select a VPS plan (recommended: gp.micro or higher)
  3. Under Operating System, choose "Easypanel"
  4. Click Deploy

Your Easypanel instance will be ready in approximately 5-7 minutes. Access http://YOUR-IP:3000 to create your administrator account.

Deploy via API

Using CubeCLI

cubecli vps deploy \
  --plan gp.micro \
  --os easypanel \
  --hostname easypanel-server

Direct API

curl -X POST https://api.cubepath.com/vps/deploy \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "plan": "gp.micro",
    "os": "easypanel",
    "hostname": "easypanel-server"
  }'

Technical information

Access credentials:
- URL: http://YOUR-IP:3000
- User: Created during first access
- Password: Configured during first access

Installed software:
- Easypanel (Latest)
- Docker Engine

Ports:
- 80 (HTTP - Applications)
- 443 (HTTPS - Applications)
- 3000 (TCP - Easypanel Panel)

Data location:
- Configuration: Managed by Easypanel
- Applications: /etc/easypanel/projects/

Installation time: 5-7 minutes

Useful commands

# Check Easypanel status
systemctl status easypanel

# Restart Easypanel
systemctl restart easypanel

# View Easypanel logs
journalctl -u easypanel -f

# View deployed containers
docker ps

# View application logs
docker logs <container-name>