Processed apps directory via GitHub Actions
This commit is contained in:
42
appstore/cloudreve/4.0.0/.env
Normal file
42
appstore/cloudreve/4.0.0/.env
Normal file
@@ -0,0 +1,42 @@
|
||||
# 数据库服务 (前置检查)
|
||||
PANEL_DB_TYPE=postgresql
|
||||
|
||||
# Redis 服务 (前置检查)
|
||||
PANEL_REDIS_TYPE=redis
|
||||
|
||||
# 数据持久化路径 [必填]
|
||||
CLOUDREVE_ROOT_PATH=/home/cloudreve
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=5212
|
||||
|
||||
# 数据库 类型 [必填]
|
||||
CR_CONF_Database.Type=sqlite
|
||||
|
||||
# 数据库 主机地址
|
||||
CR_CONF_Database.Host=127.0.0.1
|
||||
|
||||
# 数据库 端口
|
||||
CR_CONF_Database.Port=5432
|
||||
|
||||
# 数据库 名称
|
||||
CR_CONF_Database.Name=cloudreve
|
||||
|
||||
# 数据库 用户名
|
||||
CR_CONF_Database.User=cloudreve
|
||||
|
||||
# 数据库 密码
|
||||
CR_CONF_Database.Password=
|
||||
|
||||
# Redis 地址
|
||||
CR_CONF_Redis.Server=127.0.0.1:6379
|
||||
|
||||
# Redis 索引 (0-20)
|
||||
CR_CONF_Redis.DB=0
|
||||
|
||||
# Redis 用户
|
||||
CR_CONF_Redis.User=
|
||||
|
||||
# Redis 密码
|
||||
CR_CONF_Redis.Password=
|
||||
|
||||
132
appstore/cloudreve/4.0.0/data.yml
Normal file
132
appstore/cloudreve/4.0.0/data.yml
Normal file
@@ -0,0 +1,132 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- child:
|
||||
default: ""
|
||||
envKey: PANEL_DB_HOST
|
||||
required: false
|
||||
type: service
|
||||
default: postgresql
|
||||
envKey: PANEL_DB_TYPE
|
||||
labelZh: 数据库服务 (前置检查)
|
||||
labelEn: Database Service
|
||||
required: false
|
||||
type: apps
|
||||
values:
|
||||
- label: PostgreSQL
|
||||
value: postgresql
|
||||
- label: MySQL
|
||||
value: mysql
|
||||
- label: MariaDB
|
||||
value: mariadb
|
||||
- label: Percona
|
||||
value: percona
|
||||
- child:
|
||||
default: ""
|
||||
envKey: PANEL_REDIS_SERVICE
|
||||
required: false
|
||||
type: service
|
||||
default: redis
|
||||
envKey: PANEL_REDIS_TYPE
|
||||
labelZh: Redis 服务 (前置检查)
|
||||
labelEn: Redis Service (Pre-check)
|
||||
required: false
|
||||
type: apps
|
||||
values:
|
||||
- label: Redis
|
||||
value: redis
|
||||
- default: "/home/cloudreve"
|
||||
edit: true
|
||||
envKey: CLOUDREVE_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 5212
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "sqlite"
|
||||
edit: true
|
||||
envKey: CR_CONF_Database.Type
|
||||
labelZh: 数据库 类型
|
||||
labelEn: Database Type
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: PostgreSQL
|
||||
value: postgres
|
||||
- label: MySQL (MariaDB, Percona)
|
||||
value: mysql
|
||||
- label: sqlite
|
||||
value: sqlite
|
||||
- default: "127.0.0.1"
|
||||
edit: true
|
||||
envKey: CR_CONF_Database.Host
|
||||
labelZh: 数据库 主机地址
|
||||
labelEn: Database Host
|
||||
required: false
|
||||
type: text
|
||||
- default: 5432
|
||||
edit: true
|
||||
envKey: CR_CONF_Database.Port
|
||||
labelZh: 数据库 端口
|
||||
labelEn: Database Port
|
||||
required: false
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "cloudreve"
|
||||
edit: true
|
||||
envKey: CR_CONF_Database.Name
|
||||
labelZh: 数据库 名称
|
||||
labelEn: Database Name
|
||||
required: false
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: "cloudreve"
|
||||
edit: true
|
||||
envKey: CR_CONF_Database.User
|
||||
labelZh: 数据库 用户名
|
||||
labelEn: Database Username
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CR_CONF_Database.Password
|
||||
labelZh: 数据库 密码
|
||||
labelEn: Database Password
|
||||
random: true
|
||||
required: false
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "127.0.0.1:6379"
|
||||
edit: true
|
||||
envKey: CR_CONF_Redis.Server
|
||||
labelZh: Redis 地址
|
||||
labelEn: Redis Address
|
||||
required: false
|
||||
type: text
|
||||
- default: 0
|
||||
edit: true
|
||||
envKey: CR_CONF_Redis.DB
|
||||
labelZh: Redis 索引 (0-20)
|
||||
labelEn: Redis Index (0-20)
|
||||
required: false
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CR_CONF_Redis.User
|
||||
labelZh: Redis 用户
|
||||
labelEn: Redis User
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CR_CONF_Redis.Password
|
||||
labelZh: Redis 密码
|
||||
labelEn: Redis Password
|
||||
required: false
|
||||
type: password
|
||||
21
appstore/cloudreve/4.0.0/docker-compose.yml
Normal file
21
appstore/cloudreve/4.0.0/docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
cloudreve:
|
||||
container_name: cloudreve
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
image: loudreve/cloudreve:4.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:5212
|
||||
restart: always
|
||||
volumes:
|
||||
- ${CLOUDREVE_ROOT_PATH}/data:/cloudreve/data
|
||||
21
appstore/cloudreve/README.md
Normal file
21
appstore/cloudreve/README.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Cloudreve
|
||||
|
||||
Cloudreve 可以让您快速搭建起公私兼备的网盘系统。Cloudreve 在底层支持不同的云存储平台,用户在实际使用时无须关心物理存储方式。你可以使用
|
||||
Cloudreve 搭建个人用网盘、文件分享系统,亦或是针对大小团体的公有云系统。
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 简介
|
||||
|
||||
Cloudreve 本身是一款“网盘”而非“其他网盘的管理器”,其所支持的存储提供商大多为公有云的存储专用产品,而非针对个人消费者的网盘。下面情况并不适合使用
|
||||
Cloudreve:
|
||||
|
||||
+ 我需要用 Cloudreve 管理多个网盘上的文件;
|
||||
+ 对于 Cloudreve 存储的文件,我同时也会使用其他文件管理器一起管理;
|
||||
+ 我想把其他网盘存储服务“再分发”给我的用户使用;
|
||||
|
||||
---
|
||||
|
||||

