RustDesk:)
This commit is contained in:
parent
38e861d232
commit
8a399e7976
2 changed files with 37 additions and 1 deletions
36
rustdesk/docker-compose.yml
Normal file
36
rustdesk/docker-compose.yml
Normal 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:
|
|
@ -1,6 +1,5 @@
|
||||||
#/bin/bash/
|
#/bin/bash/
|
||||||
|
|
||||||
|
|
||||||
function up {
|
function up {
|
||||||
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
||||||
}
|
}
|
||||||
|
@ -13,3 +12,4 @@ up wallabag;
|
||||||
up www;
|
up www;
|
||||||
up firefoxsync;
|
up firefoxsync;
|
||||||
up push;
|
up push;
|
||||||
|
up rustdesk;
|
||||||
|
|
Loading…
Reference in a new issue