mirror of
https://github.com/tiennm99/docker-images.git
synced 2026-07-18 16:17:51 +00:00
Introduces a complete runnable example for the Scribe logging image, featuring: - docker-compose.yml orchestrating scribe daemon and Go test sender - Go test sender application (main.go, go.mod, Dockerfile) - Example README with setup and usage instructions - Updated scribe/README.md with Runnable Example section
27 lines
874 B
YAML
27 lines
874 B
YAML
# Runnable Scribe example: the daemon plus a one-shot Go sender.
|
|
# Run from this directory: docker compose up --build
|
|
# Written logs appear on the host under ./logs/<category>/.
|
|
services:
|
|
scribe:
|
|
image: ghcr.io/tiennm99/scribe:2.2
|
|
ports:
|
|
- "1463:1463"
|
|
volumes:
|
|
# Reuse the repo's default config (read-only).
|
|
- ../config/scribe.conf:/etc/scribe/scribe.conf:ro
|
|
# Host-visible log output — files land here after the sender runs.
|
|
- ./logs:/var/log/scribe
|
|
restart: unless-stopped
|
|
|
|
sender:
|
|
build: ./sender
|
|
depends_on:
|
|
- scribe
|
|
# Reaches scribe over the compose network by service name (internal port),
|
|
# independent of the host 1463 mapping. The sender retries until scribe is up.
|
|
environment:
|
|
- SCRIBE_HOST=scribe
|
|
- SCRIBE_PORT=1463
|
|
- SCRIBE_CATEGORY=example
|
|
- SCRIBE_COUNT=5
|