Sign inSign up

gbendy/sonarrtorss

By gbendy

•Updated over 1 year ago

Sonarr To RSS is a Sonarr Webhook connection endpoint that streams events to RSS/Atom/JSON feeds.

Image
0

10K+

gbendy/sonarrtorss repository overview

⁠Sonarr To RSS Sonarr To RSS

⁠gbendy/sonarrtorss

Sonarr To RSS⁠ is a Sonarr⁠ Webhook connection endpoint that streams events to RSS/Atom/JSON feeds and provides a paginated website to browse historical events.

⁠Run

Docker CLI:

docker run -it \
    -v ${CONFIG_DIR}:/data:rw \
    -p 18989:18989/tcp \
    -e PUID=1000 \
    -e PGID=1000 \
    gbendy/sonarrtorss

Docker compose:

version: '3.8'
services:
    sonarrtorss:
        image: gbendy/sonarrtorss
        ports:
          - 18989:18989
        volumes:
          - ${CONFIG_DIR}/data
        environment:
          - PUID=1000
          - PGID=1000

Once running point your web browser to the exposed port and perform first time configuration. Then configure a Sonarr Webhook connection to point to http://hostname:port/sonarr to start sending events and subscribe to the RSS feed at http://hostname:port/rss

HTTPS support can be provided by either domain or subfolder based reverse proxies. SWAG⁠ configuration files can be found here⁠.

⁠Parameters
  • -v ${CONFIG_DIR}:/data:rw Directory to keep configuration files and event database.
  • -p 18989:18989/tcp Web interface port to expose
  • -e PUID=1000 The user id to run the service as inside the container. This user ID must have write access to the mounted configuration volume at `${CONFIG_DIR}.
  • -e PGID=1000 The group id to run the service as inside the container.

Tag summary

Content type

Image

Digest

sha256:492069e9f…

Size

54.9 MB

Last updated

over 1 year ago

docker pull gbendy/sonarrtorss