mb6QwCplpB.png
(68.15 KB, 下载次数: 0)
2025-6-8 03:19 上传
本帖最后由 李寻欢 于 2025-6-8 10:31 编辑
我最近试了一下这个,比umami还轻量一些:https://github.com/hermanmartinus/bearlytics/
不用额外安装数据库,支持docker一键部署,常见的统计也都有。
• services:
• bearlytics:
• image: ghcr.io/hermanmartinus/bearlytics:latest
• ports:
• - 8000:8000
• volumes:
• - ./analytics:/app/data
• environment:
• CSRF_TRUSTED_ORIGINS: ${CSRF_TRUSTED_ORIGINS:-https://your.com}
• DB_PATH: ${DB_PATH:-/app/data/analytics.db}
• DEBUG: False
• SALT_SECRET: 随机字符串1
• SECRET_KEY: 随机字符串2
• UID: 1000
• GID: 1000
• restart: unless-stopped
李寻欢 发表于 2025-6-8 10:21
我最近试了一下这个,比umami还轻量一些:https://github.com/hermanmartinus/bearlytics/
不用额外安装数 ...