Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2026-03-10 04:43:48 +00:00
parent 9da9ca0a9f
commit ae48380929
15 changed files with 267 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# 数据持久化路径 [必填]
EMBY_PULSE_ROOT_PATH=/home/emby-pulse
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=10307
# Emby 主机地址 [必填]
emby_host=http://127.0.0.1:8096
# Emby API 密钥 [必填]
emby_api_key=
# Webhook 令牌
webhook_token=
+24
View File
@@ -0,0 +1,24 @@
networks:
1panel-network:
external: true
services:
emby-pulse:
container_name: emby-pulse
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
- DB_PATH=/emby-data/playback_reporting.db
- playback_data_mode=sqlite
image: zeyu8023/emby-stats:1.2.0.554
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:10307
restart: always
volumes:
- ${EMBY_PULSE_ROOT_PATH}/config:/app/config
- ${EMBY_PULSE_ROOT_PATH}/data:/emby-data
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai