diff --git a/README.md b/README.md index c60b8546c..1c9829d2d 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ | 🟢 | | Cookie Cloud | https://github.com/easychen/CookieCloud/ | CookieCloud是一个和自架服务器同步浏览器Cookie和LocalStorage的小工具 | | | 🟢 | | DeepLX | https://deeplx.owo.network/ | DeepL免费API(无需TOKEN) | | | 🟢 | | Dockge | https://dockge.kuma.pet/ | 面向堆栈的管理器 | | +| 🟢 | | Dozzle | https://dozzle.dev/ | 一个轻量级的小应用程序,有一个基于web的界面来监控Docker日志 | | | 🟢 | | 独角数卡 | https://github.com/assimon/dujiaoka/ | 独角数卡(自动售货系统)-开源站长自动化售货解决方案、高效、稳定、快速 | | | 🟢 | | Elasticsearch | https://www.elastic.co/elasticsearch/ | Elasticsearch 是一个分布式、RESTful 风格的搜索和数据分析引擎 | Elastic | | 🟢 | | Kibana | https://www.elastic.co/kibana/ | Kibana 针对大规模数据快速运行数据分析 | Elastic | diff --git a/apps/dozzle/6.6.3/data.yml b/apps/dozzle/6.6.3/data.yml new file mode 100644 index 000000000..482f7b275 --- /dev/null +++ b/apps/dozzle/6.6.3/data.yml @@ -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 diff --git a/apps/dozzle/6.6.3/docker-compose.yml b/apps/dozzle/6.6.3/docker-compose.yml new file mode 100644 index 000000000..fb6f671c6 --- /dev/null +++ b/apps/dozzle/6.6.3/docker-compose.yml @@ -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 diff --git a/apps/dozzle/6.6.3/scripts/init.sh b/apps/dozzle/6.6.3/scripts/init.sh new file mode 100644 index 000000000..77b849120 --- /dev/null +++ b/apps/dozzle/6.6.3/scripts/init.sh @@ -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 diff --git a/apps/dozzle/6.6.3/scripts/uninstall.sh b/apps/dozzle/6.6.3/scripts/uninstall.sh new file mode 100644 index 000000000..c86c4fbca --- /dev/null +++ b/apps/dozzle/6.6.3/scripts/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/apps/dozzle/6.6.3/scripts/upgrade.sh b/apps/dozzle/6.6.3/scripts/upgrade.sh new file mode 100644 index 000000000..77b849120 --- /dev/null +++ b/apps/dozzle/6.6.3/scripts/upgrade.sh @@ -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 diff --git a/apps/dozzle/README.md b/apps/dozzle/README.md new file mode 100644 index 000000000..bafbd4f32 --- /dev/null +++ b/apps/dozzle/README.md @@ -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) diff --git a/apps/dozzle/data.yml b/apps/dozzle/data.yml new file mode 100644 index 000000000..fedd68544 --- /dev/null +++ b/apps/dozzle/data.yml @@ -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/ diff --git a/apps/dozzle/logo.png b/apps/dozzle/logo.png new file mode 100644 index 000000000..e21fa789b Binary files /dev/null and b/apps/dozzle/logo.png differ