Wizarr logo

Wizarr

Automatic user invitation and management system for Plex, Jellyfin, Emby and more

Wizarr screenshotWizarr screenshot

Wizarr is a self-hosted user invitation and management system for media servers like Plex, Jellyfin, Emby, Audiobookshelf, Komga, Kavita, and Romm. Create a shareable invite link and your users are automatically added to your server, then guided through a customizable onboarding wizard covering app downloads, request systems, and more.

Wizarr Docker Compose example

Self-host Wizarr on your own server, homelab, or VPS starting from this Docker Compose example. It runs Wizarr in Docker containers using the official ghcr.io/wizarrrr/wizarr: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:
  wizarr:
    image: ghcr.io/wizarrrr/wizarr:latest
    restart: unless-stopped
    ports:
      - "5690:5690"
    environment:
      # Container timezone.
      TZ: "UTC"
    volumes:
      - database:/data/database

volumes:
  database:

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