Rustdesk

Portainer Stack:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: "3.9"
services:
  hbbs:
    image: rustdesk/rustdesk-server:${TAG-latest}
    container_name: hbbs
    network_mode: ${NET-bridge}
    ports:
      - 21115:21115
      - 21116:21116
      - 21116:21116/udp
      - 21118:21118
    command: hbbs -r ${MYSERVER-localhost}:21117
    volumes:
      - ${DOCKER_FOLDER}/ruskdesk/data:/root
    depends_on:
      - hbbr
    restart: unless-stopped

  hbbr:
    container_name: hbbr
    ports:
      - 21117:21117
      - 21119:21119
    image: rustdesk/rustdesk-server:${TAG-latest}
    command: hbbr
    volumes:
      - ${DOCKER_FOLDER}/ruskdesk/data:/root
    network_mode: ${NET-bridge}
    restart: unless-stopped

Environments:

1
2
3
4
5
NET=bridge
TAG=latest
AutoUpdate=true
DOCKER_FOLDER=
MYSERVER=Host_IP_or_Domain