Skip to content

Instantly share code, notes, and snippets.

@dilawar
Last active April 29, 2022 10:11
Show Gist options
  • Save dilawar/0a0ea05e95fd9a4639b6a47f664d8a34 to your computer and use it in GitHub Desktop.
Save dilawar/0a0ea05e95fd9a4639b6a47f664d8a34 to your computer and use it in GitHub Desktop.
Docker compose file for RustDesk

Replace rustdesk.subcom.tech with your domain name or ip address.

At the time of writing, only demo option works for -m option. -m takes registered email but this feature was not implemented at the time of writing this gist.

I think RustDesk is planning for paid email subscription later.

services:
hbbs:
image: rustdesk/rustdesk-server
ports:
- "21114:21114"
- "21115:21115"
- "21116:21116"
- "21116:21116/udp"
- "21118:21118"
volumes:
- ./:/root
command: bash -c "hbbs -r rustdesk.subcom.tech -m demo"
hbbr:
image: rustdesk/rustdesk-server
ports:
- "21117:21117"
- "21119:21119"
volumes:
- ./:/root
command: bash -c "hbbr -m demo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment