- docker-services: 14 generic compose templates (portainer, npm, vaultwarden, gitea, jotty, nextcloud-aio, rustdesk, audiobookshelf, calibre-web, plex, erugo, jswiki, speedtest, watchtower) - install-scripts: bash scripts for Ubuntu server bootstrap, docker, portainer, npm, backup, restore - ansible: 4 playbooks (bootstrap, deploy-services, update-services, security-hardening) + roles skeleton - hermes-install: Hermes CLI setup on macOS - macos-setup: Brewfile + osx-defaults + fish-config - home-nas-tools: metadata index for NAS projects (no binaries) - docs: architecture, security, contributing - README, LICENSE (MIT), .gitignore
54 lines
1014 B
YAML
54 lines
1014 B
YAML
# RustDesk Server – vlastní relay
|
||
|
||
services:
|
||
hbbs:
|
||
image: rustdesk/rustdesk-server:latest
|
||
container_name: hbbs
|
||
command: hbbs
|
||
restart: unless-stopped
|
||
volumes:
|
||
- ./data:/root
|
||
ports:
|
||
- "21115:21115"
|
||
- "21116:21116"
|
||
- "21116:21116/udp"
|
||
- "21118:21118"
|
||
networks:
|
||
- rustdesk_net
|
||
environment:
|
||
- PUID=1000
|
||
- PGID=1000
|
||
- TZ=Europe/Prague
|
||
logging:
|
||
driver: json-file
|
||
options:
|
||
max-size: "10m"
|
||
max-file: "3"
|
||
|
||
hbbr:
|
||
image: rustdesk/rustdesk-server:latest
|
||
container_name: hbbr
|
||
command: hbbr
|
||
restart: unless-stopped
|
||
volumes:
|
||
- ./data:/root
|
||
ports:
|
||
- "21117:21117"
|
||
- "21119:21119"
|
||
networks:
|
||
- rustdesk_net
|
||
environment:
|
||
- PUID=1000
|
||
- PGID=1000
|
||
- TZ=Europe/Prague
|
||
logging:
|
||
driver: json-file
|
||
options:
|
||
max-size: "10m"
|
||
max-file: "3"
|
||
|
||
networks:
|
||
rustdesk_net:
|
||
name: rustdesk_default
|
||
driver: bridge
|