发布应用 Dozzle

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
新疆萌森软件开发工作室 2024-10-10 11:03:51 +08:00
parent cf053568e0
commit d581a1995d
9 changed files with 130 additions and 0 deletions

View File

@ -73,6 +73,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/cookie-cloud/logo.png" width="22"/> | Cookie Cloud | https://github.com/easychen/CookieCloud/ | CookieCloud是一个和自架服务器同步浏览器Cookie和LocalStorage的小工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/deeplx/logo.png" width="22"/> | DeepLX | https://deeplx.owo.network/ | DeepL免费API无需TOKEN | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/dockge/logo.png" width="22"/> | Dockge | https://dockge.kuma.pet/ | 面向堆栈的管理器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/dozzle/logo.png" width="22"/> | Dozzle | https://dozzle.dev/ | 一个轻量级的小应用程序有一个基于web的界面来监控Docker日志 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/dujiaoka/logo.png" width="22"/> | 独角数卡 | https://github.com/assimon/dujiaoka/ | 独角数卡(自动售货系统)-开源站长自动化售货解决方案、高效、稳定、快速 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/elastic-elasticsearch/logo.png" width="22"/> | Elasticsearch | https://www.elastic.co/elasticsearch/ | Elasticsearch 是一个分布式、RESTful 风格的搜索和数据分析引擎 | Elastic |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/elastic-kibana/logo.png" width="22"/> | Kibana | https://www.elastic.co/kibana/ | Kibana 针对大规模数据快速运行数据分析 | Elastic |

View File

@ -0,0 +1,10 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number

View File

@ -0,0 +1,30 @@
networks:
1panel-network:
external: true
services:
dozzle:
image: amir20/dozzle:v6.6.3
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
env_file:
- /etc/1panel/envs/global.env
- ${ENV_FILE:-/etc/1panel/envs/default.env}
healthcheck:
test: [ "CMD", "/dozzle", "healthcheck" ]
interval: 3s
timeout: 30s
retries: 5
start_period: 30s
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- DOZZLE_ADDR=:8080
- DOZZLE_BASE=/
- DOZZLE_LEVEL=info

View File

@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

33
apps/dozzle/README.md Normal file
View File

@ -0,0 +1,33 @@
# Dozzle
Dozzle是一个轻量级的小应用程序有一个基于web的界面来监控Docker日志。它不存储任何日志文件。它仅用于实时监视容器日志。
![Dockge](https://file.lifebus.top/imgs/dozzle_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 特性
🔍 智能模糊搜索容器名称
🔦 使用正则表达式,搜索日志
📊 使用 SQL 查询搜索日志
🏎 小的内存占用
📓 多日志查看的分屏
🈷️ 实时统计,包括内存和 CPU 使用情况
🚨 多用户身份验证,支持代理转发授权
🐳 集群模式支持
🛜 监控多个 Docker 主机的代理模式
🌙 深色模式
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

16
apps/dozzle/data.yml Normal file
View File

@ -0,0 +1,16 @@
additionalProperties:
key: dozzle
name: Dozzle
tags:
- WebSite
- Middleware
- Tool
- Local
shortDescZh: 一个轻量级的小应用程序有一个基于web的界面来监控Docker日志
shortDescEn: web-based interface to monitor Docker logs
type: website
crossVersionUpdate: true
recommend: 0
website: https://dozzle.dev/
github: https://github.com/amir20/dozzle/
document: https://dozzle.dev/

BIN
apps/dozzle/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB