mirror of
https://github.com/QYG2297248353/appstore-dpanel
synced 2025-12-29 08:01:36 +08:00
Synced apps from source repository via GitHub Actions
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
# SMTP 端口 [必填]
|
||||||
|
PANEL_APP_PORT_SMTP=8025
|
||||||
|
|
||||||
|
# IMAP 端口 [必填]
|
||||||
|
PANEL_APP_PORT_IMAP=11143
|
||||||
|
|
||||||
|
# 服务地址 [必填]
|
||||||
|
PROXY_URL=
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 8025
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_SMTP
|
||||||
|
labelZh: SMTP 端口
|
||||||
|
labelEn: SMTP port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: 11143
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_IMAP
|
||||||
|
labelZh: IMAP 端口
|
||||||
|
labelEn: IMAP port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: ""
|
||||||
|
edit: true
|
||||||
|
envKey: PROXY_URL
|
||||||
|
labelZh: 服务地址
|
||||||
|
labelEn: Server Address
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
smtp_proxy_server:
|
||||||
|
container_name: smtp-proxy-server
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
- proxy_url=${PROXY_URL}
|
||||||
|
- port=${PANEL_APP_PORT_SMTP}
|
||||||
|
- imap_port=${PANEL_APP_PORT_IMAP}
|
||||||
|
image: ghcr.io/dreamhunter2333/cloudflare_temp_email/smtp_proxy_server:v0.9.1
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_SMTP}:${PANEL_APP_PORT_SMTP}
|
||||||
|
- ${PANEL_APP_PORT_IMAP}:${PANEL_APP_PORT_IMAP}
|
||||||
|
restart: always
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
||||||
@@ -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
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -f .env ]; then
|
||||||
|
source .env
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
||||||
@@ -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
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# 临时邮箱 (代理服务)
|
||||||
|
|
||||||
|
搭建 CloudFlare 免费收发 临时域名邮箱
|
||||||
|
|
||||||
|

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

|
||||||
|
|
||||||
|
## 简介
|
||||||
|
|
||||||
|
临时邮箱
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|

