mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-29 20:37:57 -05:00
* Add RustDesk blueprint for self-hosted remote desktop Introduces a new blueprint for RustDesk, including Docker Compose configuration, metadata, icon, and template files. This enables easy deployment of a self-hosted RustDesk remote desktop server. * Update RustDesk logo file reference Changed the logo file in meta.json from 'rustdesk.svg' to 'rustdesk.png' to reflect the correct image format. * Add RustDesk to meta.json Introduced RustDesk as a new entry in meta.json with relevant metadata, including description, logo, links, and tags for remote desktop and self-hosted productivity. * Delete meta.json * Update meta.json * Update meta.json
27 lines
455 B
YAML
27 lines
455 B
YAML
services:
|
|
hbbs:
|
|
image: rustdesk/rustdesk-server:latest
|
|
command: hbbs
|
|
restart: unless-stopped
|
|
volumes:
|
|
- rustdesk-data:/root
|
|
ports:
|
|
- 21115
|
|
- 21116
|
|
- 21116/udp
|
|
depends_on:
|
|
- hbbr
|
|
|
|
hbbr:
|
|
image: rustdesk/rustdesk-server:latest
|
|
command: hbbr
|
|
restart: unless-stopped
|
|
volumes:
|
|
- rustdesk-data:/root
|
|
ports:
|
|
- 21117
|
|
- 21118
|
|
- 21119
|
|
|
|
volumes:
|
|
rustdesk-data: {} |