Installation Frontail on UNRAID as a Docker

I used GitHub - Schnuecks/frontail_AEM: ๐Ÿ“ streaming logs to the browser to deploy Frontail via docker compose:

version: '3'

services:

    frontail:
      image: schnuecks/frontail-multi:latest
      container_name: frontail
      command: --disable-usage-stats --ui-highlight --ui-highlight-preset /frontail/preset/openhab_AEM.json -t openhab_AEM -l 500 -n 100 /logs/openhab.log /logs/events.log
      volumes:
        - /openhab/userdata/logs:/logs:ro
      ports:
        - "9001:9001"
      restart: unless-stopped

Of course you need to modify this according to your system volumes and place the openhab_AEM.json if you want to use the highlighting. Hope that helps.

Thread: Frontail custom theme coloring

1 Like