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

Erik ChenErik Chen
2 min read

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).


1. Hardware

ComponentMinimumRecommended
CPU2 cores (x86-64)4 cores (x86-64 or ARM64)
RAM2 GB4 GB+ (8 GB if you plan to run many apps)
Storage20 GB free40 GB+ SSD (more if you’ll store media)
Network1 Gbps NIC1 Gbps NIC (static IP preferred)

2. OS & Kernel

  • Ubuntu 24.04 LTS (Server or Desktop)

  • Kernel ≥ 6.8 (ships with 24.04)

  • 64-bit only (x86-64 or ARM64)


3. Required Software Stack

Runtipi’s installer will set these up automatically, but you need sudo access:

PackageVersion shipped in 24.04Notes
Docker Engine24.xInstaller adds the official Docker repo if missing
Docker Compose (plugin)2.xUsed as docker compose
Git2.43+Needed to clone the repo
curl / wgetanyFor the bootstrap script
UFW (optional)0.36Only if you want to manage firewall rules

4. Network & DNS

  • 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.


5. One-line install on Ubuntu 24.04

sudo apt update && sudo apt install -y curl git
curl -sSL https://get.runtipi.sh | bash

The script will:

  1. Install Docker (if not present).

  2. Clone the runtipi repo to ~/runtipi.

  3. Start the stack with docker compose.


6. Post-install checklist

  • 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.


7. ARM64 (Raspberry Pi 4/5, Orange Pi, etc.)

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.

0
Subscribe to my newsletter

Read articles from Erik Chen directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Erik Chen
Erik Chen