mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-03-13 00:20:46 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
parent
93dc4054f4
commit
db94f9f0b9
@ -11,7 +11,7 @@ services:
|
|||||||
- PORT=7789
|
- PORT=7789
|
||||||
- CONFIG=/config
|
- CONFIG=/config
|
||||||
- TZ=Asia/Shanghai
|
- TZ=Asia/Shanghai
|
||||||
image: wushuo894/ani-rss:v1.1.311
|
image: wushuo894/ani-rss:v1.1.312
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
15
appstore/auto-lady/1.5.3/.env
Normal file
15
appstore/auto-lady/1.5.3/.env
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
AUTO_LADY_ROOT_PATH=/home/auto-lady
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8080
|
||||||
|
|
||||||
|
# 自定义挂载目录 1
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_1=
|
||||||
|
|
||||||
|
# 自定义挂载目录 2
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_2=
|
||||||
|
|
||||||
|
# 自定义挂载目录 3
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_3=
|
||||||
|
|
38
appstore/auto-lady/1.5.3/data.yml
Normal file
38
appstore/auto-lady/1.5.3/data.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "/home/auto-lady"
|
||||||
|
edit: true
|
||||||
|
envKey: AUTO_LADY_ROOT_PATH
|
||||||
|
labelZh: 数据持久化路径
|
||||||
|
labelEn: Data persistence path
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: 8080
|
||||||
|
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
|
22
appstore/auto-lady/1.5.3/docker-compose.yml
Normal file
22
appstore/auto-lady/1.5.3/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
auto-lady:
|
||||||
|
container_name: auto-lady
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
image: envyafish/byte-muse:1.5.3
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${AUTO_LADY_ROOT_PATH}/config:/data
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|
2
appstore/auto-lady/1.5.3/envs/default.env
Normal file
2
appstore/auto-lady/1.5.3/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/auto-lady/1.5.3/envs/global.env
Normal file
2
appstore/auto-lady/1.5.3/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/auto-lady/1.5.3/scripts/init.sh
Normal file
17
appstore/auto-lady/1.5.3/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
appstore/auto-lady/1.5.3/scripts/uninstall.sh
Normal file
10
appstore/auto-lady/1.5.3/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
appstore/auto-lady/1.5.3/scripts/upgrade.sh
Normal file
17
appstore/auto-lady/1.5.3/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
|
@ -7,6 +7,8 @@
|
|||||||

|

|
||||||
|
|
||||||
> 已下架
|
> 已下架
|
||||||
|
>
|
||||||
|
> 请自行升级至 `byte-muse` 当前应用不在升级。
|
||||||
|
|
||||||
## 应用说明
|
## 应用说明
|
||||||
|
|
||||||
|
15
appstore/byte-muse/1.5.3/.env
Normal file
15
appstore/byte-muse/1.5.3/.env
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
AUTO_LADY_ROOT_PATH=/home/byte-muse
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8080
|
||||||
|
|
||||||
|
# 自定义挂载目录 1
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_1=
|
||||||
|
|
||||||
|
# 自定义挂载目录 2
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_2=
|
||||||
|
|
||||||
|
# 自定义挂载目录 3
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_3=
|
||||||
|
|
38
appstore/byte-muse/1.5.3/data.yml
Normal file
38
appstore/byte-muse/1.5.3/data.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "/home/byte-muse"
|
||||||
|
edit: true
|
||||||
|
envKey: AUTO_LADY_ROOT_PATH
|
||||||
|
labelZh: 数据持久化路径
|
||||||
|
labelEn: Data persistence path
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: 8080
|
||||||
|
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
|
22
appstore/byte-muse/1.5.3/docker-compose.yml
Normal file
22
appstore/byte-muse/1.5.3/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
auto-lady:
|
||||||
|
container_name: byte-muse
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
image: envyafish/byte-muse:1.5.3
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${AUTO_LADY_ROOT_PATH}/config:/data
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|
2
appstore/byte-muse/1.5.3/envs/default.env
Normal file
2
appstore/byte-muse/1.5.3/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/byte-muse/1.5.3/envs/global.env
Normal file
2
appstore/byte-muse/1.5.3/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/byte-muse/1.5.3/scripts/init.sh
Normal file
17
appstore/byte-muse/1.5.3/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
appstore/byte-muse/1.5.3/scripts/uninstall.sh
Normal file
10
appstore/byte-muse/1.5.3/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
appstore/byte-muse/1.5.3/scripts/upgrade.sh
Normal file
17
appstore/byte-muse/1.5.3/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
|
36
appstore/byte-muse/README.md
Normal file
36
appstore/byte-muse/README.md
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# Byte Muse
|
||||||
|
|
||||||
|
自动化订阅AV影片
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
<div style="border: 1px solid #FFC107; padding: 10px; border-radius: 5px; color: #856404; background-color: #FFF3CD; display: inline-block; width: 100%; max-width: 60%; margin-top: 10px;">
|
||||||
|
<div style="display: flex; align-items: center;">
|
||||||
|
<span style="font-size: 24px; margin-right: 8px;">⚠️</span>
|
||||||
|
<div>
|
||||||
|
<strong style="font-size: 16px;">温馨提示</strong><br>
|
||||||
|
<span style="font-size: 14px; color: #333;">禁止在国内宣传该产品</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## 应用说明
|
||||||
|
|
||||||
|
> 目前仅支持 MT,FSM,PTT 三个 PT 站点的 AV 采集订阅
|
||||||
|
>
|
||||||
|
> 账号密码可在 `日志` 查看
|
||||||
|
|
||||||
|
## 应用配置
|
||||||
|
|
||||||
|
+ qBittorrent 下载器
|
||||||
|
+ PT 站点密钥
|
||||||
|
|
||||||
|
## 安装说明
|
||||||
|
|
||||||
|
> 激活请通过 `license` 版本进行激活
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|