|
||||
14
appstore/cloudreve/data.yml
Normal file
14
appstore/cloudreve/data.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
additionalProperties:
|
||||
key: cloudreve
|
||||
name: Cloudreve
|
||||
tags:
|
||||
- WebSite
|
||||
- Local
|
||||
shortDescZh: 公私兼备的网盘系统
|
||||
shortDescEn: A private and public cloud storage system
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://cloudreve.org/
|
||||
github: https://github.com/cloudreve/Cloudreve/
|
||||
document: https://docs.cloudreve.org/
|
||||
BIN
appstore/cloudreve/logo.png
Normal file
BIN
appstore/cloudreve/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
35
appstore/cloudreve/logo.svg
Normal file
35
appstore/cloudreve/logo.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 130 KiB |
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -29,7 +29,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -45,7 +45,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -12,7 +12,7 @@ services:
|
||||
- LOG_LEVEL=debug
|
||||
- TZ=Asia/Shanghai
|
||||
- https_proxy=${http_proxy:-}
|
||||
image: fallenbagel/jellyseerr:2.6.0
|
||||
image: fallenbagel/jellyseerr:2.7.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -57,7 +57,7 @@ services:
|
||||
- -f
|
||||
- http://localhost:1200/healthz?key=${ACCESS_KEY}
|
||||
timeout: 10s
|
||||
image: diygod/rsshub:2025-06-19
|
||||
image: diygod/rsshub:2025-06-20
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -12,7 +12,7 @@ services:
|
||||
- PGID=1000
|
||||
- UMASK=022
|
||||
- TZ=Asia/Shanghai
|
||||
image: linuxserver/sonarr:4.0.14
|
||||
image: linuxserver/sonarr:4.0.15
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
17
appstore/sonarr/4.0.15/scripts/init.sh
Normal file
17
appstore/sonarr/4.0.15/scripts/init.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
17
appstore/sonarr/4.0.15/scripts/upgrade.sh
Normal file
17
appstore/sonarr/4.0.15/scripts/upgrade.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -16,7 +16,7 @@ services:
|
||||
- WEBLATE_ALLOWED_HOSTS=*
|
||||
- POSTGRES_DATABASE=weblate
|
||||
- CLIENT_MAX_BODY_SIZE=200M
|
||||
image: weblate/weblate:5.12.1.0
|
||||
image: weblate/weblate:5.12.2.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
10
appstore/weblate/5.12.2.0/scripts/uninstall.sh
Normal file
10
appstore/weblate/5.12.2.0/scripts/uninstall.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
42
dockge/cloudreve/.env
Normal file
42
dockge/cloudreve/.env
Normal file
@@ -0,0 +1,42 @@
|
||||
# 数据库服务 (前置检查)
|
||||
PANEL_DB_TYPE=postgresql
|
||||
|
||||
# Redis 服务 (前置检查)
|
||||
PANEL_REDIS_TYPE=redis
|
||||
|
||||
# 数据持久化路径 [必填]
|
||||
CLOUDREVE_ROOT_PATH=/home/cloudreve
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=5212
|
||||
|
||||
# 数据库 类型 [必填]
|
||||
CR_CONF_Database.Type=sqlite
|
||||
|
||||
# 数据库 主机地址
|
||||
CR_CONF_Database.Host=127.0.0.1
|
||||
|
||||
# 数据库 端口
|
||||
CR_CONF_Database.Port=5432
|
||||
|
||||
# 数据库 名称
|
||||
CR_CONF_Database.Name=cloudreve
|
||||
|
||||
# 数据库 用户名
|
||||
CR_CONF_Database.User=cloudreve
|
||||
|
||||
# 数据库 密码
|
||||
CR_CONF_Database.Password=
|
||||
|
||||
# Redis 地址
|
||||
CR_CONF_Redis.Server=127.0.0.1:6379
|
||||
|
||||
# Redis 索引 (0-20)
|
||||
CR_CONF_Redis.DB=0
|
||||
|
||||
# Redis 用户
|
||||
CR_CONF_Redis.User=
|
||||
|
||||
# Redis 密码
|
||||
CR_CONF_Redis.Password=
|
||||
|
||||
21
dockge/cloudreve/docker-compose.yml
Normal file
21
dockge/cloudreve/docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
cloudreve:
|
||||
container_name: cloudreve
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
image: loudreve/cloudreve:4.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:5212
|
||||
restart: always
|
||||
volumes:
|
||||
- ${CLOUDREVE_ROOT_PATH}/data:/cloudreve/data
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -29,7 +29,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
2
dockge/immich-server_1_135_2/envs/default.env
Normal file
2
dockge/immich-server_1_135_2/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
dockge/immich-server_1_135_2/envs/global.env
Normal file
2
dockge/immich-server_1_135_2/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -45,7 +45,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.1
|
||||
image: ghcr.io/immich-app/immich-server:v1.135.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
2
dockge/immich_1_135_2/envs/default.env
Normal file
2
dockge/immich_1_135_2/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
dockge/immich_1_135_2/envs/global.env
Normal file
2
dockge/immich_1_135_2/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -12,7 +12,7 @@ services:
|
||||
- LOG_LEVEL=debug
|
||||
- TZ=Asia/Shanghai
|
||||
- https_proxy=${http_proxy:-}
|
||||
image: fallenbagel/jellyseerr:2.6.0
|
||||
image: fallenbagel/jellyseerr:2.7.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
@@ -57,7 +57,7 @@ services:
|
||||
- -f
|
||||
- http://localhost:1200/healthz?key=${ACCESS_KEY}
|
||||
timeout: 10s
|
||||
image: diygod/rsshub:2025-06-19
|
||||
image: diygod/rsshub:2025-06-20
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
@@ -12,7 +12,7 @@ services:
|
||||
- PGID=1000
|
||||
- UMASK=022
|
||||
- TZ=Asia/Shanghai
|
||||
image: linuxserver/sonarr:4.0.14
|
||||
image: linuxserver/sonarr:4.0.15
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
@@ -16,7 +16,7 @@ services:
|
||||
- WEBLATE_ALLOWED_HOSTS=*
|
||||
- POSTGRES_DATABASE=weblate
|
||||
- CLIENT_MAX_BODY_SIZE=200M
|
||||
image: weblate/weblate:5.12.1.0
|
||||
image: weblate/weblate:5.12.2.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
Reference in New Issue
Block a user