adds new gitgnore to repo

This commit is contained in:
tim
2025-09-21 21:56:39 +02:00
parent 68e1b6d0b4
commit df694656f4
48 changed files with 219456 additions and 7 deletions

12
rustdeck/.gitignore vendored Normal file
View File

@@ -0,0 +1,12 @@
# RustDesk data directory
data/
# Environment files
.env
# Logs
*.log
# Temporary files
*.tmp
*.temp

View File

@@ -0,0 +1,20 @@
services:
hbbs:
container_name: hbbs
image: rustdesk/rustdesk-server:latest
command: hbbs
volumes:
- ./data:/root
network_mode: "host"
depends_on:
- hbbr
restart: always
hbbr:
container_name: hbbr
image: rustdesk/rustdesk-server:latest
command: hbbr
volumes:
- ./data:/root
network_mode: "host"
restart: always