Skip to content

Commit

Permalink
docs: default bind adress in docker compose example (#21)
Browse files Browse the repository at this point in the history
By default app listen on 127.0.0.1:4080 which is unreachable outside
container, even with exposed port

Closes #4
  • Loading branch information
SystemZ authored Feb 11, 2024
1 parent 1d5c771 commit 995d216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 995d216

Please sign in to comment.