Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2024-12-02 04:01:53 +00:00
parent 9ab092fe3b
commit 15e18e8c00
15 changed files with 357 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# 数据持久化路径 [必填]
ARIA2_ROOT_PATH=/home/aria2
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8080
# RPC 通讯端口 [必填]
PANEL_APP_PORT_RPC=6800
# DHT 和 BT 通讯端口 [必填]
PANEL_APP_PORT_BTPORT=32516
# 鉴权密钥 [必填]
SECRET=
# 写入缓存大小 [必填]
CACHE=1024M
# 自定义 Trackes 地址 [必填]
CTU=https://cdn.jsdelivr.net/gh/XIU2/TrackersListCollection@master/best_aria2.txt
# 下载预分配模式 [必填]
FA=falloc
# 重启Aria2B时间 [必填]
CRA2B=2h
# 静默下载 [必填]
QUIET=true
+38
View File
@@ -0,0 +1,38 @@
networks:
1panel-network:
external: true
services:
aria2-superng6:
cap_add:
- NET_ADMIN
container_name: aria2-superng6
env_file:
- ./envs/global.env
- .env
environment:
- PUID=0
- PGID=0
- UMASK=022
- WEBUI=true
- WEBUI_PORT=${PANEL_APP_PORT_HTTP}
- BTPORT=${PANEL_APP_PORT_BTPORT}
- PORT=${PANEL_APP_PORT_RPC}
- UT=true
- RUT=true
- SMD=true
- CRA2B=2h
- QUIET=true
image: superng6/aria2:a2b-stable-24-11-01
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE}
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_RPC}:6800
- ${PANEL_APP_PORT_BTPORT}:32516
- ${PANEL_APP_PORT_BTPORT}:32516/udp
restart: always
volumes:
- ${ARIA2_ROOT_PATH}/downloads:/downloads
- ${ARIA2_ROOT_PATH}/config:/config
- /lib/modules:/lib/modules
+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