From bfb8acf946a58b1ea902fd491276351a721f2228 Mon Sep 17 00:00:00 2001 From: lichenblankie Date: Thu, 26 Mar 2026 21:39:37 -0700 Subject: [PATCH] disabled share_instance for reliable announces With share_instance = Yes, announces weren't being sent over TCP in Docker environments. Setting it to No ensures each TinyWeb instance manages its own Reticulum interfaces directly. --- app.py | 2 +- entrypoint.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index bb2cd5c..a0bc4c6 100644 --- a/app.py +++ b/app.py @@ -53,7 +53,7 @@ def ensure_rns_config(config_dir): with open(config_file, "w") as f: f.write(f"""[reticulum] enable_transport = False - share_instance = Yes + share_instance = No [logging] loglevel = 4 diff --git a/entrypoint.sh b/entrypoint.sh index 35d52bd..e4a9719 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -11,7 +11,7 @@ if [ ! -f "$CONFIG_FILE" ]; then cat > "$CONFIG_FILE" <