RustDesk:)

This commit is contained in:
Florian Zirker 2023-03-08 17:33:18 +01:00
parent 38e861d232
commit 8a399e7976
2 changed files with 37 additions and 1 deletions

View file

@ -0,0 +1,36 @@
services:
hbbs:
ports:
- 21115:21115
- 21116:21116
- 21116:21116/udp
- 21118:21118
image: rustdesk/rustdesk-server:latest
command: hbbs -r ${DOMAIN}:21117 -k _
volumes:
- ${VOLUMES_PATH}/rustdesk:/root
networks:
- rustdesk
depends_on:
- hbbr
restart: unless-stopped
labels:
- "docker.group=rustdesk"
hbbr:
ports:
- 21117:21117
- 21119:21119
image: rustdesk/rustdesk-server:latest
command: hbbr -k _
volumes:
- ${VOLUMES_PATH}/rustdesk:/root
networks:
- rustdesk
restart: unless-stopped
labels:
- "docker.group=rustdesk"
networks:
rustdesk:

View file

@ -1,6 +1,5 @@
#/bin/bash/
function up {
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
}
@ -13,3 +12,4 @@ up wallabag;
up www;
up firefoxsync;
up push;
up rustdesk;