Install

Install

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

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

Run a local container

docker run -d --name logship-db \
  -p 5000:5000 -p 6000:6000 \
  -v $PWD/logship:/logship \
  ghcr.io/logship-io/logship-database:latest
  • API/UI: http://localhost:5000
  • Data persisted under ./logship (configurable)

Minimal compose snippet

services:
  logship-database:
    image: ghcr.io/logship-io/logship-database:latest
    ports:
      - "5000:5000"
      - "6000:6000"
    volumes:
      - ./logship:/logship
    environment:
      ASPNETCORE_URLS: http://+:5000

Health checks

  • Liveness: GET /health/live
  • Readiness: GET /health/ready

Upgrades

  • Pull the new tag and restart the container. Persist data volumes to retain state.