Umami教程
安装教程
准备好Debian环境
下载Umami离线安装包:
--- version: '3' services: umami: image: ghcr.io/umami-software/umami:postgresql-v2.15.1 ports: - "3000:3000" environment: DATABASE_URL: postgresql://umami:password@db:5432/umami # 修改此处password DATABASE_TYPE: postgresql APP_SECRET: replace-me-with-a-random-string depends_on: db: condition: service_healthy init: true restart: always healthcheck: test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"] interval: 5s timeout: 5s retries: 5 db: image: postgres:15-alpine environment: POSTGRES_DB: umami POSTGRES_USER: umami POSTGRES_PASSWORD: password # 修改此处password volumes: - umami-db-data:/var/lib/postgresql/data restart: always healthcheck: test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] interval: 5s timeout: 5s retries: 5 volumes: umami-db-data:
使用教程
设置-添加网站-获取跟踪代码,将跟踪代码粘贴到网站代码中即可