Install

Install

The logship frontend OCI container is hosted on the GitHub Container Registry.

docker pull ghcr.io/logship-io/logship-frontend:latest

Run locally

docker run -d --name logship-frontend \
  -p 8000:8000 \
  -e ASPNETCORE_URLS=http://+:8000 \
  ghcr.io/logship-io/logship-frontend:latest
  • UI: http://localhost:8000
  • Point it to your backend with ClientSettings.BackendUrl (see config page).

Compose snippet

services:
  logship-frontend:
    image: ghcr.io/logship-io/logship-frontend:latest
    ports:
      - "8000:8000"
    environment:
      ASPNETCORE_URLS: http://+:8000