Update
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sthope 2022-08-13 23:56:21 +02:00
parent 11e86a731f
commit 2f266fd3c2

View File

@ -0,0 +1,42 @@
Portainer Stack:
```yaml
version: '3.8'
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:
```
NET=bridge
TAG=latest
AutoUpdate=true
DOCKER_FOLDER=
MYSERVER=
```