mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 12:52:18 +08:00
feat:调整wukongim&tangsengdaodao
This commit is contained in:
parent
a2d41c6aa9
commit
6077beaa68
24
apps/tangsengdaodao/1.5/.env.sample
Normal file
24
apps/tangsengdaodao/1.5/.env.sample
Normal file
@ -0,0 +1,24 @@
|
||||
CONTAINER_NAME="tangsengdaodao"
|
||||
EXTERNAL_IP="1.2.3.4"
|
||||
MINIO_HOST="minio"
|
||||
MINIO_PORT=9000
|
||||
MINIO_ROOT_PASSWORD="minio"
|
||||
MINIO_ROOT_USER="minio"
|
||||
PANEL_APP_PORT_HTTP=83
|
||||
PANEL_APP_PORT_TS_APP_HTTP=8090
|
||||
PANEL_APP_PORT_TS_APP_WEB=82
|
||||
PANEL_APP_PORT_WK_TCP=5100
|
||||
PANEL_APP_PORT_WK_WEB_SERVER=5300
|
||||
PANEL_APP_PORT_WK_WS=5200
|
||||
PANEL_DB_HOST="mysql"
|
||||
PANEL_DB_HOST_NAME="mysql"
|
||||
PANEL_DB_NAME="tsdd"
|
||||
PANEL_DB_PORT=3306
|
||||
PANEL_DB_USER="tsdd"
|
||||
PANEL_DB_USER_PASSWORD="tsdd@123456"
|
||||
PANEL_REDIS_ROOT_PASSWORD="passsword"
|
||||
TS_ADMIN="superAdmin"
|
||||
TS_ADMINPWD="tsdd@123456"
|
||||
TS_DB_REDIS_HOST="redis"
|
||||
TS_DB_REDIS_PORT=6379
|
||||
TS_SMSCODE=123456
|
@ -1,9 +1,10 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: EXTERNAL_IP
|
||||
labelEn: External IP
|
||||
labelZh: 外部访问IP
|
||||
labelZh: 外部访问 IP
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
@ -13,7 +14,7 @@ additionalProperties:
|
||||
labelZh: 数据库服务
|
||||
required: true
|
||||
type: service
|
||||
- default: tsdd
|
||||
- default: "tsdd"
|
||||
envKey: PANEL_DB_NAME
|
||||
labelEn: Database
|
||||
labelZh: 数据库名
|
||||
@ -21,7 +22,7 @@ additionalProperties:
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: tsdd
|
||||
- default: "tsdd"
|
||||
envKey: PANEL_DB_USER
|
||||
labelEn: User
|
||||
labelZh: 数据库用户
|
||||
@ -29,7 +30,7 @@ additionalProperties:
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: tsdd@123456
|
||||
- default: "tsdd@123456"
|
||||
envKey: PANEL_DB_USER_PASSWORD
|
||||
labelEn: Password
|
||||
labelZh: 数据库用户密码
|
||||
@ -42,29 +43,29 @@ additionalProperties:
|
||||
envKey: TS_DB_REDIS_HOST
|
||||
key: redis
|
||||
labelEn: Redis Service
|
||||
labelZh: 缓存服务服务
|
||||
labelZh: 缓存服务
|
||||
required: true
|
||||
type: service
|
||||
- default: 6379
|
||||
envKey: TS_DB_REDIS_PORT
|
||||
labelEn: Redis Port
|
||||
labelZh: 缓存服务端口
|
||||
labelZh: Redis 服务端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: TS_DB_REDISPASS
|
||||
labelEn: Redis Service Password
|
||||
labelZh: 缓存服务服务密码
|
||||
envKey: PANEL_REDIS_ROOT_PASSWORD
|
||||
labelEn: Redis Password
|
||||
labelZh: Redis 密码
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: password
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: MINIO_HOST
|
||||
key: minio
|
||||
labelEn: Minio Service
|
||||
labelZh: minio对象存储服务
|
||||
labelZh: minio 对象存储服务
|
||||
required: true
|
||||
type: service
|
||||
- default: 9000
|
||||
@ -72,75 +73,92 @@ additionalProperties:
|
||||
labelEn: minio port
|
||||
labelZh: minio 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: MINIO_ROOT_USER
|
||||
labelEn: minio
|
||||
labelZh: minio用户
|
||||
random: true
|
||||
labelEn: minio user
|
||||
labelZh: minio 用户
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: MINIO_ROOT_PASSWORD
|
||||
labelEn: MinioPassword
|
||||
labelZh: minio用户密码
|
||||
random: true
|
||||
labelEn: Minio Password
|
||||
labelZh: minio 用户密码
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: 5100
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_TCP
|
||||
labelEn: WuKongIM tcp port
|
||||
labelZh: 悟空IM TCP端口
|
||||
labelZh: 悟空 IM TCP 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 5200
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_WS
|
||||
labelEn: WuKongIM ws port
|
||||
labelZh: 悟空IM WS端口
|
||||
labelZh: 悟空 IM WS 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 5300
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_WEB_SERVER
|
||||
labelEn: WuKongIM web port
|
||||
labelZh: 悟空IM监控端口
|
||||
labelZh: 悟空 IM 监控端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 123456
|
||||
edit: true
|
||||
envKey: TS_SMSCODE
|
||||
labelEn: SMS
|
||||
labelZh: 唐僧叨叨短信验证码
|
||||
required: true
|
||||
type: number
|
||||
- default: superAdmin
|
||||
- default: "superAdmin"
|
||||
disabled: true
|
||||
envKey: TS_ADMIN
|
||||
labelEn: Super Admin User
|
||||
labelZh: 唐僧叨叨超级管理员
|
||||
required: true
|
||||
type: text
|
||||
- default: tsdd@123456
|
||||
- default: "tsdd@123456"
|
||||
edit: true
|
||||
envKey: TS_ADMINPWD
|
||||
labelEn: Admin Password
|
||||
labelZh: 唐僧叨叨超级管理员默认密码
|
||||
random: true
|
||||
required: true
|
||||
type: text
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: 8090
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_TS_APP_HTTP
|
||||
labelEn: TangSengDaoDao port
|
||||
labelZh: 唐僧叨叨端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 82
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_TS_APP_WEB
|
||||
labelEn: TangSengDaoDao web port
|
||||
labelZh: 唐僧叨叨WEB端口
|
||||
labelZh: 唐僧叨叨 WEB 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 83
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: TangSengDaoDao Management background port
|
||||
labelZh: 唐僧叨叨管理后台端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
|
@ -1,8 +1,7 @@
|
||||
version: '3.1'
|
||||
services:
|
||||
tsddwukongim: # 唐僧叨叨通讯服务(悟空IM)
|
||||
container_name: ${CONTAINER_NAME}-wukongim
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v1.2
|
||||
image: "registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v1.2"
|
||||
restart: always
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_WK_TCP}:5100" # tcp长连接端口(外网开放)
|
||||
@ -20,9 +19,11 @@ services:
|
||||
- WK_TOKENAUTHON=true
|
||||
networks:
|
||||
- 1panel-network
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
tangsengdaodaoserver: # 唐僧叨叨的业务服务
|
||||
container_name: ${CONTAINER_NAME}-tsdd-server
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoserver:v1.5
|
||||
image: "registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoserver:v1.5"
|
||||
restart: always
|
||||
command: "api"
|
||||
healthcheck:
|
||||
@ -42,7 +43,7 @@ services:
|
||||
- TS_WUKONGIM_APIURL=http://tsddwukongim:5001
|
||||
- TS_DB_MYSQLADDR=${PANEL_DB_USER}:${PANEL_DB_USER_PASSWORD}@tcp(${PANEL_DB_HOST}:${PANEL_DB_PORT})/${PANEL_DB_NAME}?charset=utf8mb4&parseTime=true&loc=Local
|
||||
- TS_DB_REDISADDR=${TS_DB_REDIS_HOST}:${TS_DB_REDIS_PORT}
|
||||
- TS_DB_REDISPASS=${TS_DB_REDISPASS}
|
||||
- TS_DB_REDISPASS=${PANEL_REDIS_ROOT_PASSWORD}
|
||||
- TS_EXTERNAL_IP=${EXTERNAL_IP}
|
||||
- TS_SMSCODE=${TS_SMSCODE}
|
||||
- TS_ADMINPWD=${TS_ADMINPWD}
|
||||
@ -53,9 +54,11 @@ services:
|
||||
- TS_AVATAR_DEFAULTBASEURL=https://api.multiavatar.com/{avatar}.png
|
||||
networks:
|
||||
- 1panel-network
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
tangsengdaodaoweb: # 唐僧叨叨的web服务
|
||||
container_name: ${CONTAINER_NAME}-tsdd-web
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoweb:latest
|
||||
image: "registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoweb:latest"
|
||||
restart: always
|
||||
environment:
|
||||
- API_URL=http://${EXTERNAL_IP}:${PANEL_APP_PORT_TS_APP_HTTP}/
|
||||
@ -63,9 +66,11 @@ services:
|
||||
- "${PANEL_APP_PORT_TS_APP_WEB}:80"
|
||||
networks:
|
||||
- 1panel-network
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
tangsengdaodaomanager: # 唐僧叨叨的后台管理系统
|
||||
container_name: ${CONTAINER_NAME}-tsdd-manager
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaomanager:latest
|
||||
image: "registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaomanager:latest"
|
||||
restart: always
|
||||
environment:
|
||||
- API_URL=http://${EXTERNAL_IP}:${PANEL_APP_PORT_TS_APP_HTTP}/
|
||||
@ -73,6 +78,8 @@ services:
|
||||
- "${PANEL_APP_PORT_HTTP}:80"
|
||||
networks:
|
||||
- 1panel-network
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
@ -1,8 +1,7 @@
|
||||
name: TangSengDaoDao
|
||||
tags:
|
||||
- IM
|
||||
- 实用工具
|
||||
title: 让企业轻松拥有自己的即时通讯
|
||||
type: 工具
|
||||
description: 让企业轻松拥有自己的即时通讯
|
||||
additionalProperties:
|
||||
key: tangsengdaodao
|
||||
@ -13,8 +12,8 @@ additionalProperties:
|
||||
shortDescEn: Make it easy for businesses to have their own instant messaging
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
limit: 1
|
||||
recommend: 0
|
||||
website: https://tsdaodao.com/
|
||||
website: https://tsdaodao.com
|
||||
github: https://github.com/TangSengDaoDao/TangSengDaoDaoServer
|
||||
document: https://tsdaodao.com/
|
||||
document: https://tsdaodao.com
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 242 KiB After Width: | Height: | Size: 7.9 KiB |
7
apps/wukongim/1.2/.env.sample
Normal file
7
apps/wukongim/1.2/.env.sample
Normal file
@ -0,0 +1,7 @@
|
||||
CONTAINER_NAME="wukongim"
|
||||
EXTERNAL_IP="1.2.3.4"
|
||||
PANEL_APP_PORT_HTTP=5300
|
||||
PANEL_APP_PORT_WK_API=5001
|
||||
PANEL_APP_PORT_WK_DEMO_SERVER=5172
|
||||
PANEL_APP_PORT_WK_TCP=5100
|
||||
PANEL_APP_PORT_WK_WS=5200
|
@ -1,39 +1,50 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: EXTERNAL_IP
|
||||
labelEn: ipAddress
|
||||
labelZh: 外部访问IP
|
||||
labelZh: 外部访问 IP
|
||||
required: true
|
||||
type: text
|
||||
- default: 5001
|
||||
- default: "5001"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_API
|
||||
labelEn: WuKongIM api port
|
||||
labelZh: 悟空IM api端口
|
||||
labelZh: 悟空 IM api 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 5100
|
||||
- default: "5100"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_TCP
|
||||
labelEn: WuKongIM tcp port
|
||||
labelZh: 悟空IM TCP端口
|
||||
labelZh: 悟空 IM TCP 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 5200
|
||||
- default: "5200"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_WS
|
||||
labelEn: WuKongIM ws port
|
||||
labelZh: 悟空IM WS端口
|
||||
labelZh: 悟空 IM WS 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "5300"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: WuKongIM web port
|
||||
labelZh: 悟空IM监控端口
|
||||
labelZh: 悟空 IM 监控端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 5172
|
||||
- default: "5172"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_DEMO_SERVER
|
||||
labelEn: WuKongIM demo port
|
||||
labelZh: 悟空IM demo端口
|
||||
labelZh: 悟空 IM demo 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
version: '1.1.8'
|
||||
services:
|
||||
wukongim:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v1.2
|
||||
image: "registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v1.2"
|
||||
restart: always
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_WK_API}:5001"
|
||||
@ -22,6 +21,8 @@ services:
|
||||
- WK_TOKENAUTHON=true
|
||||
networks:
|
||||
- 1panel-network
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
9
apps/wukongim/2.0.5/.env.sample
Normal file
9
apps/wukongim/2.0.5/.env.sample
Normal file
@ -0,0 +1,9 @@
|
||||
CONTAINER_NAME="wukongim"
|
||||
EXTERNAL_IP="1.2.3.4"
|
||||
PANEL_APP_PORT_COMM=11110
|
||||
PANEL_APP_PORT_HTTP=5300
|
||||
PANEL_APP_PORT_STATS=9090
|
||||
PANEL_APP_PORT_WK_API=5001
|
||||
PANEL_APP_PORT_WK_DEMO_SERVER=5172
|
||||
PANEL_APP_PORT_WK_TCP=5100
|
||||
PANEL_APP_PORT_WK_WS=5200
|
@ -1,39 +1,65 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: EXTERNAL_IP
|
||||
labelEn: ipAddress
|
||||
labelZh: 外部访问IP
|
||||
labelZh: 外部访问 IP
|
||||
required: true
|
||||
type: text
|
||||
- default: 5001
|
||||
- default: "5001"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_API
|
||||
labelEn: WuKongIM api port
|
||||
labelZh: 悟空IM api端口
|
||||
labelZh: 悟空 IM api 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 5100
|
||||
- default: "5100"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_TCP
|
||||
labelEn: WuKongIM tcp port
|
||||
labelZh: 悟空IM TCP端口
|
||||
labelZh: 悟空 IM TCP 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 5200
|
||||
- default: "5200"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_WS
|
||||
labelEn: WuKongIM ws port
|
||||
labelZh: 悟空IM WS端口
|
||||
labelZh: 悟空 IM WS 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "5300"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: WuKongIM web port
|
||||
labelZh: 悟空IM监控端口
|
||||
labelZh: 悟空 IM 监控端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 5172
|
||||
- default: "5172"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_WK_DEMO_SERVER
|
||||
labelEn: WuKongIM demo port
|
||||
labelZh: 悟空IM demo端口
|
||||
labelZh: 悟空 IM demo 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "11110"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_COMM
|
||||
labelEn: WuKongIM Node Communication Port
|
||||
labelZh: 悟空 IM 节点通讯端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "9090"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_STATS
|
||||
labelEn: Prometheus port
|
||||
labelZh: Prometheus 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
|
||||
|
@ -1,12 +1,11 @@
|
||||
version: '3.7'
|
||||
services:
|
||||
wukongim: # WuKongIM服务
|
||||
container_name: ${CONTAINER_NAME}-wukongim
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v2.0.5-20240925
|
||||
image: "registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v2.0.5-20240925"
|
||||
environment:
|
||||
- "WK_CLUSTER_NODEID=1001"
|
||||
- "WK_CLUSTER_SERVERADDR=${EXTERNAL_IP}:11110" # 节点内部通信请求地址
|
||||
- "WK_TRACE_PROMETHEUSAPIURL=http://prometheus:9090" # prometheus监控地址
|
||||
- "WK_CLUSTER_SERVERADDR=${EXTERNAL_IP}:${PANEL_APP_PORT_COMM}" # 节点内部通信请求地址
|
||||
- "WK_TRACE_PROMETHEUSAPIURL=http://wukongim-prometheus:9090" # prometheus监控地址
|
||||
- "WK_MODE=release" # release模式
|
||||
- "WK_EXTERNAL_IP=${EXTERNAL_IP}" # 服务器外网ip
|
||||
healthcheck:
|
||||
@ -23,18 +22,22 @@ services:
|
||||
- ${PANEL_APP_PORT_WK_WS}:5200 # websocket端口
|
||||
- ${PANEL_APP_PORT_HTTP}:5300 # 管理端端口
|
||||
- ${PANEL_APP_PORT_WK_DEMO_SERVER}:5172 # demo端口
|
||||
- 11110:11110 # 分布式节点通讯端口
|
||||
- ${PANEL_APP_PORT_COMM}:11110 # 分布式节点通讯端口
|
||||
networks:
|
||||
- 1panel-network
|
||||
prometheus: # 监控服务
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
wukongim-prometheus: # 监控服务
|
||||
container_name: ${CONTAINER_NAME}-prometheus
|
||||
image: registry.cn-shanghai.aliyuncs.com/wukongim/prometheus:v2.53.1
|
||||
image: "registry.cn-shanghai.aliyuncs.com/wukongim/prometheus:v2.53.1"
|
||||
volumes:
|
||||
- "./prometheus.yml:/etc/prometheus/prometheus.yml"
|
||||
ports:
|
||||
- "9090:9090"
|
||||
- "${PANEL_APP_PORT_STATS}:9090"
|
||||
networks:
|
||||
- 1panel-network
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
@ -1,8 +1,7 @@
|
||||
name: WuKongIM
|
||||
tags:
|
||||
- IM
|
||||
- 实用工具
|
||||
title: 让信息传递更简单
|
||||
type: 工具
|
||||
description: 让企业轻松拥有自己的即时通讯
|
||||
additionalProperties:
|
||||
key: wukongim
|
||||
@ -15,6 +14,6 @@ additionalProperties:
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://githubim.com/
|
||||
website: https://githubim.com
|
||||
github: https://github.com/TangSengDaoDao/TangSengDaoDaoServer
|
||||
document: https://githubim.com/
|
||||
document: https://githubim.com
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 6.3 KiB |
Loading…
Reference in New Issue
Block a user