Installation Frontail on UNRAID as a Docker

Due to a crashed update from 3.4.5 to 4.0.0 I tried to run OH now in a Docker on my UNRAID-server. The cloud connection could be much faster but it is okay.
What I miss is the Frontail Log Viewer which I now from Openhabian. I saw I can install it in Docker-compose and installed the Plugin “Docker Compose Manager” in UNRAID. Now I have the problem to run the correct compose file. Is there anyone who has the Frontail running on UNRAID?

Thank you so much.

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

Hi Tim

Thank you very much for your reply. I do not know what was incorrect on my side. But now it runs very well. Thank you again.