Skip to content

Albums

  1. Open Immich’s web interface and click on “Albums” in the left-hand navigation.
  2. Click on the album you want the ID of.
  3. The url will now look something like this http://192.168.86.123:2283/albums/a04175f4-97bb-4d97-8d49-3700263043e5.
  4. The album ID is everything after albums/, so in this example it would be a04175f4-97bb-4d97-8d49-3700263043e5.

The ID(s) of a specific album or albums you want to display.

Settings

Key Value
CONFIG albums
ENV KIOSK_ALBUMS
URL album
VALUE []string
DEFAULT []
Using with config.yaml file
albums:
- ALBUM_ID
- ALBUM_ID
Using with ENV in your docker-compose file
environment:
KIOSK_ALBUMS: "ALBUM_ID, ALBUM_ID"
Using with url queries
http://{URL}?album=ALBUM_ID

This feature allows you to prevent specific album assets from being displayed in the slideshow.

Settings

Key Value
CONFIG excluded_albums
ENV KIOSK_EXCLUDED_ALBUMS
URL excluded_albums
VALUE []string
DEFAULT []
Using with config.yaml file
excluded_albums:
- ALBUM_ID
- ALBUM_ID
Using with ENV in your docker-compose file
environment:
KIOSK_ALBUM: "ALBUM_ID, ALBUM_ID"
Using with url queries
http://{URL}?excluded_albums=ALBUM_ID

This controls the order in which the assets from the selected album(s) are displayed.

Settings

Key Value
CONFIG album_order
ENV KIOSK_ALBUM_ORDER
URL album_order
VALUE random | newest | oldest
DEFAULT random
Using with config.yaml file
album_order: random
Using with ENV in your docker-compose file
environment:
KIOSK_ALBUM_ORDER: random
Using with url queries
http://{URL}?album_order=random

Will use all albums (owned and shared). e.g. http://{URL}?album=all

Will use all owned albums. e.g. http://{URL}?album=owned

Will use only shared albums. e.g. http://{URL}?album=shared

Will use only favourited assets. e.g. http://{URL}?album=favorites or http://{URL}?album=favourites