40 lines
957 B
YAML
40 lines
957 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
rustdesk-hbbs:
|
|
image: rustdesk/rustdesk-server:latest
|
|
container_name: rustdesk-hbbs
|
|
restart: unless-stopped
|
|
platform: linux/arm64
|
|
command: ["hbbs", "--relay-servers", "192.168.1.245:21117"]
|
|
volumes:
|
|
- rustdesk_data:/root
|
|
ports:
|
|
- "21115:21115/tcp"
|
|
- "21115:21115/udp"
|
|
- "21116:21116/tcp"
|
|
- "21116:21116/udp"
|
|
|
|
rustdesk-hbbr:
|
|
image: rustdesk/rustdesk-server:latest
|
|
container_name: rustdesk-hbbr
|
|
restart: unless-stopped
|
|
platform: linux/arm64
|
|
command: ["hbbr"]
|
|
volumes:
|
|
- rustdesk_data:/root
|
|
ports:
|
|
- "21117:21117/tcp"
|
|
- "21118:21118/udp"
|
|
- "21119:21119/tcp"
|
|
- "21119:21119/udp"
|
|
environment:
|
|
- TOTAL_BANDWIDTH=20480
|
|
- SINGLE_BANDWIDTH=128
|
|
- LIMIT_SPEED=100Mb/s
|
|
- DOWNGRADE_START_CHECK=600
|
|
- DOWNGRADE_THRESHOLD=0.9
|
|
|
|
volumes:
|
|
rustdesk_data:
|