Take full control of your remote access solution. As an open-source alternative to platforms like TeamViewer or AnyDesk, this tool allows you to host your own server, eliminating concerns about data security, performance, and transparency associated with third-party SaaS platforms. By keeping everything on-premise, you ensure your remote connections are private and reliable.
Key benefits of a self-hosted setup include:
Deployment is straightforward using Docker, and it supports all major operating systems, including Windows, macOS, Linux, and Android. You can even host a web client on your own domain for easy access from anywhere.
services:
hbbs:
container_name: hbbs
image: rustdesk/rustdesk-server:latest
command: hbbs -r ${RUSTDESK_RELAY_HOST}:21117
volumes:
- ./data:/root
ports:
- 21115:21115
- 21116:21116
- 21116:21116/udp
- 21118:21118
depends_on:
- hbbr
restart: unless-stopped
hbbr:
container_name: hbbr
image: rustdesk/rustdesk-server:latest
command: hbbr
volumes:
- ./data:/root
ports:
- 21117:21117
- 21119:21119
restart: unless-stoppedRUSTDESK_RELAY_HOST=your_public_ip_or_domainAuto-fetched about 19 hours ago
Auto-fetched about 19 hours ago