|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: smtp-proxy-server
|
||||||
|
name: 临时邮箱 (代理服务)
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Local
|
||||||
|
shortDescZh: 搭建 CloudFlare 免费收发 临时域名邮箱
|
||||||
|
shortDescEn: Build CloudFlare to send and receive temporary domain name emails for free
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://temp-mail-docs.awsl.uk/
|
||||||
|
github: https://github.com/dreamhunter2333/cloudflare_temp_email/
|
||||||
|
document: https://temp-mail-docs.awsl.uk/
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
@@ -25,6 +25,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- ${STREAM_REC_ROOT_PATH}/records:/opt/records
|
- ${STREAM_REC_ROOT_PATH}/records:/opt/records
|
||||||
|
- ${STREAM_REC_ROOT_PATH}/rclone:/root/.config/rclone
|
||||||
- ${STREAM_REC_ROOT_PATH}/download:/download
|
- ${STREAM_REC_ROOT_PATH}/download:/download
|
||||||
stream-rec-frontend:
|
stream-rec-frontend:
|
||||||
container_name: stream-rec
|
container_name: stream-rec
|
||||||
|
|||||||
@@ -0,0 +1,27 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
STREAM_REC_ROOT_PATH=/home/stream-rec
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=15275
|
||||||
|
|
||||||
|
# API 端口 [必填]
|
||||||
|
PANEL_APP_PORT_API=12555
|
||||||
|
|
||||||
|
# 默认用户名 [必填]
|
||||||
|
LOGIN_USERNAME=stream-rec
|
||||||
|
|
||||||
|
# 登录密码 (初始化) [必填]
|
||||||
|
LOGIN_SECRET=stream-rec
|
||||||
|
|
||||||
|
# 加密密钥 [必填]
|
||||||
|
AUTH_SECRET=
|
||||||
|
|
||||||
|
# 访问域名 [必填]
|
||||||
|
NEXT_PUBLIC_BASE_URL=http://127.0.0.1:15275
|
||||||
|
|
||||||
|
# WebSocket API 地址 [必填]
|
||||||
|
WS_API_URL=ws://127.0.0.1:12555/live/update
|
||||||
|
|
||||||
|
# 网络代理
|
||||||
|
HTTP_PROXY=
|
||||||
|
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "/home/stream-rec"
|
||||||
|
edit: true
|
||||||
|
envKey: STREAM_REC_ROOT_PATH
|
||||||
|
labelZh: 数据持久化路径
|
||||||
|
labelEn: Data persistence path
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: 15275
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: 12555
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_API
|
||||||
|
labelZh: API 端口
|
||||||
|
labelEn: API port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "stream-rec"
|
||||||
|
disabled: true
|
||||||
|
envKey: LOGIN_USERNAME
|
||||||
|
labelZh: 默认用户名
|
||||||
|
labelEn: Default Username
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "stream-rec"
|
||||||
|
edit: false
|
||||||
|
envKey: LOGIN_SECRET
|
||||||
|
labelZh: 登录密码 (初始化)
|
||||||
|
labelEn: Login Password (Initialization)
|
||||||
|
required: true
|
||||||
|
random: true
|
||||||
|
type: password
|
||||||
|
- default: ""
|
||||||
|
edit: true
|
||||||
|
envKey: AUTH_SECRET
|
||||||
|
labelZh: 加密密钥
|
||||||
|
labelEn: Encryption Key
|
||||||
|
required: true
|
||||||
|
random: true
|
||||||
|
type: text
|
||||||
|
- default: "http://127.0.0.1:15275"
|
||||||
|
edit: true
|
||||||
|
envKey: NEXT_PUBLIC_BASE_URL
|
||||||
|
labelZh: 访问域名
|
||||||
|
labelEn: Access Domain
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "ws://127.0.0.1:12555/live/update"
|
||||||
|
edit: true
|
||||||
|
envKey: WS_API_URL
|
||||||
|
labelZh: WebSocket API 地址
|
||||||
|
labelEn: WebSocket API URL
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: ""
|
||||||
|
edit: true
|
||||||
|
envKey: HTTP_PROXY
|
||||||
|
labelZh: 网络代理
|
||||||
|
labelEn: Network Proxy
|
||||||
|
required: false
|
||||||
|
type: text
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
stream-rec-backend:
|
||||||
|
container_name: stream-rec-backend
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
- HTTPS_PROXY=${HTTP_PROXY}
|
||||||
|
- LOG_LEVEL=INFO
|
||||||
|
- DB_PATH=/opt/records
|
||||||
|
- DOWNLOAD_PATH=/download
|
||||||
|
- PGID=1000
|
||||||
|
- PUID=1000
|
||||||
|
image: streamrec/stream-rec:dev
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_API}:12555
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${STREAM_REC_ROOT_PATH}/records:/opt/records
|
||||||
|
- ${STREAM_REC_ROOT_PATH}/rclone:/root/.config/rclone
|
||||||
|
- ${STREAM_REC_ROOT_PATH}/download:/download
|
||||||
|
stream-rec-frontend:
|
||||||
|
container_name: stream-rec
|
||||||
|
depends_on:
|
||||||
|
- stream-rec-backend
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
- API_URL=http://stream-rec-backend:12555/api
|
||||||
|
image: streamrec/stream-rec-front:dev
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:15275
|
||||||
|
restart: always
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
||||||
@@ -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
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -f .env ]; then
|
||||||
|
source .env
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
||||||
@@ -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
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
STREAM_REC_ROOT_PATH=/home/stream-rec
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=15275
|
||||||
|
|
||||||
|
# API 端口 [必填]
|
||||||
|
PANEL_APP_PORT_API=12555
|
||||||
|
|
||||||
|
# 默认用户名 [必填]
|
||||||
|
LOGIN_USERNAME=stream-rec
|
||||||
|
|
||||||
|
# 登录密码 (初始化) [必填]
|
||||||
|
LOGIN_SECRET=stream-rec
|
||||||
|
|
||||||
|
# 加密密钥 [必填]
|
||||||
|
AUTH_SECRET=
|
||||||
|
|
||||||
|
# 访问域名 [必填]
|
||||||
|
NEXT_PUBLIC_BASE_URL=http://127.0.0.1:15275
|
||||||
|
|
||||||
|
# WebSocket API 地址 [必填]
|
||||||
|
WS_API_URL=ws://127.0.0.1:12555/live/update
|
||||||
|
|
||||||
|
# 网络代理
|
||||||
|
HTTP_PROXY=
|
||||||
|
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "/home/stream-rec"
|
||||||
|
edit: true
|
||||||
|
envKey: STREAM_REC_ROOT_PATH
|
||||||
|
labelZh: 数据持久化路径
|
||||||
|
labelEn: Data persistence path
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: 15275
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: 12555
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_API
|
||||||
|
labelZh: API 端口
|
||||||
|
labelEn: API port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "stream-rec"
|
||||||
|
disabled: true
|
||||||
|
envKey: LOGIN_USERNAME
|
||||||
|
labelZh: 默认用户名
|
||||||
|
labelEn: Default Username
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "stream-rec"
|
||||||
|
edit: false
|
||||||
|
envKey: LOGIN_SECRET
|
||||||
|
labelZh: 登录密码 (初始化)
|
||||||
|
labelEn: Login Password (Initialization)
|
||||||
|
required: true
|
||||||
|
random: true
|
||||||
|
type: password
|
||||||
|
- default: ""
|
||||||
|
edit: true
|
||||||
|
envKey: AUTH_SECRET
|
||||||
|
labelZh: 加密密钥
|
||||||
|
labelEn: Encryption Key
|
||||||
|
required: true
|
||||||
|
random: true
|
||||||
|
type: text
|
||||||
|
- default: "http://127.0.0.1:15275"
|
||||||
|
edit: true
|
||||||
|
envKey: NEXT_PUBLIC_BASE_URL
|
||||||
|
labelZh: 访问域名
|
||||||
|
labelEn: Access Domain
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "ws://127.0.0.1:12555/live/update"
|
||||||
|
edit: true
|
||||||
|
envKey: WS_API_URL
|
||||||
|
labelZh: WebSocket API 地址
|
||||||
|
labelEn: WebSocket API URL
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: ""
|
||||||
|
edit: true
|
||||||
|
envKey: HTTP_PROXY
|
||||||
|
labelZh: 网络代理
|
||||||
|
labelEn: Network Proxy
|
||||||
|
required: false
|
||||||
|
type: text
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
stream-rec-backend:
|
||||||
|
container_name: stream-rec-backend
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
- HTTPS_PROXY=${HTTP_PROXY}
|
||||||
|
- LOG_LEVEL=INFO
|
||||||
|
- DB_PATH=/opt/records
|
||||||
|
- DOWNLOAD_PATH=/download
|
||||||
|
- PGID=1000
|
||||||
|
- PUID=1000
|
||||||
|
image: streamrec/stream-rec:latest
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_API}:12555
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${STREAM_REC_ROOT_PATH}/records:/opt/records
|
||||||
|
- ${STREAM_REC_ROOT_PATH}/rclone:/root/.config/rclone
|
||||||
|
- ${STREAM_REC_ROOT_PATH}/download:/download
|
||||||
|
stream-rec-frontend:
|
||||||
|
container_name: stream-rec
|
||||||
|
depends_on:
|
||||||
|
- stream-rec-backend
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
- API_URL=http://stream-rec-backend:12555/api
|
||||||
|
image: streamrec/stream-rec-front:latest
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:15275
|
||||||
|
restart: always
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
||||||
@@ -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
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -f .env ]; then
|
||||||
|
source .env
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
||||||
@@ -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
|
||||||
@@ -25,6 +25,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- ${STREAM_REC_ROOT_PATH}/records:/opt/records
|
- ${STREAM_REC_ROOT_PATH}/records:/opt/records
|
||||||
|
- ${STREAM_REC_ROOT_PATH}/rclone:/root/.config/rclone
|
||||||
- ${STREAM_REC_ROOT_PATH}/download:/download
|
- ${STREAM_REC_ROOT_PATH}/download:/download
|
||||||
stream-rec-frontend:
|
stream-rec-frontend:
|
||||||
container_name: stream-rec
|
container_name: stream-rec
|
||||||
|
|||||||
Reference in New Issue
Block a user