Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2025-10-09 03:33:13 +00:00
parent 4e56697b92
commit 80a3445d09
85 changed files with 26 additions and 1046 deletions
-48
View File
@@ -1,48 +0,0 @@
# Redis 服务 (前置检查) [必填]
PANEL_REDIS_TYPE=redis
# Postgres 服务 (前置检查) [必填]
PANEL_POSTGRES_TYPE=postgresql
# 数据持久化路径 [必填]
IMMICH_ROOT_PATH=/home/immich-app
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=2283
# 时区 [必填]
TZ=Asia/Shanghai
# 数据库 主机地址 [必填]
DB_HOSTNAME=127.0.0.1
# 数据库 端口 [必填]
DB_PORT=5432
# 数据库 用户名 [必填]
DB_USERNAME=postgres
# 数据库 密码 [必填]
DB_PASSWORD=
# 数据库 名称 [必填]
DB_DATABASE_NAME=immich
# Redis 主机 [必填]
REDIS_HOSTNAME=127.0.0.1
# Redis 端口 [必填]
REDIS_PORT=6379
# Redis 索引 [必填]
REDIS_DBINDEX=0
# Redis 用户名
REDIS_USERNAME=
# Redis 密码
REDIS_PASSWORD=
# 是否跳过目录检查
IMMICH_IGNORE_MOUNT_CHECK_ERRORS=false
-138
View File
@@ -1,138 +0,0 @@
additionalProperties:
formFields:
- child:
default: ""
envKey: PANEL_REDIS_SERVICE
required: true
type: service
default: redis
envKey: PANEL_REDIS_TYPE
labelZh: Redis 服务 (前置检查)
labelEn: Redis Service (Pre-check)
required: true
type: apps
values:
- label: Redis
value: redis
- child:
default: ""
envKey: PANEL_POSTGRES_SERVICE
required: true
type: service
default: postgresql
envKey: PANEL_POSTGRES_TYPE
labelZh: Postgres 服务 (前置检查)
labelEn: Postgres Service (Pre-check)
required: true
type: apps
values:
- label: PostgreSQL
value: postgresql
- default: "/home/immich-app"
edit: true
envKey: IMMICH_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 2283
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "Asia/Shanghai"
edit: true
envKey: TZ
labelZh: 时区
labelEn: Timezone
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: DB_HOSTNAME
labelZh: 数据库 主机地址
labelEn: Database Host
required: true
type: text
- default: 5432
edit: true
envKey: DB_PORT
labelZh: 数据库 端口
labelEn: Database Port
required: true
rule: paramPort
type: number
- default: "postgres"
edit: true
envKey: DB_USERNAME
labelZh: 数据库 用户名
labelEn: Database User
required: true
type: text
- default: ""
edit: true
envKey: DB_PASSWORD
labelZh: 数据库 密码
labelEn: Database Password
random: true
required: true
rule: paramComplexity
type: password
- default: "immich"
edit: true
envKey: DB_DATABASE_NAME
labelZh: 数据库 名称
labelEn: Database Name
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: REDIS_HOSTNAME
labelZh: Redis 主机
labelEn: Redis Host
required: true
type: text
- default: 6379
edit: true
envKey: REDIS_PORT
labelZh: Redis 端口
labelEn: Redis Port
required: true
rule: paramPort
type: number
- default: 0
edit: true
envKey: REDIS_DBINDEX
labelZh: Redis 索引
labelEn: Redis Index
required: true
type: number
- default: ""
edit: true
envKey: REDIS_USERNAME
labelZh: Redis 用户名
labelEn: Redis Username
required: false
type: text
- default: ""
edit: true
envKey: REDIS_PASSWORD
labelZh: Redis 密码
labelEn: Redis Password
required: false
type: password
- default: "false"
edit: true
envKey: IMMICH_IGNORE_MOUNT_CHECK_ERRORS
labelZh: 是否跳过目录检查
labelEn: Skip Mount Check
required: false
type: select
values:
- label: 跳过检查
value: "true"
- label: 不跳过检查
value: "false"
@@ -1,23 +0,0 @@
name: immich-server
networks:
1panel-network:
external: true
services:
immich-server:
container_name: immich-server-immich-server
devices:
- /dev/dri:/dev/dri
env_file:
- ./envs/global.env
- .env
image: ghcr.io/immich-app/immich-server:v1.136.0
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:2283
restart: always
volumes:
- ${IMMICH_ROOT_PATH}/data/library:/usr/src/app/upload
- /etc/localtime:/etc/localtime
@@ -1,2 +0,0 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
@@ -1,2 +0,0 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
@@ -1,17 +0,0 @@
#!/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
@@ -1,10 +0,0 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -1,17 +0,0 @@
#!/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
@@ -4,13 +4,13 @@ networks:
external: true
services:
immich-server:
container_name: immich-server-immich-server
container_name: immich-server
devices:
- /dev/dri:/dev/dri
env_file:
- ./envs/global.env
- .env
image: ghcr.io/immich-app/immich-server:v1.132.3
image: ghcr.io/immich-app/immich-server:v2.0.1
labels:
createdBy: Apps
networks:
@@ -19,5 +19,5 @@ services:
- ${PANEL_APP_PORT_HTTP}:2283
restart: always
volumes:
- ${IMMICH_ROOT_PATH}/data/library:/usr/src/app/upload
- ${IMMICH_ROOT_PATH}/data/library:/data
- /etc/localtime:/etc/localtime
+3 -3
View File
@@ -8,8 +8,8 @@
shortDescZh: 高性能自托管照片和视频备份解决方案
shortDescEn: High performance self-hosted photo and video backup solution
type: website
crossVersionUpdate: true
crossVersionUpdate: false
limit: 0
website: https://immich.app/
github: https://github.com/immich-app/immich
document: https://immich.app/docs/overview/introduction
github: https://github.com/immich-app/immich/
document: https://docs.immich.app/