https://github.com/tlrasor/tailon-multiarch
Repository for multiarch docker builds containing tailon
https://github.com/tlrasor/tailon-multiarch
Last synced: 4 months ago
JSON representation
Repository for multiarch docker builds containing tailon
- Host: GitHub
- URL: https://github.com/tlrasor/tailon-multiarch
- Owner: tlrasor
- License: mit
- Created: 2020-04-20T04:10:05.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-20T05:08:59.000Z (about 5 years ago)
- Last Synced: 2025-01-02T23:47:17.222Z (5 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tailon-multiarch
Repository for multiarch docker builds containing tailon[Tailon](https://github.com/gvalkov/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```