发布 Stash Box

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
Meng Sen
2025-03-21 13:28:59 +08:00
parent b7170e934f
commit 413362acfa
10 changed files with 193 additions and 0 deletions

35
apps/stash-box/README.md Normal file
View File

@@ -0,0 +1,35 @@
# Stash Box
视频索引和感知哈希元数据API
![Stash](https://file.lifebus.top/imgs/stasho_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
Stash 是一个用 Go 语言编写的网页应用程序,用于为您存储和组织色情收藏。它是自托管的,并遵循 AGPL-3.0 许可协议发布。
+ Stash 从互联网收集您收藏中的视频信息,并通过使用社区构建的插件扩展,支持大量内容制作者和网站。
+ Stash 支持多种视频和图像格式。
+ 您可以标记视频,稍后找到它们。
+ Stash 提供关于表演者、标签、工作室等统计信息。
## 安装说明
### 网络代理
请前往持久化目录下, 修改 `config/config.yml` 配置文件。
增加配置:
```yml
proxy: http://127.0.0.1:7890
```
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

14
apps/stash-box/data.yml Normal file
View 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/

View 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

View 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

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View 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

View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB