Added Doozle Docker Log monitoring
This commit is contained in:
parent
3f865555f6
commit
30c081166b
18
apps/dozzle/config.json
Normal file
18
apps/dozzle/config.json
Normal 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": []
|
||||||
|
}
|
19
apps/dozzle/docker-compose.yml
Normal file
19
apps/dozzle/docker-compose.yml
Normal 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
|
16
apps/dozzle/metadata/description.md
Normal file
16
apps/dozzle/metadata/description.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Doozle
|
||||||
|
|
||||||
|
Dozzle is a small lightweight application with a web based interface to monitor Docker logs. It doesn’t 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
|
BIN
apps/dozzle/metadata/logo.jpg
Normal file
BIN
apps/dozzle/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
Loading…
Reference in New Issue
Block a user