Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
57acc74500 | |||
ba82141d96 | |||
7007f193eb | |||
d364a1f005 | |||
aa2999ea73 | |||
9669a40fcb | |||
b4f4603393 | |||
dbcfebe8c0 | |||
756ef6ab6d | |||
67685ff2f7 | |||
732cbd1292 |
30
.gitea/ISSUE_TEMPLATE/apps_submission.yaml
Normal file
30
.gitea/ISSUE_TEMPLATE/apps_submission.yaml
Normal file
@ -0,0 +1,30 @@
|
||||
name: 提交新应用
|
||||
description: 提交 Docker 的新应用
|
||||
title: "[新应用] "
|
||||
labels: ["app"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
欢迎提交 Docker 应用,以完善此应用商店。请不要使用此类型模板提交问题!
|
||||
- type: input
|
||||
id: name
|
||||
attributes:
|
||||
label: 应用名称
|
||||
description: 输入提交的应用名称。
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: introduction
|
||||
attributes:
|
||||
label: 应用介绍 / 荐语
|
||||
description: 输入此应用介绍和你的推荐语。(最好带上应用截图)
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: links
|
||||
attributes:
|
||||
label: 应用链接
|
||||
validations:
|
||||
required: true
|
||||
|
5
apps/alist/3.41.0/.env
Normal file
5
apps/alist/3.41.0/.env
Normal file
@ -0,0 +1,5 @@
|
||||
# 容器名称
|
||||
CONTAINER_NAME=alist
|
||||
|
||||
# 网页端口
|
||||
PANEL_APP_PORT_HTTP=5244
|
17
apps/alist/3.41.0/data.yml
Normal file
17
apps/alist/3.41.0/data.yml
Normal file
@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: alist
|
||||
edit: true
|
||||
envKey: CONTAINER_NAME
|
||||
labelEn: Container Name
|
||||
labelZh: 容器名称
|
||||
required: false
|
||||
type: text
|
||||
- default: 5244
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: WebUI Port
|
||||
labelZh: 网页端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
23
apps/alist/3.41.0/docker-compose.yml
Normal file
23
apps/alist/3.41.0/docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
||||
networks:
|
||||
chish-network:
|
||||
external: true
|
||||
services:
|
||||
alist:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
env_file:
|
||||
- .env
|
||||
image: xhofe/alist:v3.41.0
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- chish-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:5244"
|
||||
volumes:
|
||||
- ./data/data:/opt/alist/data
|
||||
- ./data/mnt:/mnt/data
|
||||
environment:
|
||||
- PUID=0
|
||||
- PGID=0
|
||||
- UMASK=022
|
42
apps/alist/README.md
Normal file
42
apps/alist/README.md
Normal file
@ -0,0 +1,42 @@
|
||||
# 账号密码
|
||||
|
||||
容器列表点击 `终端` 按钮,进入容器内执行命令设置密码。
|
||||
|
||||
- **生成随机密码**:`./alist admin random`
|
||||
- **手动设置密码**:`./alist admin set NEW_PASSWORD`
|
||||
|
||||
# AList
|
||||
|
||||
AList 是一个支持多种存储,支持网页浏览和 WebDAV 的文件列表程序,由 gin 和 Solidjs 驱动。
|
||||
|
||||
## 支持的存储:
|
||||
|
||||
- 本地存储
|
||||
- [阿里云盘](https://www.aliyundrive.com/)
|
||||
- OneDrive / Sharepoint([国际版](https://www.office.com/), [世纪互联](https://portal.partner.microsoftonline.cn),de,us)
|
||||
- [天翼云盘](https://cloud.189.cn) (个人云, 家庭云)
|
||||
- [GoogleDrive](https://drive.google.com/)
|
||||
- [123云盘](https://www.123pan.com/)
|
||||
- FTP / SFTP
|
||||
- [PikPak](https://www.mypikpak.com/)
|
||||
- [S3](https://aws.amazon.com/cn/s3/)
|
||||
- [Seafile](https://seafile.com/)
|
||||
- [又拍云对象存储](https://www.upyun.com/products/file-storage)
|
||||
- WebDav(支持无API的OneDrive/SharePoint)
|
||||
- Teambition([中国](https://www.teambition.com/ ),[国际](https://us.teambition.com/ ))
|
||||
- [分秒帧](https://www.mediatrack.cn/)
|
||||
- [和彩云](https://yun.139.com/) (个人云, 家庭云)
|
||||
- [Yandex.Disk](https://disk.yandex.com/)
|
||||
- [百度网盘](http://pan.baidu.com/)
|
||||
- [UC网盘](https://drive.uc.cn)
|
||||
- [夸克网盘](https://pan.quark.cn)
|
||||
- [迅雷网盘](https://pan.xunlei.com)
|
||||
- [蓝奏云](https://www.lanzou.com/)
|
||||
- [阿里云盘分享](https://www.aliyundrive.com/)
|
||||
- [谷歌相册](https://photos.google.com/)
|
||||
- [Mega.nz](https://mega.nz)
|
||||
- [一刻相册](https://photo.baidu.com/)
|
||||
- SMB
|
||||
- [115](https://115.com/)
|
||||
- Cloudreve
|
||||
- [Dropbox](https://www.dropbox.com/)
|
15
apps/alist/data.yml
Normal file
15
apps/alist/data.yml
Normal file
@ -0,0 +1,15 @@
|
||||
additionalProperties:
|
||||
key: alist
|
||||
name: AList
|
||||
tags:
|
||||
- 工具
|
||||
- 云存储
|
||||
shortDescZh: 一个支持多存储的文件列表程序
|
||||
shortDescEn: A file list program that supports multiple storage
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://github.com/alist-org/alist
|
||||
github: https://github.com/alist-org/alist
|
||||
document: https://alist.nn.ci/zh/
|
BIN
apps/alist/logo.png
Normal file
BIN
apps/alist/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
24
apps/jellyfin/10.10.3/data.yml
Normal file
24
apps/jellyfin/10.10.3/data.yml
Normal file
@ -0,0 +1,24 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 8096
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: WebUI Port
|
||||
labelZh: 网页端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data/media
|
||||
edit: true
|
||||
envKey: MEDIA_FOLDER_PATH
|
||||
labelEn: Media folder path
|
||||
labelZh: 媒体文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ./data/cache
|
||||
edit: true
|
||||
envKey: CACHE_FOLDER_PATH
|
||||
labelEn: Cache folder path
|
||||
labelZh: 缓存文件夹路径
|
||||
required: true
|
||||
type: text
|
21
apps/jellyfin/10.10.3/docker-compose.yml
Normal file
21
apps/jellyfin/10.10.3/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
||||
networks:
|
||||
chish-network:
|
||||
external: true
|
||||
services:
|
||||
jellyfin:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- chish-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:8096"
|
||||
volumes:
|
||||
- "./data/config:/config"
|
||||
- "${CACHE_FOLDER_PATH}:/cache"
|
||||
- "${MEDIA_FOLDER_PATH}:/media/media"
|
||||
devices:
|
||||
- /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes
|
||||
#- /dev/vchiq:/dev/vchiq # MMAL/OMX on Raspberry Pi
|
||||
image: "jellyfin/jellyfin:10.10.3"
|
||||
labels:
|
||||
createdBy: "Apps"
|
14
apps/jellyfin/data.yml
Normal file
14
apps/jellyfin/data.yml
Normal file
@ -0,0 +1,14 @@
|
||||
additionalProperties:
|
||||
key: jellyfin
|
||||
name: Jellyfin
|
||||
tags:
|
||||
- 多媒体
|
||||
shortDescZh: 多媒体应用程序软件套装
|
||||
shortDescEn: Multimedia application software suite
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://jellyfin.org/
|
||||
github: https://github.com/jellyfin/jellyfin
|
||||
document: https://jellyfin.org/docs/
|
BIN
apps/jellyfin/logo.png
Normal file
BIN
apps/jellyfin/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
Loading…
x
Reference in New Issue
Block a user