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
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
- add password to secrets by @damongolding in #561
Full Changelog: v0.26.0...v0.26.1