Skip to content

Release 2.17.2

Choose a tag to compare

@muety muety released this 01 Mar 08:35
· 82 commits to master since this release

Bug fixes

  • Broken user registration

鈿狅笍 Breaking changes

We switched the Docker base image from alpine to gcr.io/distroless/static:nonroot. As a consequence to this change, Wakapi will now run as the nonroot user with ID 65532 inside the container.

Required actions: If you're running Wakapi in Docker with SQLite, you will likely need to change the permissions of your data directory to it (and all contained fails, especially wakapi.db) can be read and written by 65532. Example:

# Stop wakapi container, then run:
$ docker run --rm -v wakapi_data:/data alpine chown -R 65532:65532 /data
# Pull latest image and restart wakapi

Alternatively, you could pass --user 1000:1000 to your docker run command to keep running as the previous user ID.