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 first-run /setup on a freshly deployed server -- # whoever supplies this value is the one who gets to create the # first admin account. Meaningless once that account exists (every # other route always requires a real login), so leave unset unless # you're worried about someone else reaching /setup before you do. - 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