Docker container that makes it possible to recursively tail local log files in your browser.
Save a copy of the log-relay script into a directory in your PATH. Then cd
to your log directory in your terminal and execute log-relay
.
Execute log-relay --help
for more options.
Or run the container directly:
docker run --rm -d \
-v .:/tail \
-w /var/task \
-p "127.0.0.1:9000:9000/tcp" \
spoondoggy/log-relay:latest node /var/task/main.js
Save a copy of the log-relay.ps1 script into a directory in your PATH. Then cd to your log directory in your terminal and execute log-relay
.
Or run the container directly:
docker run --rm -d `
-v .:/tail `
-w /var/task `
-p "127.0.0.1:9000:9000/tcp" `
spoondoggy/log-relay:latest node /var/task/main.js