RoqueOS Server Installation
Transform RoqueOS into a powerful self-hosted cloud computing platform. Install with Docker to unlock a Linux terminal, remote browser, Docker App Store, file manager, and much more.
Prerequisites
PREREQUISITES
You will need a machine running Linux (Ubuntu/Debian recommended) or macOS/Windows with Docker and Docker Compose installed.
Don't have Docker? Install Docker Engine before continuing.
Option 1: Automatic Installation (Recommended)
The easiest and fastest way. The script will download and configure everything for you.
bash
curl -fsSL https://roqueos.com.br/install.sh | bashpowershell
iwr -useb https://roqueos.com.br/install.ps1 | iexAfter execution, the server will be running and ready to receive connections from the frontend.
Option 2: Manual Installation
For those who prefer to manage containers on their own.
1. Download images from DockerHub
bash
docker pull roqueribeiro1988/roqueos-server:latest
docker pull roqueribeiro1988/roqueos-server-ubuntu:latest2. Create the docker-compose.yml file
yaml
version: '3.8'
services:
roqueos-server:
image: roqueribeiro1988/roqueos-server:latest
container_name: roqueos-server
restart: unless-stopped
ports:
- '27021:27021'
volumes:
- ./data:/app/data
- /var/run/docker.sock:/var/run/docker.sock
environment:
- TZ=America/Sao_Paulo3. Start the server
bash
docker compose up -dVerifying the Installation
bash
curl http://localhost:27021/healthExpected result:
json
{ "status": "ok", "timestamp": "2026-03-05T00:00:00.000Z", "version": "2.1.0" }Administration Panel
After installation, the Administration Panel is available at:
http://localhost:27021/apiIn the panel, you can:
- Create and manage API Keys to connect the frontend
- Monitor running containers and services
- Configure Cloudflare tunnels for secure external access
Connecting to the Frontend
- Open RoqueOS at roqueos.com.br or in the native app.
- Go to Settings → Server.
- Enter the server URL (e.g.,
http://localhost:27021orhttps://your-tunnel.trycloudflare.com). - Paste the API Key generated in the administration panel.
- Click Connect.
Next Steps
- VPS & Cloud — Install on a remote server for 24/7 access
- Volumes (Disks) — Map your local folders in the file manager
- Docker App Store — Install Docker applications with one click