feat:添加rustdesk到列表

This commit is contained in:
okxlin 2023-06-09 03:37:10 +08:00
parent 09c94ac0cc
commit f3775ae7ee
3 changed files with 7 additions and 3 deletions

View File

@ -13,7 +13,7 @@ additionalProperties:
shortDescEn: RustDesk is an open source remote desktop software
type: tool
crossVersionUpdate: false
limit: 1
limit: 0
recommend: 0
website: https://rustdesk.com/zh/
github: https://github.com/rustdesk/rustdesk

View File

@ -1,3 +1,7 @@
CONTAINER_NAME=rustdesk
NAT_TEST_PORT=21115
HBBS_PORT=21116
HBBR_PORT=21117
WEB_CLIENT_PORT1=21118
WEB_CLIENT_PORT2=21119
HOST_ADDRESS=172.17.0.1

View File

@ -8,7 +8,6 @@ services:
- "${HBBS_PORT}:21116" # 自定义 hbbs 映射端口
- "${HBBS_PORT}:21116/udp" #自定义 hbbs 映射端口
- "${WEB_CLIENT_PORT1}:21118" #网页客户端支持端口
- "${WEB_CLIENT_PORT2}:21119" #网页客户端支持端口
command: hbbs -r ${HOST_ADDRESS}:${HBBS_PORT} -k _ # 填入个人域名或 IP + 暴露端口
volumes:
- "./data/hbbs:/root" # 自定义挂载目录
@ -29,7 +28,8 @@ services:
container_name: ${CONTAINER_NAME}_hbbr
restart: always
ports:
- ${HBBR_PORT}:21117 # 自定义 hbbr 映射端口
- "${HBBR_PORT}:21117" # 自定义 hbbr 映射端口
- "${WEB_CLIENT_PORT2}:21119" #网页客户端支持端口
command: hbbr -k _
volumes:
- "./data/hbbr:/root" # 自定义挂载目录