Add Rustdesk compose file

This commit is contained in:
Fabian Schmidt 2024-09-19 13:50:55 +02:00
parent b311bf0878
commit 6a7b6308ed

35
rustdesk/compose.yaml Normal file
View File

@ -0,0 +1,35 @@
networks:
rustdesk-net:
external: false
services:
hbbs:
container_name: hbbs
ports:
- 21115:21115
- 21116:21116
- 21116:21116/udp
- 21118:21118
image: rustdesk/rustdesk-server:latest
command: hbbs -r rustdesk.plobos.xyz:21117
volumes:
- ./data:/root
networks:
- rustdesk-net
depends_on:
- hbbr
restart: unless-stopped
hbbr:
container_name: hbbr
ports:
- 21117:21117
- 21119:21119
image: rustdesk/rustdesk-server:latest
command: hbbr
volumes:
- ./data:/root
networks:
- rustdesk-net
restart: unless-stopped