RustDesk Server Initial Setup

This commit is contained in:
2026-03-25 02:21:10 +00:00
parent 8f771ec437
commit 8b227e82bb
3 changed files with 38 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
services:
hbbs:
container_name: hbbs
image: rustdesk/rustdesk-server:latest
command: hbbs -r 192.168.0.56
volumes:
- ./data:/root
ports:
- "21115:21115"
- "21116:21116"
- "21116:21116/udp"
- "21118:21118"
restart: unless-stopped
depends_on:
- hbbr
hbbr:
container_name: hbbr
image: rustdesk/rustdesk-server:latest
command: hbbr
volumes:
- ./data:/root
ports:
- "21117:21117"
- "21119:21119"
restart: unless-stopped