|
15
appstore/byte-muse/data.yml
Normal file
15
appstore/byte-muse/data.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: byte-muse
|
||||||
|
name: Byte Muse
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Tool
|
||||||
|
- Local
|
||||||
|
shortDescZh: 自动化订阅AV影片
|
||||||
|
shortDescEn: Byte Muse is a tool for automatically subscribing to AV movies
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://github.com/envyafish/AutoLadyIssue/
|
||||||
|
github: https://github.com/envyafish/AutoLadyIssue/
|
||||||
|
document: https://github.com/envyafish/AutoLadyIssue/
|
3
appstore/byte-muse/license/.env
Normal file
3
appstore/byte-muse/license/.env
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=5000
|
||||||
|
|
10
appstore/byte-muse/license/data.yml
Normal file
10
appstore/byte-muse/license/data.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 5000
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
14
appstore/byte-muse/license/docker-compose.yml
Normal file
14
appstore/byte-muse/license/docker-compose.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
byte-muse-license:
|
||||||
|
container_name: byte-muse
|
||||||
|
image: envyafish/byte-muse-license:latest
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:5000
|
||||||
|
restart: always
|
2
appstore/byte-muse/license/envs/default.env
Normal file
2
appstore/byte-muse/license/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/byte-muse/license/envs/global.env
Normal file
2
appstore/byte-muse/license/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/byte-muse/license/scripts/init.sh
Normal file
17
appstore/byte-muse/license/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
appstore/byte-muse/license/scripts/uninstall.sh
Normal file
10
appstore/byte-muse/license/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
appstore/byte-muse/license/scripts/upgrade.sh
Normal file
17
appstore/byte-muse/license/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
appstore/byte-muse/logo.png
Normal file
BIN
appstore/byte-muse/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
@ -11,7 +11,7 @@ services:
|
|||||||
- PORT=7789
|
- PORT=7789
|
||||||
- CONFIG=/config
|
- CONFIG=/config
|
||||||
- TZ=Asia/Shanghai
|
- TZ=Asia/Shanghai
|
||||||
image: wushuo894/ani-rss:v1.1.311
|
image: wushuo894/ani-rss:v1.1.312
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
|
15
dockge/auto-lady_1_5_3/.env
Normal file
15
dockge/auto-lady_1_5_3/.env
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
AUTO_LADY_ROOT_PATH=/home/auto-lady
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8080
|
||||||
|
|
||||||
|
# 自定义挂载目录 1
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_1=
|
||||||
|
|
||||||
|
# 自定义挂载目录 2
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_2=
|
||||||
|
|
||||||
|
# 自定义挂载目录 3
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_3=
|
||||||
|
|
22
dockge/auto-lady_1_5_3/docker-compose.yml
Normal file
22
dockge/auto-lady_1_5_3/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
auto-lady:
|
||||||
|
container_name: auto-lady
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
image: envyafish/byte-muse:1.5.3
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${AUTO_LADY_ROOT_PATH}/config:/data
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|
2
dockge/auto-lady_1_5_3/envs/default.env
Normal file
2
dockge/auto-lady_1_5_3/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/auto-lady_1_5_3/envs/global.env
Normal file
2
dockge/auto-lady_1_5_3/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
15
dockge/byte-muse/.env
Normal file
15
dockge/byte-muse/.env
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
AUTO_LADY_ROOT_PATH=/home/byte-muse
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8080
|
||||||
|
|
||||||
|
# 自定义挂载目录 1
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_1=
|
||||||
|
|
||||||
|
# 自定义挂载目录 2
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_2=
|
||||||
|
|
||||||
|
# 自定义挂载目录 3
|
||||||
|
CUSTOM_MOUNT_DIRECTORY_3=
|
||||||
|
|
22
dockge/byte-muse/docker-compose.yml
Normal file
22
dockge/byte-muse/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
auto-lady:
|
||||||
|
container_name: byte-muse
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
image: envyafish/byte-muse:1.5.3
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${AUTO_LADY_ROOT_PATH}/config:/data
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
||||||
|
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|
2
dockge/byte-muse/envs/default.env
Normal file
2
dockge/byte-muse/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/byte-muse/envs/global.env
Normal file
2
dockge/byte-muse/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
3
dockge/byte-muse_license/.env
Normal file
3
dockge/byte-muse_license/.env
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=5000
|
||||||
|
|
14
dockge/byte-muse_license/docker-compose.yml
Normal file
14
dockge/byte-muse_license/docker-compose.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
byte-muse-license:
|
||||||
|
container_name: byte-muse
|
||||||
|
image: envyafish/byte-muse-license:latest
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:5000
|
||||||
|
restart: always
|
2
dockge/byte-muse_license/envs/default.env
Normal file
2
dockge/byte-muse_license/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/byte-muse_license/envs/global.env
Normal file
2
dockge/byte-muse_license/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
Loading…
x
Reference in New Issue
Block a user