From 1cc3ac1fac8a10183be8258fe7711c03909af90e Mon Sep 17 00:00:00 2001 From: Andrewkha Date: Sat, 28 Sep 2024 15:35:08 +0300 Subject: [PATCH] readme updated with instructions how to make DLNA working in Docker installation (#453) Co-authored-by: Andrey Chernyshov --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 07c6012..7853719 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,7 @@ services: torrserver: image: ghcr.io/yourok/torrserver container_name: torrserver + network_mode: host # to allow DLNA feature environment: - TS_PORT=5665 - TS_DONTKILL=1 @@ -159,6 +160,7 @@ services: ports: - '5665:5665' restart: unless-stopped + ```