chore: 更新v1.5.0版本 (#557)

This commit is contained in:
budou 2023-11-03 21:39:52 +08:00 committed by GitHub
parent b52ee6abc5
commit 4524e86391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 21 deletions

View File

@ -90,19 +90,19 @@ additionalProperties:
rule: paramComplexity rule: paramComplexity
type: password type: password
- default: 5100 - default: 5100
envKey: WK_PORT_TCP envKey: PANEL_APP_PORT_WK_TCP
labelEn: WuKongIM tcp port labelEn: WuKongIM tcp port
labelZh: 悟空IM TCP端口 labelZh: 悟空IM TCP端口
required: true required: true
type: number type: number
- default: 5200 - default: 5200
envKey: WK_PORT_WS envKey: PANEL_APP_PORT_WK_WS
labelEn: WuKongIM ws port labelEn: WuKongIM ws port
labelZh: 悟空IM WS端口 labelZh: 悟空IM WS端口
required: true required: true
type: number type: number
- default: 5300 - default: 5300
envKey: WK_PORT_WEB_SERVER envKey: PANEL_APP_PORT_WK_WEB_SERVER
labelEn: WuKongIM web port labelEn: WuKongIM web port
labelZh: 悟空IM监控端口 labelZh: 悟空IM监控端口
required: true required: true
@ -127,19 +127,19 @@ additionalProperties:
required: true required: true
type: text type: text
- default: 8090 - default: 8090
envKey: TS_APP_PORT_HTTP envKey: PANEL_APP_PORT_TS_APP_HTTP
labelEn: TangSengDaoDao port labelEn: TangSengDaoDao port
labelZh: 唐僧叨叨端口 labelZh: 唐僧叨叨端口
required: true required: true
type: number type: number
- default: 82 - default: 82
envKey: TS_APP_PORT_WEB envKey: PANEL_APP_PORT_TS_APP_WEB
labelEn: TangSengDaoDao web port labelEn: TangSengDaoDao web port
labelZh: 唐僧叨叨WEB端口 labelZh: 唐僧叨叨WEB端口
required: true required: true
type: number type: number
- default: 83 - default: 83
envKey: TS_APP_PORT_MANAGER envKey: PANEL_APP_PORT_TS_APP_MANAGER
labelEn: TangSengDaoDao Management background port labelEn: TangSengDaoDao Management background port
labelZh: 唐僧叨叨管理后台端口 labelZh: 唐僧叨叨管理后台端口
required: true required: true

View File

@ -1,12 +1,12 @@
version: '1.0.0' version: '1.5.0'
services: services:
tsddwukongim: # 唐僧叨叨通讯服务悟空IM tsddwukongim: # 唐僧叨叨通讯服务悟空IM
image: registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:latest image: registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v1.1.8
restart: always restart: always
ports: ports:
- "${WK_PORT_TCP}:5100" # tcp长连接端口外网开放 - "${PANEL_APP_PORT_WK_TCP}:5100" # tcp长连接端口外网开放
- "${WK_PORT_WS}:5200" # websocket端口外网开放 - "${PANEL_APP_PORT_WK_WS}:5200" # websocket端口外网开放
- "${WK_PORT_WEB_SERVER}:5300" # 监控端口 - "${PANEL_APP_PORT_WK_WEB_SERVER}:5300" # 监控端口
volumes: volumes:
- ./wukongim:/root/wukongim - ./wukongim:/root/wukongim
environment: environment:
@ -20,7 +20,7 @@ services:
networks: networks:
- 1panel-network - 1panel-network
tangsengdaodaoserver: # 唐僧叨叨的业务服务 tangsengdaodaoserver: # 唐僧叨叨的业务服务
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoserver:latest image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoserver:v1.5.0
restart: always restart: always
command: "api" command: "api"
healthcheck: healthcheck:
@ -31,7 +31,7 @@ services:
depends_on: depends_on:
- tsddwukongim - tsddwukongim
ports: ports:
- "${TS_APP_PORT_HTTP}:8090" - "${PANEL_APP_PORT_TS_APP_HTTP}:8090"
volumes: volumes:
- ./tsdd:/home/tsdddata - ./tsdd:/home/tsdddata
# - ./tsdd/configs/tsdd.yaml:/home/configs/tsdd.yaml # - ./tsdd/configs/tsdd.yaml:/home/configs/tsdd.yaml
@ -52,21 +52,21 @@ services:
networks: networks:
- 1panel-network - 1panel-network
tangsengdaodaoweb: # 唐僧叨叨的web服务 tangsengdaodaoweb: # 唐僧叨叨的web服务
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoweb:latest image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoweb:v1.0.0
restart: always restart: always
environment: environment:
- API_URL=http://${EXTERNAL_IP}:${TS_APP_PORT_HTTP}/ - API_URL=http://${EXTERNAL_IP}:${PANEL_APP_PORT_TS_APP_HTTP}/
ports: ports:
- "${TS_APP_PORT_WEB}:80" - "${PANEL_APP_PORT_TS_APP_WEB}:80"
networks: networks:
- 1panel-network - 1panel-network
tangsengdaodaomanager: # 唐僧叨叨的后台管理系统 tangsengdaodaomanager: # 唐僧叨叨的后台管理系统
image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaomanager:latest image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaomanager:v1.0.0
restart: always restart: always
environment: environment:
- API_URL=http://${EXTERNAL_IP}:${TS_APP_PORT_HTTP}/ - API_URL=http://${EXTERNAL_IP}:${PANEL_APP_PORT_TS_APP_HTTP}/
ports: ports:
- "${TS_APP_PORT_MANAGER}:80" - "${PANEL_APP_PORT_TS_APP_MANAGER}:80"
networks: networks:
- 1panel-network - 1panel-network
networks: networks:

View File

@ -15,6 +15,6 @@ additionalProperties:
crossVersionUpdate: true crossVersionUpdate: true
limit: 0 limit: 0
recommend: 0 recommend: 0
website: https://tangsengdaodao.com/ website: https://tsdaodao.com/
github: https://github.com/TangSengDaoDao/TangSengDaoDaoServer github: https://github.com/TangSengDaoDao/TangSengDaoDaoServer
document: https://tangsengdaodao.com/ document: https://tsdaodao.com/