2.0.0 (2026-09-11)
⚠ BREAKING CHANGES
- Picard Web now runs as the fixed non-root user
gwb(1000:1000) instead of an arbitrary user. Mounted config/music directories must already be writable by thatuid, or the container must be started with a matching user.
If you're upgrading, do one of the following:
chownthe mounted folders to1000:1000, or- Set
PUID/PGIDin your.envfile to theuid/gidthat already owns the folders (if not already set), then adduser: "${PUID}:${PGID}"to your compose file:
services:
picard-web:
image: aandree5/picard-web:${PICARD_TAG}
user: "${PUID}:${PGID}"
...