Runtipi is a self-hosted “personal cloud” platform that runs everything in Docker

Search for a command to run...

No comments yet. Be the first to comment.
QM agent is Y Combinator's July 2026 multiplayer harness for work; by August 4, its GitHub repository had about 9,700 stars. It gives each employee and project a scoped workspace, memory, keychain vie

A Codex long-running agent workflow succeeds when responsibility, state, wake conditions, acceptance criteria, and stopping boundaries remain visible and reviewable. OpenAI developer experience lead J

The Codex–ChatGPT Pro dual-agent workflow separates implementation from acceptance; it does not prove that one AI system is the strongest coding agent. Codex can hold the repository, requirements, per

Japan's physical AI strategy entered an execution phase in 2026, with a national model program running through 2030. The government is funding factory-data preparation and robotics foundation models.

The AI infrastructure bubble may stay contained while chips, power, and construction capacity remain scarce. In July 2026, NVIDIA CEO Jensen Huang told Axios that a bubble was highly unlikely within f

Runtipi is a self-hosted “personal cloud” platform that runs everything in Docker.
Below are the minimum and recommended server specs for running Runtipi on Ubuntu 24.04 LTS (Noble Numbat).
| Component | Minimum | Recommended |
| CPU | 2 cores (x86-64) | 4 cores (x86-64 or ARM64) |
| RAM | 2 GB | 4 GB+ (8 GB if you plan to run many apps) |
| Storage | 20 GB free | 40 GB+ SSD (more if you’ll store media) |
| Network | 1 Gbps NIC | 1 Gbps NIC (static IP preferred) |
Ubuntu 24.04 LTS (Server or Desktop)
Kernel ≥ 6.8 (ships with 24.04)
64-bit only (x86-64 or ARM64)
Runtipi’s installer will set these up automatically, but you need sudo access:
| Package | Version shipped in 24.04 | Notes |
| Docker Engine | 24.x | Installer adds the official Docker repo if missing |
| Docker Compose (plugin) | 2.x | Used as docker compose |
| Git | 2.43+ | Needed to clone the repo |
| curl / wget | any | For the bootstrap script |
| UFW (optional) | 0.36 | Only if you want to manage firewall rules |
Port 80 & 443 must be reachable (or whatever you remap them to).
If you want automatic HTTPS via Let’s Encrypt, the server needs a public domain name pointing to its IP.
For local-only use, you can disable Traefik and use plain HTTP.
sudo apt update && sudo apt install -y curl git
curl -sSL https://get.runtipi.sh | bash
The script will:
Install Docker (if not present).
Clone the runtipi repo to ~/runtipi.
Start the stack with docker compose.
Visit http://<server-ip> and finish the onboarding wizard.
Change the default runtipi user password.
Mount extra volumes (e.g., /mnt/data) in runtipi/user-config/tipi-compose.yml if you need more storage for apps like Nextcloud or Plex.
Keep Ubuntu updated: sudo apt update && sudo apt upgrade.
Ubuntu 24.04 ARM64 images work fine; just ensure you use a 64-bit build and have at least 4 GB RAM.
That’s it—Ubuntu 24.04 is fully supported and the installer handles the rest.