Sanitized mirror from private repository - 2026-04-18 11:19:59 UTC
Some checks failed
Documentation / Build Docusaurus (push) Failing after 5m14s
Documentation / Deploy to GitHub Pages (push) Has been skipped

This commit is contained in:
Gitea Mirror Bot
2026-04-18 11:19:59 +00:00
commit fb00a325d1
1418 changed files with 359990 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
# Rustdesk Server - Self-hosted remote desktop
# Ports:
# - 21115: NAT type test
# - 21116: TCP/UDP relay
# - 21117: Relay
# - 21118, 21119: WebSocket
networks:
rustdesk-net:
external: false
services:
hbbs:
container_name: Rustdesk-HBBS
image: rustdesk/rustdesk-server
command: hbbs -r 100.103.48.78:21117
ports:
- "21115:21115"
- "21116:21116"
- "21116:21116/udp"
- "21118:21118"
volumes:
- /volume1/docker/rustdeskhbbs:/root:rw
networks:
- rustdesk-net
depends_on:
- hbbr
restart: on-failure:5
hbbr:
container_name: Rustdesk-HBBR
image: rustdesk/rustdesk-server
command: hbbr
ports:
- "21117:21117"
- "21119:21119"
volumes:
- /volume1/docker/rustdeskhbbr:/root:rw
networks:
- rustdesk-net
restart: on-failure:5