Compare commits

...

2 Commits
main ... health

Author SHA1 Message Date
553a444c6a hbbr & hbbs healthchek not ok 2025-01-10 15:26:56 +01:00
2512a52f64 healthcheck ok 2025-01-09 16:38:00 +01:00
6 changed files with 16 additions and 2 deletions

BIN
data/db_v2.sqlite3 Normal file

Binary file not shown.

BIN
data/db_v2.sqlite3-shm Normal file

Binary file not shown.

BIN
data/db_v2.sqlite3-wal Normal file

Binary file not shown.

1
data/id_ed25519 Normal file
View File

@ -0,0 +1 @@
lpRqxkatpJmOK0R5HkdL/udW09TWDBCDTi5aNIMUQFIYKf6wV/BlEbd7V6ou6MwKiYeJVNkHOyxCZ6IIsDBgGA==

1
data/id_ed25519.pub Normal file
View File

@ -0,0 +1 @@
GCn+sFfwZRG3e1eqLujMComHiVTZBzssQmeiCLAwYBg=

View File

@ -1,4 +1,4 @@
version: '3' version: '3.8'
services: services:
rustdesk-hbbs: rustdesk-hbbs:
@ -18,6 +18,12 @@ services:
- rustdesk-hbbr - rustdesk-hbbr
networks: networks:
- rustdesk-net - rustdesk-net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
rustdesk-hbbr: rustdesk-hbbr:
image: rustdesk/rustdesk-server:latest image: rustdesk/rustdesk-server:latest
@ -31,7 +37,13 @@ services:
- ./data:/root - ./data:/root
networks: networks:
- rustdesk-net - rustdesk-net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
networks: networks:
rustdesk-net: rustdesk-net:
external: false external: false