Skip to content

Releases: dankkomcg/reader

New release!!

02 Oct 17:48
Compare
Choose a tag to compare

Log-viewer now is Reader

The name of the project was updated. The project is made simple and based to read files on a storage ubication.
Add Reader to your projects to review files and content, search neccesary information in this file and this from your browser.

services:

  reader:
    image: agileworksnet/reader
    restart: always
    volumes:
      - ./storage:/usr/src/app/storage
    ports:
      - "3000:3000"

The main idea of the project is used to do a review on your log files and check them in the browser to:

  • Prevent direct access to the deployment instance.
  • Reduce the complexity that another solutions like Grafana add to simple projects.

Security specifications are responsibility of developers that implements this library on his projects.

Full Changelog: 1.1.0...2.0.0

1.0.0

09 Nov 19:16
Compare
Choose a tag to compare

Web viewer to display logs (and files) with content on a directory:

version: '3.9'

services:

  api:
    container_name: log-viewer
    image: log-viewer
    restart: always
    build:
      context: ./
      dockerfile: Dockerfile
    env_file:
      - .env
    volumes:
      - ./storage:/usr/src/app/storage
    ports:
      - "3000:3000"