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
- Fix tailwind button to use cursor: pointer by @fireph in #582
- Increase default generated CODESIZE; increase maximum custom codesize by @vhsdream in #589
- Create user/group at runtime in docker-entrypoint.sh by @fireph in #594
- Bump boto3 from 1.38.29 to 1.38.32 by @dependabot in #598
- Change password to not have limit by @fireph in #597
- Updated development.md by @Krytos in #595
New Contributors
Full Changelog: 2025.6.2...2025.6.2b