mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
# MySQL 服务 (前置检查) [必填]
|
||||
PANEL_DB_TYPE=mysql
|
||||
|
||||
# Redis 服务 (前置检查) [必填]
|
||||
PANEL_REDIS_TYPE=redis
|
||||
|
||||
# 数据持久化路径 [必填]
|
||||
TANGSENGDAODAO_ROOT_PATH=/home/tangsengdaodao
|
||||
|
||||
# TCP 通讯端口 [必填]
|
||||
PANEL_APP_PORT_WK_TCP=5100
|
||||
|
||||
# WebSocket 通讯端口 [必填]
|
||||
PANEL_APP_PORT_WK_WS=5200
|
||||
|
||||
# 悟空IM 后台监控端口 [必填]
|
||||
PANEL_APP_PORT_WK_WEB_SERVER=5300
|
||||
|
||||
# 唐僧叨叨 API 端口 [必填]
|
||||
PANEL_APP_PORT_TS_APP_HTTP=8090
|
||||
|
||||
# 唐僧叨叨 WEB端口 [必填]
|
||||
PANEL_APP_PORT_TS_APP_WEB=80
|
||||
|
||||
# 唐僧叨叨 后台管理端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=80
|
||||
|
||||
# 外部访问IP [必填]
|
||||
WK_EXTERNAL_IP=
|
||||
|
||||
# 超级管理员 账户 [必填]
|
||||
TS_ADMIN=admin
|
||||
|
||||
# 超级管理员 密码 [必填]
|
||||
TS_ADMINPWD=tsdd@123456
|
||||
|
||||
# 默认注册验证码 [必填]
|
||||
TS_SMSCODE=123456
|
||||
|
||||
# 数据库 主机 [必填]
|
||||
DB_HOST=127.0.0.1
|
||||
|
||||
# 数据库 端口 [必填]
|
||||
DB_PORT=3306
|
||||
|
||||
# 数据库 用户名 [必填]
|
||||
DB_USERNAME=tsdd
|
||||
|
||||
# 数据库 密码 [必填]
|
||||
DB_PASSWORD=tsdd
|
||||
|
||||
# 数据库 名称 [必填]
|
||||
DB_NAME=tsdd
|
||||
|
||||
# Redis 主机 [必填]
|
||||
REDIS_HOST=127.0.0.1
|
||||
|
||||
# Redis 端口 [必填]
|
||||
REDIS_PORT=6379
|
||||
|
||||
# Redis 连接密码
|
||||
REDIS_PASSWORD=
|
||||
|
||||
# 默认头像提供地址 [必填]
|
||||
TS_AVATAR_DEFAULTBASEURL=https://api.multiavatar.com/{avatar}.png
|
||||
|
||||
# 应用名称 [必填]
|
||||
TS_APPNAME=唐僧叨叨
|
||||
|
||||
# 欢迎消息 [必填]
|
||||
TS_WELCOMEMESSAGE=欢迎使用{{appName}}
|
||||
|
||||
# 手机号搜索功能 [必填]
|
||||
TS_PHONESEARCHOFF=true
|
||||
|
||||
# 在线状态功能 [必填]
|
||||
TS_ONLINESTATUSON=true
|
||||
|
||||
# 自动升级超级群组临界值 [必填]
|
||||
TS_GROUPUPGRADEWHENMEMBERCOUNT=1000
|
||||
|
||||
@@ -0,0 +1,93 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
tsdd-manager:
|
||||
container_name: tangsengdaodao-manager
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- API_URL=http://${WK_EXTERNAL_IP}:${PANEL_APP_PORT_TS_APP_HTTP}/
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaomanager:latest
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:80
|
||||
restart: always
|
||||
tsdd-server:
|
||||
command: api
|
||||
container_name: tangsengdaodao-server
|
||||
depends_on:
|
||||
- tsdd-wukongim
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TS_MODE=release
|
||||
- TS_WUKONGIM_APIURL=http://tsdd-wukongim:5001
|
||||
- TS_DB_MYSQLADDR=${DB_USERNAME}:${DB_PASSWORD}@tcp(${DB_HOST}:${DB_PORT})/${DB_NAME}?charset=utf8mb4&parseTime=true&loc=Local
|
||||
- TS_DB_REDISADDR=${REDIS_HOST}:${REDIS_PORT}
|
||||
- TS_DB_REDISPASS=${REDIS_PASSWORD}
|
||||
- TS_EXTERNAL_IP=${WK_EXTERNAL_IP}
|
||||
- TS_FILESERVICE=minio
|
||||
- TS_MINIO_URL=http://${MINIO_HOST}:${MINIO_PORT}
|
||||
- TS_MINIO_ACCESSKEYID=${MINIO_USERNAME}
|
||||
- TS_MINIO_SECRETACCESSKEY=${MINIO_PASSWORD}
|
||||
healthcheck:
|
||||
interval: 10s
|
||||
retries: 3
|
||||
test: wget -q -Y off -O /dev/null http://localhost:8090/v1/ping > /dev/null
|
||||
2>&1
|
||||
timeout: 10s
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoserver:v1.5
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_TS_APP_HTTP}:8090
|
||||
restart: always
|
||||
volumes:
|
||||
- ${TANGSENGDAODAO_ROOT_PATH}/tsdd:/home/tsdddata
|
||||
tsdd-web:
|
||||
container_name: tangsengdaodao-web
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- API_URL=http://${WK_EXTERNAL_IP}:${PANEL_APP_PORT_TS_APP_HTTP}/
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoweb:latest
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_TS_APP_WEB}:80
|
||||
restart: always
|
||||
tsdd-wukongim:
|
||||
container_name: tangsengdaodao
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- WK_MODE=release
|
||||
- WK_CONVERSATION_ON=true
|
||||
- WK_WEBHOOK_GRPCADDR=tsdd-server:6979
|
||||
- WK_DATASOURCE_ADDR=http://tsdd-server:8090/v1/datasource
|
||||
- WK_DATASOURCE_CHANNELINFOON=true
|
||||
- WK_TOKENAUTHON=true
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v1.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_WK_TCP}:5100
|
||||
- ${PANEL_APP_PORT_WK_WS}:5200
|
||||
- ${PANEL_APP_PORT_WK_WEB_SERVER}:5300
|
||||
restart: always
|
||||
volumes:
|
||||
- ${TANGSENGDAODAO_ROOT_PATH}/wukongim:/root/wukongim
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
Reference in New Issue
Block a user