30 lines
627 B
YAML
30 lines
627 B
YAML
|
services:
|
||
|
hbbs:
|
||
|
image: rustdesk/rustdesk-server:latest
|
||
|
command: hbbs
|
||
|
environment:
|
||
|
- TZ=${TZ}
|
||
|
- VIRTUAL_HOST=hbbs.${DOMAIN},hbbs.${DOMAIN}
|
||
|
- LETSENCRYPT_HOST=hbbs.${DOMAIN},hbbs.${DOMAIN}
|
||
|
- LETSENCRYPT_EMAIL=${EMAIL}
|
||
|
ports:
|
||
|
- 21116:21116
|
||
|
volumes:
|
||
|
- ./data:/root
|
||
|
depends_on:
|
||
|
- hbbr
|
||
|
restart: unless-stopped
|
||
|
hbbr:
|
||
|
# container_name: hbbr
|
||
|
image: rustdesk/rustdesk-server:latest
|
||
|
command: hbbr
|
||
|
ports:
|
||
|
- 21117:21117
|
||
|
volumes:
|
||
|
- ./data:/root
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
default:
|
||
|
name: nginx-proxy
|
||
|
external: true
|