Install

Install

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

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

Native installation

Standalone agent binaries are published on GitHub Releases:

For a full local Logship install on a single Linux host, use the deployment installer:

curl -fsSL https://raw.githubusercontent.com/logship-io/logship-deployments/main/src/shell/install.sh | sh

Quick start

docker run -d --name logship-agent \
  --network host \
  -v $PWD/agent-config.json:/app/appsettings.json:ro \
  ghcr.io/logship-io/logship-agent:latest
# Mount your appsettings.json to configure outputs and inputs.
# When not using host networking, expose any UDP ports you configure (e.g., -p 49999:49999/udp).

Upgrade

  • Container: pull the new tag and restart.
  • Native: stop the service, replace binaries, start the service. Preserve your config file.