Created
February 9, 2026 06:20
-
-
Save f4ww4z/c21af3fe95597c2d75ef70414b0c6f41 to your computer and use it in GitHub Desktop.
Dockerized Rustdesk Server configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| hbbs: | |
| container_name: hbbs | |
| image: rustdesk/rustdesk-server:latest | |
| command: hbbs -r ${SERVER_IP}:21117 # Put SERVER_IP in .env file | |
| ports: | |
| - "21115:21115" | |
| - "21116:21116" | |
| - "21116:21116/udp" | |
| - "21118:21118" | |
| volumes: | |
| - ./data:/root | |
| restart: unless-stopped | |
| depends_on: | |
| - hbbr | |
| hbbr: | |
| container_name: hbbr | |
| image: rustdesk/rustdesk-server:latest | |
| command: hbbr | |
| ports: | |
| - "21117:21117" | |
| - "21119:21119" | |
| volumes: | |
| - ./data:/root | |
| restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment