SeedBox Control Panel

Docker Management System

Server Uptime

Loading...

Since last restart

CPU Usage

0%

Memory Used

0 GB

Disk Space

0 TB

Resource Usage (Last 24h)

Storage Distribution

Application Status Overview

Docker Applications

System Logs

Deployment Guide

Prerequisites

Before deploying, ensure you have:

  • Ubuntu 20.04+ or Debian 11+ server
  • Root or sudo access
  • Domain name pointed to your server (optional but recommended)
  • Minimum 4GB RAM, 2 CPU cores, 100GB storage

Install Required Packages:

# Update system
sudo apt update && sudo apt upgrade -y

# Install Docker
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker $USER

# Install Docker Compose
sudo apt install docker-compose -y

# Install Python & dependencies
sudo apt install python3 python3-pip python3-venv nginx -y

# Install Node.js (for frontend if needed)
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install nodejs -y

Operation successful