github damongolding/immich-kiosk v0.26.1

22 hours ago

0.26.1

Added password to secrets

Example:

services:
  immich-kiosk:
    image: ghcr.io/damongolding/immich-kiosk:latest
    environment:
      KIOSK_IMMICH_URL: http://192.168.1.123:2283
      KIOSK_IMMICH_API_KEY_FILE: /run/secrets/immich_api_key
      KIOSK_PASSWORD_FILE: /run/secrets/password
    secrets:
      - immich_api_key
      - password

secrets:
  immich_api_key:
    file: /path/to/immich_api_key.txt
  password:
    file: /path/to/password.txt

Secrets documentation


Systemd credential prefix

Added kiosk_ prefix to systemd credentials to avoid any conflicts.

immich_api_key -> kiosk_immich_api_key
password -> kiosk_password

[Service]
LoadCredential=kiosk_immich_api_key:/path/to/immich_api_key.txt
LoadCredential=kiosk_password:/path/to/password.txt

What's Changed

🚀 New Features

Full Changelog: v0.26.0...v0.26.1

Don't miss a new immich-kiosk release

NewReleases is sending notifications on new releases.