mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-04 21:45:27 +02:00
* fix: use explicit ports, use port 21118 on hbbs instead of hbbr * fix: whitespace character in rustdesk
28 lines
504 B
YAML
28 lines
504 B
YAML
services:
|
|
hbbs:
|
|
image: rustdesk/rustdesk-server:latest
|
|
command: hbbs
|
|
restart: unless-stopped
|
|
volumes:
|
|
- rustdesk-data:/root
|
|
ports:
|
|
- "21115:21115"
|
|
- "21116:21116"
|
|
- "21116:21116/udp"
|
|
- "21118:21118"
|
|
depends_on:
|
|
- hbbr
|
|
|
|
hbbr:
|
|
image: rustdesk/rustdesk-server:latest
|
|
command: hbbr
|
|
restart: unless-stopped
|
|
volumes:
|
|
- rustdesk-data:/root
|
|
ports:
|
|
- "21117:21117"
|
|
- "21119:21119"
|
|
|
|
volumes:
|
|
rustdesk-data: {}
|