Sign inSign up

garfieldwtf/glintlog

By garfieldwtf

Updated 5 months ago

Image
0

353

garfieldwtf/glintlog repository overview

Glintlog Docker Image

This Docker image provides the glintlog binary in a lightweight Debian-based container. It supports multiple architectures (amd64 and arm64) and exposes the necessary ports for telemetry and logging.


Image

garfieldwtf/glintlog:latest

Exposed Ports

  • 8080 – HTTP API or UI (if applicable)
  • 4317 – OpenTelemetry gRPC receiver
  • 4318 – OpenTelemetry HTTP receiver

Usage

Run Container with Persistent Volume

To keep logs or configuration data persistent, mount a host directory as a volume:

docker run -d --name glintlog \
  -p 8080:8080 \
  -p 4317:4317 \
  -p 4318:4318 \
  -v /path/on/host/glintlog-data:/data \
  garfieldwtf/glintlog:latest
  • Replace /path/on/host/glintlog-data with a directory on your host.
  • All container data written to /data will persist in the mounted host folder.

Run Using Docker Compose

You can also run glintlog with Docker Compose using a named volume for persistent storage.

1️⃣ Create a docker-compose.yml file:
version: "3.9"

services:
  glintlog:
    image: garfieldwtf/glintlog:latest
    container_name: glintlog
    ports:
      - "8080:8080"
      - "4317:4317"
      - "4318:4318"
    volumes:
      - glintlog-data:/data
    restart: unless-stopped

volumes:
  glintlog-data:
    name: glintlog-data
2️⃣ Start the container:
docker-compose up -d
  • This command will start glintlog in detached mode.
  • Data will persist in the named volume glintlog-data.
  • The container will automatically restart unless stopped manually.

Interactive Mode
docker run -it --rm garfieldwtf/glintlog:latest

Use this mode for testing or debugging directly in the container.


Logging

The container writes logs to stdout/stderr. You can monitor them with:

docker logs -f glintlog

Notes

  • Multi-architecture support ensures compatibility with both amd64 and arm64 platforms.
  • Minimal Debian-based image keeps the container lightweight and stable.
  • Persistent volume ensures that log and configuration data survive container restarts or upgrades.

Tag summary

Content type

Image

Digest

sha256:196a9f64d

Size

60.5 MB

Last updated

5 months ago

docker pull garfieldwtf/glintlog