tlrasor / tailon-multiarch

Repository for multiarch docker builds containing tailon

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tailon-multiarch

Repository for multiarch docker builds containing tailon

Tailon is an insanely useful webapp for tailing and grepping log files. There's not a good multiarch build available from the project officially so this repo contains a basic tailon and multiarch build on dockerhub at tlrasor/tailon.

How to use plz

docker run --rm -v "$LOGSDIR:/tailon" tlrasor/tailon /tailon/*.log

But what about swarm mode?

version: "3.7"
 
services: 
  tailon: 
    image: "tlrasor/tailon:78e9813"
    volumes: 
      - "logging-shared:/tailon" 
    ports: 
      - 8888:8888
    command: "/tailon/*.log"
    deploy:
      resources:
        limits:
          memory: 64M
        reservations:
          memory: 16M

About

Repository for multiarch docker builds containing tailon

License:MIT License


Languages

Language:Shell 52.5%Language:Dockerfile 47.5%