35
apps/stash-box/README.md
Normal file
35
apps/stash-box/README.md
Normal file
@@ -0,0 +1,35 @@
|
||||
# Stash Box
|
||||
|
||||
视频索引和感知哈希元数据API
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 简介
|
||||
|
||||
Stash 是一个用 Go 语言编写的网页应用程序,用于为您存储和组织色情收藏。它是自托管的,并遵循 AGPL-3.0 许可协议发布。
|
||||
|
||||
+ Stash 从互联网收集您收藏中的视频信息,并通过使用社区构建的插件扩展,支持大量内容制作者和网站。
|
||||
|
||||
+ Stash 支持多种视频和图像格式。
|
||||
|
||||
+ 您可以标记视频,稍后找到它们。
|
||||
|
||||
+ Stash 提供关于表演者、标签、工作室等统计信息。
|
||||
|
||||
## 安装说明
|
||||
|
||||
### 网络代理
|
||||
|
||||
请前往持久化目录下, 修改 `config/config.yml` 配置文件。
|
||||
|
||||
增加配置:
|
||||
|
||||
```yml
|
||||
proxy: http://127.0.0.1:7890
|
||||
```
|
||||
|
||||
---
|
||||
|
||||

|
||||
14
apps/stash-box/data.yml
Normal file
14
apps/stash-box/data.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
additionalProperties:
|
||||
key: stash-box
|
||||
name: Stash Box
|
||||
tags:
|
||||
- WebSite
|
||||
- Local
|
||||
shortDescZh: 视频索引和感知哈希元数据API
|
||||
shortDescEn: Video indexing and perceptual hash metadata API
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://stashapp.cc/
|
||||
github: https://github.com/stashapp/stash/
|
||||
document: https://docs.stashapp.cc/
|
||||
68
apps/stash-box/development/data.yml
Normal file
68
apps/stash-box/development/data.yml
Normal file
@@ -0,0 +1,68 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/stash"
|
||||
edit: true
|
||||
envKey: STASH_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: "host"
|
||||
edit: true
|
||||
envKey: NETWORK_MODE
|
||||
labelEn: Drive path
|
||||
labelZh: 网络模式
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 主机网络模式
|
||||
value: "host"
|
||||
- label: 桥接网络模式
|
||||
value: "bridge"
|
||||
- label: 无网络模式
|
||||
value: "none"
|
||||
- label: 1panel-network
|
||||
value: "1panel-network"
|
||||
- default: 9999
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_1
|
||||
labelEn: Custom mount directory 1
|
||||
labelZh: 自定义挂载目录 1
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_2
|
||||
labelEn: Custom mount directory 2
|
||||
labelZh: 自定义挂载目录 2
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: CUSTOM_MOUNT_DIRECTORY_3
|
||||
labelEn: Custom mount directory 3
|
||||
labelZh: 自定义挂载目录 3
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: HTTP_PROXY
|
||||
labelZh: 网络代理地址
|
||||
labelEn: Network proxy address
|
||||
required: false
|
||||
type: text
|
||||
- default: "localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local"
|
||||
edit: true
|
||||
envKey: NO_PROXY
|
||||
labelZh: 跳过代理地址
|
||||
labelEn: Skip proxy address
|
||||
required: false
|
||||
type: text
|
||||
28
apps/stash-box/development/docker-compose.yml
Normal file
28
apps/stash-box/development/docker-compose.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
stash-box:
|
||||
image: stashapp/stash-box:development
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
- createdBy=Apps
|
||||
- traefik.http.routers.stash-box.rule=Host(`<DOMAIN>`)
|
||||
- traefik.http.routers.stash-box.tls=true
|
||||
- traefik.http.routers.stash-box.tls.certresolver=stash-box
|
||||
- traefik.port=9998
|
||||
restart: always
|
||||
network_mode: ${NETWORK_MODE:-host}
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||
env_file:
|
||||
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
|
||||
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-file: "10"
|
||||
max-size: "2m"
|
||||
volumes:
|
||||
- ${STASH_ROOT_PATH}/data:/root/.stash-box
|
||||
2
apps/stash-box/development/envs/default.env
Normal file
2
apps/stash-box/development/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
apps/stash-box/development/envs/global.env
Normal file
2
apps/stash-box/development/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
17
apps/stash-box/development/scripts/init.sh
Normal file
17
apps/stash-box/development/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
|
||||
10
apps/stash-box/development/scripts/uninstall.sh
Normal file
10
apps/stash-box/development/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
|
||||
17
apps/stash-box/development/scripts/upgrade.sh
Normal file
17
apps/stash-box/development/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
|
||||
BIN
apps/stash-box/logo.png
Normal file
BIN
apps/stash-box/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
Reference in New Issue
Block a user