Added Doozle Docker Log monitoring

This commit is contained in:
Sascha Claren 2023-05-09 11:18:27 +00:00 committed by Nicolas Meienberger
parent 6d4b204e92
commit 91144e8758
4 changed files with 53 additions and 0 deletions

18
apps/dozzle/config.json Normal file
View File

@ -0,0 +1,18 @@
{
"$schema": "../schema.json",
"name": "Dozzle",
"available": true,
"exposable": true,
"port": 8013,
"id": "dozzle",
"tipi_version": 1,
"version": "latest",
"categories": [
"development"
],
"description": "Dozzle is a small web based app to monior Docker logs.",
"short_desc": "Dozzle is a small web based app to monior Docker logs",
"author": "Amir Raminfar",
"source": "https://github.com/amir20/dozzle",
"form_fields": []
}

View File

@ -0,0 +1,19 @@
version: "3"
services:
dozzle:
container_name: dozzle
image: amir20/dozzle:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- ${APP_PORT}:8080
networks:
- tipi_main_network
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.hdozzle.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.dozzle.entrypoints: websecure
traefik.http.routers.dozzle.service: dozzle
traefik.http.routers.dozzle.tls.certresolver: myresolver
traefik.http.services.dozzle.loadbalancer.server.port: 8080

View File

@ -0,0 +1,16 @@
# Doozle
Dozzle is a small lightweight application with a web based interface to monitor Docker logs. It doesnt store any log files. It is for live monitoring of your container logs only.
## Features
- Intelligent fuzzy search for container names 🤖
- Search logs using regex 🔦
- Small memory footprint 🏎
- Split screen for viewing multiple logs
- Download logs easy
- Live stats with memory and CPU usage
- Authentication with username and password 🚨
https://github.com/amir20/dozzle

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB