Wizarr logo

Wizarr

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

Wizarr screenshotWizarr screenshot

About Versions (67)

2025.6.2b

2025-06-09

Breaking Changes

Please remove user: UID:GID from docker declaration. Instead use environment variables, as such:


services:
  wizarr:
    container_name: wizarr
    image: ghcr.io/wizarrrr/wizarr
    ports:
      - 5690:5690
    volumes:
      - /path/to/appdata/config/database:/data/database
      - /path/to/appdata/config/wizard:/data/wizard_steps
    environment:
      - PUID=1000 #Set UID
      - PGID=1000 #Set GID
      - DISABLE_BUILTIN_AUTH=false #Set to true ONLY if you are using another auth provider (Authelia, Authentik, etc)
      - TZ=Europe/London #Set your timezone here

or CLI:

docker run -d \
  --name wizarr \
  -e DISABLE_BUILTIN_AUTH=false \
  -e PUID=1000 -e PGID=1000 \
  -e TZ=Europe/London \
  -p 5690:5690 \
  -v /path/to/appdata/config/database:/data/database \
  -v /path/to/appdata/config/wizard:/data/wizard_steps
  --restart unless-stopped \
  ghcr.io/wizarrrr/wizarr

What’s Changed

New Contributors

Full Changelog: https://github.com/wizarrrr/wizarr/compare/2025.6.2…2025.6.2b