26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
services:
|
|
espresso-frame-server:
|
|
image: git.thumeit.com/tfaour/espresso-frame-server:latest
|
|
build: .
|
|
ports:
|
|
- "8420:8420"
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
- CONFIG_PATH=/data/config.json
|
|
- IMMICH_URL=http://your-immich-host:2283
|
|
- IMMICH_API_KEY=your-immich-api-key-here
|
|
# Optional: gates the entire server -- the web UI (/, /api/*) AND
|
|
# every device-facing /frame/* endpoint -- behind this shared secret.
|
|
# Leave unset to keep it all open on a trusted LAN, same as before.
|
|
# Paste the same value into the ESP32's captive portal setup form
|
|
# (Access Token field) so it's sent on every device request and gets
|
|
# embedded automatically in the manage-menu/share QR codes.
|
|
- MANAGEMENT_TOKEN=changeme
|
|
# Optional: only needed if the Gitea repo configured in the web UI's
|
|
# "Firmware Gitea repo URL" field is private. A read-only PAT is
|
|
# enough -- it's sent to that repo's releases API/asset downloads
|
|
# only, never exposed via the web UI or any API response.
|
|
- GITEA_FIRMWARE_TOKEN=your-gitea-pat-here
|
|
restart: unless-stopped
|