diff --git a/rustdesk/compose.yaml b/rustdesk/compose.yaml new file mode 100644 index 0000000..d9d11f0 --- /dev/null +++ b/rustdesk/compose.yaml @@ -0,0 +1,26 @@ +services: + hbbs: + container_name: hbbs + image: rustdesk/rustdesk-server:latest + command: hbbs + volumes: + - /appdata/rustdesk/hbbs:/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: + - /appdata/rustdesk/hbbr:/root + ports: + - 21117:21117 + - 21119:21119 + restart: unless-stopped \ No newline at end of file