Organizr logo

Organizr

HTPC/Homelab services organizer that loads all your services as tabs on one page

Alternative to: start.me, netvibes, symbaloo


Organizr lets you set up 'Tabs' that load all your self-hosted services in a single webpage, so you no longer have to memorize a list of bookmarks or IP addresses and ports. It includes built-in user accounts and guest access with per-tab permissions, login via Plex, Emby, LDAP, or sFTP credentials, and full theming support. Everything is managed and accessed entirely through the browser.

Organizr Docker Compose example

Self-host Organizr on your own server, homelab, or VPS starting from this Docker Compose example. It runs Organizr in Docker containers using the official organizr/organizr:latest image, with persistent volumes and automatic restarts preconfigured. Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.

services:
  organizr:
    image: organizr/organizr:latest
    environment:
      # User ID the app runs as — controls file ownership on the config volume.
      - PUID=1000
      # Group ID the app runs as.
      - PGID=1000
      # Container timezone, e.g. Europe/London. See the tz database for valid values.
      - TZ=Etc/UTC
      # Organizr release branch to track: v2-master (stable) or v2-develop.
      - branch=v2-master
    volumes:
      - config:/config
    restart: unless-stopped

volumes:
  config:

Prefer a managed setup? WinterFlow installs, configures, and updates Organizr for you using this same Docker Compose configuration.