From b109579d88696e9b52dd1b7520abcbd7732f3801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Fr=C4=85ckiewicz?= <1836094+SystemZ@users.noreply.github.com> Date: Sat, 10 Feb 2024 21:22:17 +0100 Subject: [PATCH] fix bind adress in docker compose example By default app listen on 127.0.0.1:4080 which is unreachable outside container, even with exposed port --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index cab482e..e401bef 100644 --- a/README.org +++ b/README.org @@ -25,7 +25,7 @@ services: - 4080:4080 volumes: - ./funnel.yaml:/funnel.yaml - command: /rss-funnel -c /funnel.yaml server + command: /rss-funnel -c /funnel.yaml server -b 0.0.0.0:4080 #+end_src Alternatively, you can build it directly from source: