wbswjc/watcher

By wbswjc

Updated over 6 years ago

Log Watcher (Docker Image)

Image

95

File Watcher (Docker Image)

Watch your file growing with docker container.

DockerHub Badge

docker pull wbswjc/watcher

https://hub.docker.com/r/wbswjc/watcher/

The unsuggested usage:

docker run --it --rm -v /my_log:/log wbswjc/watcher

This image is useless if you are using Linux or Mac, cause you can simply running tail -f /my_log to do the same thing, but I think it may be useful for Windows users.

Actually, the right usage of this image is using it with docker-compose:

version: "3"
services:
  log:
    image: wbswjc/watcher
    volumes: ./my_log:/log

And you can see your log appears in the output of docker-compose up command.

Docker Pull Command

docker pull wbswjc/watcher