Installation
Requirements
- Linux VPS with 2 GB RAM minimum (4 GB recommended)
- Docker 24+ and Docker Compose v2
- Outbound HTTPS access
One-liner install
curl -fsSL https://resalepilot.com/install | bash
The installer fetches docker-compose.yml and an
.env template into ~/resalepilot/, prompts you
to paste your license key, and starts all services.
Manual install
mkdir -p ~/resalepilot && cd ~/resalepilot
curl -fsSL https://raw.githubusercontent.com/H129hj/flipbot-v2/main/deploy/docker-compose.yml -o docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/H129hj/flipbot-v2/main/deploy/.env.example -o .env
# Edit .env — paste RESALEPILOT_LICENSE_KEY
docker compose pull
docker compose up -d Verify
docker compose exec scheduler flipbot status Expected output includes the tier name, your machine ID, and the list of unlocked features.
Updating
cd ~/resalepilot && docker compose pull && docker compose up -d