Files
ginnoirandClaude Opus 4.8 466ffe9588 fix(remote): correct hbbs relay flag to lowercase -r
The previous commit used `hbbs -R 192.168.1.69` (uppercase -R sets
rendezvous/cluster servers), so hbbs advertised an empty relay list and
clients failed with "failed to connect to relay server". Lowercase -r is
the relay-server flag; hbbs now advertises 192.168.1.69 and LAN clients
relay correctly.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-18 04:54:04 -05:00

33 lines
808 B
YAML

# remote stack — RustDesk relay (hbbr) + signal/ID server (hbbs).
# Not proxied by Caddy (raw TCP/UDP ports); bind-mounted to /config/rustdesk.
# They use the project default network for the inter-container dependency.
services:
hbbr:
container_name: hbbr
image: rustdesk/rustdesk-server:latest
command: hbbr
restart: unless-stopped
env_file:
- stack.env
ports:
- "21117:21117"
volumes:
- /config/rustdesk/hbbr/data:/root
hbbs:
container_name: hbbs
image: rustdesk/rustdesk-server:latest
command: hbbs -r 192.168.1.69
restart: unless-stopped
env_file:
- stack.env
ports:
- "21115:21115"
- "21116:21116"
- "21116:21116/udp"
volumes:
- /config/rustdesk/hbbs/data:/root
depends_on:
- hbbr